@babav/knowledge-core-client 0.20.0 → 0.22.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 CHANGED
@@ -67,12 +67,11 @@ export interface QueryOverrides {
67
67
  }
68
68
  /** Per-request visual overrides (see VisualRequest). */
69
69
  export interface VisualOverrides {
70
- concept_rounds_max?: number;
71
- proposals_n?: number;
70
+ concept_model?: string;
71
+ concept_vet_model?: string;
72
72
  max_revisions?: number;
73
73
  claims_check_model?: string;
74
74
  vision_judge_model?: string;
75
- scenic_enabled?: boolean;
76
75
  }
77
76
  /** Per-request visual control. Absent => mode resolves from the agent default. All visual
78
77
  * PROCESSING is server-side; the client only displays the result. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@babav/knowledge-core-client",
3
- "version": "0.20.0",
3
+ "version": "0.22.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
@@ -89,12 +89,11 @@ export interface QueryOverrides {
89
89
 
90
90
  /** Per-request visual overrides (see VisualRequest). */
91
91
  export interface VisualOverrides {
92
- concept_rounds_max?: number;
93
- proposals_n?: number;
92
+ concept_model?: string;
93
+ concept_vet_model?: string;
94
94
  max_revisions?: number;
95
95
  claims_check_model?: string;
96
96
  vision_judge_model?: string;
97
- scenic_enabled?: boolean;
98
97
  }
99
98
 
100
99
  /** Per-request visual control. Absent => mode resolves from the agent default. All visual