import { ProviderEnum } from '../declarations' import type { ProviderConfig } from '../declarations' import { IflytekSpark, IflytekSparkText, IflytekSparkTextCn } from '@/app/components/base/icons/src/public/llm' const config: ProviderConfig = { selector: { name: { 'en': 'iFLYTEK SPARK', 'zh-Hans': '讯飞星火', }, icon: , }, item: { key: ProviderEnum.spark, titleIcon: { 'en': , 'zh-Hans': , }, }, modal: { key: ProviderEnum.spark, title: { 'en': 'iFLYTEK SPARK', 'zh-Hans': '讯飞星火', }, icon: , link: { href: 'https://www.xfyun.cn/solutions/xinghuoAPI', label: { 'en': 'Get your API key from iFLYTEK SPARK', 'zh-Hans': '从讯飞星火获取 API Key', }, }, validateKeys: [ 'app_id', 'api_key', 'api_secret', ], fields: [ { type: 'text', key: 'app_id', required: true, label: { 'en': 'API ID', 'zh-Hans': 'API ID', }, placeholder: { 'en': 'Enter your API ID here', 'zh-Hans': '在此输入您的 API ID', }, }, { type: 'text', key: 'api_key', required: true, label: { 'en': 'API Key', 'zh-Hans': 'API Key', }, placeholder: { 'en': 'Enter your API key here', 'zh-Hans': '在此输入您的 API Key', }, }, { type: 'text', key: 'api_secret', required: true, label: { 'en': 'API Secret', 'zh-Hans': 'API Secret', }, placeholder: { 'en': 'Enter your API Secret here', 'zh-Hans': '在此输入您的 API Secret', }, }, ], }, } export default config