@dakera-ai/dakera 0.11.3 → 0.11.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -524,6 +524,8 @@ interface RecallRequest {
|
|
|
524
524
|
fusion?: FusionStrategy;
|
|
525
525
|
/** CE-17: explicit vector/BM25 weight for Hybrid routing (0.0–1.0). When set, overrides the adaptive heuristic from QueryClassifier. Omit for adaptive defaults (recommended). Only effective when `routing="hybrid"`. */
|
|
526
526
|
vector_weight?: number;
|
|
527
|
+
/** CE-23: pseudo-relevance feedback (PRF) passes for BM25 routing (1–3, default: 1). Pass `2` or `3` for multi-hop or temporal queries. Only effective when `routing="bm25"`. */
|
|
528
|
+
iterations?: number;
|
|
527
529
|
/** v0.11.0: session-adjacent memory enrichment (±5 min). Default: `undefined` (server uses `true`). Pass `false` to disable on latency-sensitive paths. */
|
|
528
530
|
neighborhood?: boolean;
|
|
529
531
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -524,6 +524,8 @@ interface RecallRequest {
|
|
|
524
524
|
fusion?: FusionStrategy;
|
|
525
525
|
/** CE-17: explicit vector/BM25 weight for Hybrid routing (0.0–1.0). When set, overrides the adaptive heuristic from QueryClassifier. Omit for adaptive defaults (recommended). Only effective when `routing="hybrid"`. */
|
|
526
526
|
vector_weight?: number;
|
|
527
|
+
/** CE-23: pseudo-relevance feedback (PRF) passes for BM25 routing (1–3, default: 1). Pass `2` or `3` for multi-hop or temporal queries. Only effective when `routing="bm25"`. */
|
|
528
|
+
iterations?: number;
|
|
527
529
|
/** v0.11.0: session-adjacent memory enrichment (±5 min). Default: `undefined` (server uses `true`). Pass `false` to disable on latency-sensitive paths. */
|
|
528
530
|
neighborhood?: boolean;
|
|
529
531
|
}
|