We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent addb5af commit 12c8a09Copy full SHA for 12c8a09
src/store/DocumentStore.ts
@@ -205,8 +205,8 @@ export class DocumentStore {
205
// 3. Initialize prepared statements
206
this.prepareStatements();
207
208
- // 4. Initialize embeddings client (await to catch errors)
209
- await this.initializeEmbeddings();
+ // 4. 跳过 embedding 初始化,兼容无 embedding 纯检索/大模型场景
+ // await this.initializeEmbeddings();
210
} catch (error) {
211
// Re-throw StoreError directly, wrap others in ConnectionError
212
if (error instanceof StoreError) {
0 commit comments