mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-06-30 04:55:11 +08:00

Co-authored-by: StyleZhang <jasonapring2015@outlook.com> Co-authored-by: Joel <iamjoel007@gmail.com>
54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import { ProviderEnum } from '../declarations'
|
|
import type { ProviderConfig } from '../declarations'
|
|
import { Tongyi, TongyiText, TongyiTextCn } from '@/app/components/base/icons/src/image/llm'
|
|
|
|
const config: ProviderConfig = {
|
|
selector: {
|
|
name: {
|
|
'en': 'TONGYI QIANWEN',
|
|
'zh-Hans': '通义千问',
|
|
},
|
|
icon: <Tongyi className='w-full h-full' />,
|
|
},
|
|
item: {
|
|
key: ProviderEnum.tongyi,
|
|
titleIcon: {
|
|
'en': <TongyiText className='w-[88px] h-6' />,
|
|
'zh-Hans': <TongyiTextCn className='w-[100px] h-6' />,
|
|
},
|
|
},
|
|
modal: {
|
|
key: ProviderEnum.tongyi,
|
|
title: {
|
|
'en': 'Tongyi',
|
|
'zh-Hans': '通义千问',
|
|
},
|
|
icon: <Tongyi className='w-6 h-6' />,
|
|
link: {
|
|
href: 'https://dashscope.console.aliyun.com/api-key_management',
|
|
label: {
|
|
'en': 'Get your API key from AliCloud',
|
|
'zh-Hans': '从阿里云获取 API Key',
|
|
},
|
|
},
|
|
validateKeys: ['dashscope_api_key'],
|
|
fields: [
|
|
{
|
|
type: 'text',
|
|
key: 'dashscope_api_key',
|
|
required: true,
|
|
label: {
|
|
'en': 'API Key',
|
|
'zh-Hans': 'API Key',
|
|
},
|
|
placeholder: {
|
|
'en': 'Enter your API key here',
|
|
'zh-Hans': '在此输入您的 API Key',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default config
|