mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-21 12:08:50 +08:00
84 lines
2.0 KiB
TypeScript
84 lines
2.0 KiB
TypeScript
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: <IflytekSpark className='w-full h-full' />,
|
|
},
|
|
item: {
|
|
key: ProviderEnum.spark,
|
|
titleIcon: {
|
|
'en': <IflytekSparkText className='h-6' />,
|
|
'zh-Hans': <IflytekSparkTextCn className='h-6' />,
|
|
},
|
|
},
|
|
modal: {
|
|
key: ProviderEnum.spark,
|
|
title: {
|
|
'en': 'iFLYTEK SPARK',
|
|
'zh-Hans': '讯飞星火',
|
|
},
|
|
icon: <IflytekSpark className='w-6 h-6' />,
|
|
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
|