mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-09 10:56:52 +08:00
58 lines
1.3 KiB
TypeScript
58 lines
1.3 KiB
TypeScript
import { ProviderEnum } from '../declarations'
|
|
import type { ProviderConfig } from '../declarations'
|
|
import { Cohere, CohereText } from '@/app/components/base/icons/src/public/llm'
|
|
|
|
const config: ProviderConfig = {
|
|
selector: {
|
|
name: {
|
|
'en': 'cohere',
|
|
'zh-Hans': 'cohere',
|
|
},
|
|
icon: <Cohere className='w-full h-full' />,
|
|
},
|
|
item: {
|
|
key: ProviderEnum.cohere,
|
|
titleIcon: {
|
|
'en': <CohereText className='w-[120px] h-6' />,
|
|
'zh-Hans': <CohereText className='w-[120px] h-6' />,
|
|
},
|
|
hit: {
|
|
'en': 'Rerank Model Supported',
|
|
'zh-Hans': '支持 Rerank 模型',
|
|
},
|
|
},
|
|
modal: {
|
|
key: ProviderEnum.cohere,
|
|
title: {
|
|
'en': 'Rerank Model',
|
|
'zh-Hans': 'Rerank 模型',
|
|
},
|
|
icon: <Cohere className='w-6 h-6' />,
|
|
link: {
|
|
href: 'https://dashboard.cohere.com/api-keys',
|
|
label: {
|
|
'en': 'Get your API key from cohere',
|
|
'zh-Hans': '从 cohere 获取 API Key',
|
|
},
|
|
},
|
|
validateKeys: ['api_key'],
|
|
fields: [
|
|
{
|
|
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',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
export default config
|