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: , }, item: { key: ProviderEnum.tongyi, titleIcon: { 'en': , 'zh-Hans': , }, }, modal: { key: ProviderEnum.tongyi, title: { 'en': 'Tongyi', 'zh-Hans': '通义千问', }, icon: , 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