mirror of https://github.com/openclaw/openclaw.git
perf(test): disable vector index in OpenAI batch tests
This commit is contained in:
parent
0e5e72edb4
commit
a50638eead
|
|
@ -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 } },
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in New Issue