perf(test): disable vector index in OpenAI batch tests

This commit is contained in:
Peter Steinberger
2026-02-14 05:17:32 +00:00
parent 0e5e72edb4
commit a50638eead

View File

@@ -148,9 +148,9 @@ describe("memory indexing with OpenAI batches", () => {
memorySearch: {
provider: "openai",
model: "text-embedding-3-small",
store: { path: indexPath },
store: { path: indexPath, vector: { enabled: false } },
sync: { watch: false, onSessionStart: false, onSearch: false },
query: { minScore: 0 },
query: { minScore: 0, hybrid: { enabled: false } },
remote: { batch: { enabled: true, wait: true, pollIntervalMs: 1 } },
},
},
@@ -261,9 +261,9 @@ describe("memory indexing with OpenAI batches", () => {
memorySearch: {
provider: "openai",
model: "text-embedding-3-small",
store: { path: indexPath },
store: { path: indexPath, vector: { enabled: false } },
sync: { watch: false, onSessionStart: false, onSearch: false },
query: { minScore: 0 },
query: { minScore: 0, hybrid: { enabled: false } },
remote: { batch: { enabled: true, wait: true, pollIntervalMs: 1 } },
},
},
@@ -366,9 +366,9 @@ describe("memory indexing with OpenAI batches", () => {
memorySearch: {
provider: "openai",
model: "text-embedding-3-small",
store: { path: indexPath },
store: { path: indexPath, vector: { enabled: false } },
sync: { watch: false, onSessionStart: false, onSearch: false },
query: { minScore: 0 },
query: { minScore: 0, hybrid: { enabled: false } },
remote: { batch: { enabled: true, wait: true, pollIntervalMs: 1 } },
},
},