fix: embedding params escape

This commit is contained in:
jialin
2025-06-18 15:03:35 +08:00
parent 9295f9cef3
commit 3e76d7c321
8 changed files with 76 additions and 30 deletions
@@ -343,7 +343,8 @@ const SearchModel: React.FC<SearchInputProps> = (props) => {
(item) => item.id === currentRef.current
);
if (currentItem) {
// if it is gguf, would trigger a evaluation after select a model file
if (currentItem && !currentItem.isGGUF) {
onSelectModelAfterEvaluate(currentItem);
}
} catch (error) {