@babav/knowledge-core-client 0.52.0 → 0.53.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 +2 -0
- package/package.json +1 -1
- package/src/index.ts +2 -0
package/dist/index.d.ts
CHANGED
|
@@ -77,6 +77,7 @@ export interface VisualOverrides {
|
|
|
77
77
|
max_revisions?: number;
|
|
78
78
|
claims_check_model?: string;
|
|
79
79
|
vision_judge_model?: string;
|
|
80
|
+
image_gen_model?: string;
|
|
80
81
|
}
|
|
81
82
|
/** Per-request visual control. Absent => mode resolves from the profile default. All visual
|
|
82
83
|
* PROCESSING is server-side; the client only displays the result. */
|
|
@@ -537,6 +538,7 @@ export interface QueryProfile {
|
|
|
537
538
|
visual_proposer_model: string | null;
|
|
538
539
|
visual_claims_check_model: string | null;
|
|
539
540
|
visual_vision_judge_model: string | null;
|
|
541
|
+
visual_image_gen_model: string | null;
|
|
540
542
|
visual_max_revisions: number | null;
|
|
541
543
|
visual_combine_generation_and_concept: boolean | null;
|
|
542
544
|
concept_model_mode: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@babav/knowledge-core-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.53.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
|
@@ -99,6 +99,7 @@ export interface VisualOverrides {
|
|
|
99
99
|
max_revisions?: number;
|
|
100
100
|
claims_check_model?: string;
|
|
101
101
|
vision_judge_model?: string;
|
|
102
|
+
image_gen_model?: string; // scenic image generator (profile field: visual_image_gen_model)
|
|
102
103
|
}
|
|
103
104
|
|
|
104
105
|
/** Per-request visual control. Absent => mode resolves from the profile default. All visual
|
|
@@ -504,6 +505,7 @@ export interface QueryProfile {
|
|
|
504
505
|
visual_proposer_model: string | null; // authors the HTML figure + chart/structural/scene specs
|
|
505
506
|
visual_claims_check_model: string | null;
|
|
506
507
|
visual_vision_judge_model: string | null; // Vertex Gemini model
|
|
508
|
+
visual_image_gen_model: string | null; // Vertex Gemini image-gen model (scenic register)
|
|
507
509
|
visual_max_revisions: number | null;
|
|
508
510
|
visual_combine_generation_and_concept: boolean | null;
|
|
509
511
|
concept_model_mode: string | null; // "reasoning" | "standard"; overrules gen mode when combining
|