We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6e9618 commit 3876d88Copy full SHA for 3876d88
1 file changed
tests/cortex/Query.test.ts
@@ -9,11 +9,12 @@ import { generateKeyPair } from "../../core/crypto/sign";
9
import { ingestText } from "../../hippocampus/Ingest";
10
import { query } from "../../cortex/Query";
11
import { topKByScore } from "../../TopK";
12
+import type { BackendKind } from "../../BackendKind";
13
import type { ModelProfile } from "../../core/ModelProfile";
14
import type { VectorBackend } from "../../VectorBackend";
15
16
class TestVectorBackend implements VectorBackend {
- readonly kind = "test" as const;
17
+ readonly kind: BackendKind = "wasm";
18
19
async dotMany(
20
query: Float32Array,
0 commit comments