mirror of
https://github.com/langgenius/dify.git
synced 2026-04-27 11:06:46 +08:00
36 lines
786 B
TypeScript
36 lines
786 B
TypeScript
'use client'
|
|
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
export type IModelNameProps = {
|
|
modelId: string
|
|
modelDisplayName?: string
|
|
}
|
|
|
|
export const supportI18nModelName = [
|
|
'gpt-3.5-turbo', 'gpt-3.5-turbo-16k',
|
|
'gpt-4', 'gpt-4-32k',
|
|
'text-davinci-003', 'text-embedding-ada-002', 'whisper-1',
|
|
'claude-instant-1', 'claude-2',
|
|
]
|
|
|
|
const ModelName: FC<IModelNameProps> = ({
|
|
modelId,
|
|
modelDisplayName,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
let name = modelId
|
|
if (supportI18nModelName.includes(modelId))
|
|
name = t(`common.modelName.${modelId}`)
|
|
else if (modelDisplayName)
|
|
name = modelDisplayName
|
|
|
|
return (
|
|
<span title={name}>
|
|
{name}
|
|
</span>
|
|
)
|
|
}
|
|
export default React.memo(ModelName)
|