@vertesia/client 1.5.0-dev.20260806.125520Z → 1.5.0-dev.20260807.073259Z
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/lib/InteractionBase.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ export declare class InteractionBase<P = unknown> {
|
|
|
79
79
|
presence_penalty?: number | undefined;
|
|
80
80
|
frequency_penalty?: number | undefined;
|
|
81
81
|
stop_sequence?: string[] | undefined;
|
|
82
|
+
include_thoughts?: boolean | undefined;
|
|
82
83
|
} | {
|
|
83
84
|
_option_id: "vertexai-imagen";
|
|
84
85
|
number_of_images?: number | undefined;
|
|
@@ -158,30 +159,35 @@ export declare class InteractionBase<P = unknown> {
|
|
|
158
159
|
temperature?: number | undefined;
|
|
159
160
|
top_p?: number | undefined;
|
|
160
161
|
stop_sequence?: string[] | undefined;
|
|
162
|
+
include_thoughts?: boolean | undefined;
|
|
161
163
|
} | {
|
|
162
164
|
_option_id: "bedrock-nova";
|
|
163
165
|
max_tokens?: number | undefined;
|
|
164
166
|
temperature?: number | undefined;
|
|
165
167
|
top_p?: number | undefined;
|
|
166
168
|
stop_sequence?: string[] | undefined;
|
|
169
|
+
include_thoughts?: boolean | undefined;
|
|
167
170
|
} | {
|
|
168
171
|
_option_id: "bedrock-mistral";
|
|
169
172
|
max_tokens?: number | undefined;
|
|
170
173
|
temperature?: number | undefined;
|
|
171
174
|
top_p?: number | undefined;
|
|
172
175
|
stop_sequence?: string[] | undefined;
|
|
176
|
+
include_thoughts?: boolean | undefined;
|
|
173
177
|
} | {
|
|
174
178
|
_option_id: "bedrock-ai21";
|
|
175
179
|
max_tokens?: number | undefined;
|
|
176
180
|
temperature?: number | undefined;
|
|
177
181
|
top_p?: number | undefined;
|
|
178
182
|
stop_sequence?: string[] | undefined;
|
|
183
|
+
include_thoughts?: boolean | undefined;
|
|
179
184
|
} | {
|
|
180
185
|
_option_id: "bedrock-cohere-command";
|
|
181
186
|
max_tokens?: number | undefined;
|
|
182
187
|
temperature?: number | undefined;
|
|
183
188
|
top_p?: number | undefined;
|
|
184
189
|
stop_sequence?: string[] | undefined;
|
|
190
|
+
include_thoughts?: boolean | undefined;
|
|
185
191
|
} | {
|
|
186
192
|
_option_id: "bedrock-claude";
|
|
187
193
|
max_tokens?: number | undefined;
|
|
@@ -226,12 +232,14 @@ export declare class InteractionBase<P = unknown> {
|
|
|
226
232
|
reasoning_effort?: "high" | "low" | "medium" | "none" | "xhigh" | undefined;
|
|
227
233
|
verbosity?: "high" | "low" | "medium" | undefined;
|
|
228
234
|
image_detail?: "auto" | "high" | "low" | undefined;
|
|
235
|
+
include_thoughts?: boolean | undefined;
|
|
229
236
|
} | {
|
|
230
237
|
_option_id: "bedrock-mantle-chat-completions";
|
|
231
238
|
max_tokens?: number | undefined;
|
|
232
239
|
temperature?: number | undefined;
|
|
233
240
|
top_p?: number | undefined;
|
|
234
241
|
stop_sequence?: string[] | undefined;
|
|
242
|
+
include_thoughts?: boolean | undefined;
|
|
235
243
|
} | {
|
|
236
244
|
_option_id: "bedrock-mantle-claude";
|
|
237
245
|
max_tokens?: number | undefined;
|
|
@@ -251,15 +259,19 @@ export declare class InteractionBase<P = unknown> {
|
|
|
251
259
|
effort?: "high" | "low" | "max" | "medium" | "minimal" | "none" | "xhigh" | undefined;
|
|
252
260
|
reasoning_effort?: "high" | "low" | "max" | "medium" | "minimal" | "none" | "xhigh" | undefined;
|
|
253
261
|
image_detail?: "auto" | "high" | "low" | undefined;
|
|
262
|
+
include_thoughts?: boolean | undefined;
|
|
254
263
|
} | {
|
|
255
264
|
_option_id: "openai-text";
|
|
256
265
|
max_tokens?: number | undefined;
|
|
266
|
+
effort?: "high" | "low" | "max" | "medium" | "minimal" | "none" | "xhigh" | undefined;
|
|
267
|
+
reasoning_effort?: "high" | "low" | "max" | "medium" | "minimal" | "none" | "xhigh" | undefined;
|
|
257
268
|
temperature?: number | undefined;
|
|
258
269
|
top_p?: number | undefined;
|
|
259
270
|
presence_penalty?: number | undefined;
|
|
260
271
|
frequency_penalty?: number | undefined;
|
|
261
272
|
stop_sequence?: string[] | undefined;
|
|
262
273
|
image_detail?: "auto" | "high" | "low" | undefined;
|
|
274
|
+
include_thoughts?: boolean | undefined;
|
|
263
275
|
} | {
|
|
264
276
|
_option_id: "openai-dalle";
|
|
265
277
|
size?: "1024x1024" | "1024x1792" | "1792x1024" | "256x256" | "512x512" | undefined;
|
|
@@ -422,6 +434,7 @@ export declare class InteractionBase<P = unknown> {
|
|
|
422
434
|
presence_penalty?: number | undefined;
|
|
423
435
|
frequency_penalty?: number | undefined;
|
|
424
436
|
stop_sequence?: string[] | undefined;
|
|
437
|
+
include_thoughts?: boolean | undefined;
|
|
425
438
|
} | {
|
|
426
439
|
_option_id: "vertexai-imagen";
|
|
427
440
|
number_of_images?: number | undefined;
|
|
@@ -501,30 +514,35 @@ export declare class InteractionBase<P = unknown> {
|
|
|
501
514
|
temperature?: number | undefined;
|
|
502
515
|
top_p?: number | undefined;
|
|
503
516
|
stop_sequence?: string[] | undefined;
|
|
517
|
+
include_thoughts?: boolean | undefined;
|
|
504
518
|
} | {
|
|
505
519
|
_option_id: "bedrock-nova";
|
|
506
520
|
max_tokens?: number | undefined;
|
|
507
521
|
temperature?: number | undefined;
|
|
508
522
|
top_p?: number | undefined;
|
|
509
523
|
stop_sequence?: string[] | undefined;
|
|
524
|
+
include_thoughts?: boolean | undefined;
|
|
510
525
|
} | {
|
|
511
526
|
_option_id: "bedrock-mistral";
|
|
512
527
|
max_tokens?: number | undefined;
|
|
513
528
|
temperature?: number | undefined;
|
|
514
529
|
top_p?: number | undefined;
|
|
515
530
|
stop_sequence?: string[] | undefined;
|
|
531
|
+
include_thoughts?: boolean | undefined;
|
|
516
532
|
} | {
|
|
517
533
|
_option_id: "bedrock-ai21";
|
|
518
534
|
max_tokens?: number | undefined;
|
|
519
535
|
temperature?: number | undefined;
|
|
520
536
|
top_p?: number | undefined;
|
|
521
537
|
stop_sequence?: string[] | undefined;
|
|
538
|
+
include_thoughts?: boolean | undefined;
|
|
522
539
|
} | {
|
|
523
540
|
_option_id: "bedrock-cohere-command";
|
|
524
541
|
max_tokens?: number | undefined;
|
|
525
542
|
temperature?: number | undefined;
|
|
526
543
|
top_p?: number | undefined;
|
|
527
544
|
stop_sequence?: string[] | undefined;
|
|
545
|
+
include_thoughts?: boolean | undefined;
|
|
528
546
|
} | {
|
|
529
547
|
_option_id: "bedrock-claude";
|
|
530
548
|
max_tokens?: number | undefined;
|
|
@@ -569,12 +587,14 @@ export declare class InteractionBase<P = unknown> {
|
|
|
569
587
|
reasoning_effort?: "high" | "low" | "medium" | "none" | "xhigh" | undefined;
|
|
570
588
|
verbosity?: "high" | "low" | "medium" | undefined;
|
|
571
589
|
image_detail?: "auto" | "high" | "low" | undefined;
|
|
590
|
+
include_thoughts?: boolean | undefined;
|
|
572
591
|
} | {
|
|
573
592
|
_option_id: "bedrock-mantle-chat-completions";
|
|
574
593
|
max_tokens?: number | undefined;
|
|
575
594
|
temperature?: number | undefined;
|
|
576
595
|
top_p?: number | undefined;
|
|
577
596
|
stop_sequence?: string[] | undefined;
|
|
597
|
+
include_thoughts?: boolean | undefined;
|
|
578
598
|
} | {
|
|
579
599
|
_option_id: "bedrock-mantle-claude";
|
|
580
600
|
max_tokens?: number | undefined;
|
|
@@ -594,15 +614,19 @@ export declare class InteractionBase<P = unknown> {
|
|
|
594
614
|
effort?: "high" | "low" | "max" | "medium" | "minimal" | "none" | "xhigh" | undefined;
|
|
595
615
|
reasoning_effort?: "high" | "low" | "max" | "medium" | "minimal" | "none" | "xhigh" | undefined;
|
|
596
616
|
image_detail?: "auto" | "high" | "low" | undefined;
|
|
617
|
+
include_thoughts?: boolean | undefined;
|
|
597
618
|
} | {
|
|
598
619
|
_option_id: "openai-text";
|
|
599
620
|
max_tokens?: number | undefined;
|
|
621
|
+
effort?: "high" | "low" | "max" | "medium" | "minimal" | "none" | "xhigh" | undefined;
|
|
622
|
+
reasoning_effort?: "high" | "low" | "max" | "medium" | "minimal" | "none" | "xhigh" | undefined;
|
|
600
623
|
temperature?: number | undefined;
|
|
601
624
|
top_p?: number | undefined;
|
|
602
625
|
presence_penalty?: number | undefined;
|
|
603
626
|
frequency_penalty?: number | undefined;
|
|
604
627
|
stop_sequence?: string[] | undefined;
|
|
605
628
|
image_detail?: "auto" | "high" | "low" | undefined;
|
|
629
|
+
include_thoughts?: boolean | undefined;
|
|
606
630
|
} | {
|
|
607
631
|
_option_id: "openai-dalle";
|
|
608
632
|
size?: "1024x1024" | "1024x1792" | "1792x1024" | "256x256" | "512x512" | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"InteractionBase.d.ts","sourceRoot":"","sources":["../src/InteractionBase.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,2BAA2B,EAC3B,0BAA0B,EAC1B,wBAAwB,EAC3B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAGvE,qBAAa,eAAe,CAAC,CAAC,GAAG,OAAO;IAIzB,EAAE,EAAE,MAAM;IAHrB,MAAM,EAAE,cAAc,CAAC;IAEvB,YACW,EAAE,EAAE,MAAM,EACjB,YAAY,EAAE,cAAc,GAAG,mBAAmB,EAOrD;IAED,QAAQ
|
|
1
|
+
{"version":3,"file":"InteractionBase.d.ts","sourceRoot":"","sources":["../src/InteractionBase.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,2BAA2B,EAC3B,0BAA0B,EAC1B,wBAAwB,EAC3B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAGvE,qBAAa,eAAe,CAAC,CAAC,GAAG,OAAO;IAIzB,EAAE,EAAE,MAAM;IAHrB,MAAM,EAAE,cAAc,CAAC;IAEvB,YACW,EAAE,EAAE,MAAM,EACjB,YAAY,EAAE,cAAc,GAAG,mBAAmB,EAOrD;IAED,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAEP;IAED,MAAM,CAAC,OAAO,EAAE,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAEvC;IAGD,MAAM,CAAC,KAAK,EAAE,CAAC,QAEd;IAED;;;;;;;;;;OAUG;IACG,OAAO,CACT,OAAO,GAAE,2BAAgC,EACzC,OAAO,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,GAClC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAExC;CACJ"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertesia/client",
|
|
3
|
-
"version": "1.5.0-dev.
|
|
3
|
+
"version": "1.5.0-dev.20260807.073259Z",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"types": "./lib/index.d.ts",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"eventsource": "^4.1.0",
|
|
22
|
-
"@
|
|
23
|
-
"@vertesia/common": "1.5.0-dev.
|
|
24
|
-
"@
|
|
22
|
+
"@vertesia/api-fetch-client": "1.5.0-dev.20260807.073259Z",
|
|
23
|
+
"@vertesia/common": "1.5.0-dev.20260807.073259Z",
|
|
24
|
+
"@llumiverse/common": "1.5.0-dev.20260807.072147Z"
|
|
25
25
|
},
|
|
26
26
|
"exports": {
|
|
27
27
|
".": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"ai",
|
|
49
49
|
"typescript"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "e6ebc1482ad6c4df965d74c79f82eb25fc6e2ce3",
|
|
52
52
|
"scripts": {
|
|
53
53
|
"lint": "biome lint src",
|
|
54
54
|
"clean:lib": "rimraf ./lib ./tsconfig.tsbuildinfo",
|