mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-08-13 06:29:03 +08:00
### What problem does this PR solve? Fix: LLM with ___ return cannot be deleted #5585 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
parent
d9bbaf5d6c
commit
a283fefd18
@ -198,7 +198,7 @@ export const useSelectLlmList = () => {
|
||||
name: key,
|
||||
logo: factoryList.find((x) => x.name === key)?.logo ?? '',
|
||||
...value,
|
||||
llm: value.llm.map((x) => ({ ...x, name: getRealModelName(x.name) })),
|
||||
llm: value.llm.map((x) => ({ ...x, name: x.name })),
|
||||
}));
|
||||
}, [myLlmList, factoryList]);
|
||||
|
||||
|
@ -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' }} />
|
||||
|
Loading…
x
Reference in New Issue
Block a user