import type { FC } from 'react' import { useTranslation } from 'react-i18next' import ModelBadge from '../model-badge' import { ModelFeatureEnum, ModelFeatureTextEnum, } from '../declarations' import { // MagicBox, MagicEyes, // MagicWand, // Robot, } from '@/app/components/base/icons/src/vender/solid/mediaAndDevices' import Tooltip from '@/app/components/base/tooltip' type FeatureIconProps = { feature: ModelFeatureEnum className?: string } const FeatureIcon: FC = ({ className, feature, }) => { const { t } = useTranslation() // if (feature === ModelFeatureEnum.agentThought) { // return ( // // // // // // ) // } // if (feature === ModelFeatureEnum.toolCall) { // return ( // // // // // // ) // } // if (feature === ModelFeatureEnum.multiToolCall) { // return ( // // // // // // ) // } if (feature === ModelFeatureEnum.vision) { return (
) } return null } export default FeatureIcon