remove log (#3692)

This commit is contained in:
Archer
2025-02-05 11:17:38 +08:00
committed by GitHub
parent b6e441c5eb
commit 772c1cde77
5 changed files with 15 additions and 16 deletions

View File

@@ -9,7 +9,6 @@ export const getChatModelNameListByModules = (nodes: StoreNodeItemType[]): strin
return model ? getLLMModel(model)?.name : '';
})
.filter(Boolean);
console.log(JSON.stringify(nodes, null, 2), '---=');
console.log(modelList, '---=');
return Array.from(new Set(modelList));
};