|
|
|
@@ -4,6 +4,7 @@ import { useTheme } from '@/components/theme-provider'; |
|
|
|
import { LLMFactory } from '@/constants/llm'; |
|
|
|
import { useSetModalState, useTranslate } from '@/hooks/common-hooks'; |
|
|
|
import { LlmItem, useSelectLlmList } from '@/hooks/llm-hooks'; |
|
|
|
import { getRealModelName } from '@/utils/llm-util'; |
|
|
|
import { CloseCircleOutlined, SettingOutlined } from '@ant-design/icons'; |
|
|
|
import { |
|
|
|
Button, |
|
|
|
@@ -130,7 +131,8 @@ const ModelCard = ({ item, clickApiKey }: IModelCardProps) => { |
|
|
|
renderItem={(item) => ( |
|
|
|
<List.Item> |
|
|
|
<Space> |
|
|
|
{item.name} <Tag color="#b8b8b8">{item.type}</Tag> |
|
|
|
{getRealModelName(item.name)} |
|
|
|
<Tag color="#b8b8b8">{item.type}</Tag> |
|
|
|
<Tooltip title={t('delete', { keyPrefix: 'common' })}> |
|
|
|
<Button type={'text'} onClick={handleDeleteLlm(item.name)}> |
|
|
|
<CloseCircleOutlined style={{ color: '#D92D20' }} /> |