Fix: LLM with ___ return cannot be deleted #5585 (#5587)

### 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:
balibabu
2025-03-04 11:35:12 +08:00
committed by GitHub
parent d9bbaf5d6c
commit a283fefd18
2 changed files with 4 additions and 2 deletions

View File

@ -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]);