@babav/knowledge-core-client 0.36.0 → 0.37.0
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.ts +4 -0
- package/package.json +1 -1
- package/src/index.ts +4 -0
package/dist/index.d.ts
CHANGED
|
@@ -61,6 +61,8 @@ export interface QueryOverrides {
|
|
|
61
61
|
max_reasoning_rounds?: number;
|
|
62
62
|
decomposition_model?: string;
|
|
63
63
|
reasoning_inspect_model?: string;
|
|
64
|
+
multi_query_model?: string;
|
|
65
|
+
citation_model?: string;
|
|
64
66
|
groundedness_verifier_model?: string;
|
|
65
67
|
groundedness_threshold?: number;
|
|
66
68
|
grounding_enabled?: boolean;
|
|
@@ -432,6 +434,8 @@ export interface Agent {
|
|
|
432
434
|
max_reasoning_rounds: number | null;
|
|
433
435
|
decomposition_model: string | null;
|
|
434
436
|
reasoning_inspect_model: string | null;
|
|
437
|
+
multi_query_model: string | null;
|
|
438
|
+
citation_model: string | null;
|
|
435
439
|
groundedness_verifier_model: string | null;
|
|
436
440
|
groundedness_threshold: number | null;
|
|
437
441
|
grounding_enabled: boolean | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babav/knowledge-core-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.37.0",
|
|
4
4
|
"description": "TypeScript client for the Babav Knowledge Core API (Deno + Node 18+, zero deps). Includes the babav.visual grammar TYPES at the ./visual subpath (types only; all visual rendering is server-side).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
package/src/index.ts
CHANGED
|
@@ -82,6 +82,8 @@ export interface QueryOverrides {
|
|
|
82
82
|
max_reasoning_rounds?: number; // iterative agentic-loop ceiling (1 = single pass; early-stops)
|
|
83
83
|
decomposition_model?: string; // model for query decomposition
|
|
84
84
|
reasoning_inspect_model?: string; // model for the per-round sufficiency / next-query decision
|
|
85
|
+
multi_query_model?: string; // model for multi-query expansion
|
|
86
|
+
citation_model?: string; // model for the citation pass (non-native-citation providers)
|
|
85
87
|
groundedness_verifier_model?: string; // model for the groundedness LLM judge
|
|
86
88
|
groundedness_threshold?: number;
|
|
87
89
|
grounding_enabled?: boolean; // groundedness score (default off)
|
|
@@ -414,6 +416,8 @@ export interface Agent {
|
|
|
414
416
|
max_reasoning_rounds: number | null;
|
|
415
417
|
decomposition_model: string | null;
|
|
416
418
|
reasoning_inspect_model: string | null;
|
|
419
|
+
multi_query_model: string | null;
|
|
420
|
+
citation_model: string | null;
|
|
417
421
|
groundedness_verifier_model: string | null;
|
|
418
422
|
groundedness_threshold: number | null;
|
|
419
423
|
grounding_enabled: boolean | null;
|