mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-06 09:26:50 +08:00
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import type { FC } from 'react'
|
|
import type {
|
|
Model,
|
|
ModelProvider,
|
|
} from '../declarations'
|
|
import { basePath } from '@/utils/var'
|
|
import { useLanguage } from '../hooks'
|
|
import { Group } from '@/app/components/base/icons/src/vender/other'
|
|
import { OpenaiBlue, OpenaiViolet } from '@/app/components/base/icons/src/public/llm'
|
|
import cn from '@/utils/classnames'
|
|
import { renderI18nObject } from '@/i18n'
|
|
|
|
type ModelIconProps = {
|
|
provider?: Model | ModelProvider
|
|
modelName?: string
|
|
className?: string
|
|
isDeprecated?: boolean
|
|
}
|
|
const ModelIcon: FC<ModelIconProps> = ({
|
|
provider,
|
|
className,
|
|
modelName,
|
|
isDeprecated = false,
|
|
}) => {
|
|
const language = useLanguage()
|
|
if (provider?.provider.includes('openai') && modelName?.includes('gpt-4o'))
|
|
return <div className='flex items-center justify-center'><OpenaiBlue className={cn('h-5 w-5', className)} /></div>
|
|
if (provider?.provider.includes('openai') && modelName?.startsWith('gpt-4'))
|
|
return <div className='flex items-center justify-center'><OpenaiViolet className={cn('h-5 w-5', className)} /></div>
|
|
|
|
if (provider?.icon_small) {
|
|
return (
|
|
<div className={cn('flex h-5 w-5 items-center justify-center', isDeprecated && 'opacity-50', className)}>
|
|
<img alt='model-icon' src={basePath + renderI18nObject(provider.icon_small, language)}/>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className={cn(
|
|
'flex h-5 w-5 items-center justify-center rounded-md border-[0.5px] border-components-panel-border-subtle bg-background-default-subtle',
|
|
className,
|
|
)}>
|
|
<div className='flex h-5 w-5 items-center justify-center opacity-35'>
|
|
<Group className='h-3 w-3 text-text-tertiary' />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ModelIcon
|