移除多个文件中的调试日志输出,优化代码可读性和性能。

This commit is contained in:
duanfuxiang
2025-07-05 16:29:41 +08:00
parent a2fcb7c20f
commit 54a14dedd6
7 changed files with 3 additions and 9 deletions

View File

@@ -68,7 +68,6 @@ export const getEmbeddingModel = (
}
const results = await embeddingManager.embedBatch(texts)
console.log('results', results)
return results.map(result => result.vec)
} catch (error) {
console.error('LocalProvider batch embedding error:', error)