@adaline/google 1.10.0 → 1.11.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.mts +603 -62
- package/dist/index.d.ts +603 -62
- package/dist/index.js +111 -109
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -52,11 +52,28 @@ declare const GoogleChatModelConfigs: {
|
|
|
52
52
|
choices: string[];
|
|
53
53
|
};
|
|
54
54
|
readonly safetySettings: {
|
|
55
|
-
type: "
|
|
55
|
+
type: "paired-select";
|
|
56
56
|
param: string;
|
|
57
57
|
title: string;
|
|
58
58
|
description: string;
|
|
59
|
-
|
|
59
|
+
fields: [{
|
|
60
|
+
label: string;
|
|
61
|
+
key: string;
|
|
62
|
+
choices: {
|
|
63
|
+
value: string;
|
|
64
|
+
label: string;
|
|
65
|
+
}[];
|
|
66
|
+
description?: string | undefined;
|
|
67
|
+
}, {
|
|
68
|
+
label: string;
|
|
69
|
+
key: string;
|
|
70
|
+
choices: {
|
|
71
|
+
value: string;
|
|
72
|
+
label: string;
|
|
73
|
+
}[];
|
|
74
|
+
description?: string | undefined;
|
|
75
|
+
}];
|
|
76
|
+
uniqueByField?: string | undefined;
|
|
60
77
|
};
|
|
61
78
|
};
|
|
62
79
|
schema: zod.ZodObject<{
|
|
@@ -65,16 +82,16 @@ declare const GoogleChatModelConfigs: {
|
|
|
65
82
|
stop: zod.ZodOptional<zod.ZodDefault<zod.ZodArray<zod.ZodString, "many">>>;
|
|
66
83
|
topP: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
67
84
|
toolChoice: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
68
|
-
safetySettings: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape,
|
|
85
|
+
safetySettings: zod.ZodOptional<zod.ZodArray<zod.ZodObject<zod.ZodRawShape, "strip", zod.ZodTypeAny, {
|
|
69
86
|
[x: string]: any;
|
|
70
87
|
}, {
|
|
71
88
|
[x: string]: any;
|
|
72
|
-
}>>;
|
|
89
|
+
}>, "many">>;
|
|
73
90
|
}, "strip", zod.ZodTypeAny, {
|
|
74
91
|
toolChoice?: string | null | undefined;
|
|
75
92
|
safetySettings?: {
|
|
76
93
|
[x: string]: any;
|
|
77
|
-
} | undefined;
|
|
94
|
+
}[] | undefined;
|
|
78
95
|
temperature?: number | undefined;
|
|
79
96
|
topP?: number | undefined;
|
|
80
97
|
maxTokens?: number | undefined;
|
|
@@ -83,7 +100,7 @@ declare const GoogleChatModelConfigs: {
|
|
|
83
100
|
toolChoice?: string | null | undefined;
|
|
84
101
|
safetySettings?: {
|
|
85
102
|
[x: string]: any;
|
|
86
|
-
} | undefined;
|
|
103
|
+
}[] | undefined;
|
|
87
104
|
temperature?: number | undefined;
|
|
88
105
|
topP?: number | undefined;
|
|
89
106
|
maxTokens?: number | undefined;
|
|
@@ -153,11 +170,28 @@ declare const GoogleChatModelConfigs: {
|
|
|
153
170
|
choices: string[];
|
|
154
171
|
};
|
|
155
172
|
safetySettings: {
|
|
156
|
-
type: "
|
|
173
|
+
type: "paired-select";
|
|
157
174
|
param: string;
|
|
158
175
|
title: string;
|
|
159
176
|
description: string;
|
|
160
|
-
|
|
177
|
+
fields: [{
|
|
178
|
+
label: string;
|
|
179
|
+
key: string;
|
|
180
|
+
choices: {
|
|
181
|
+
value: string;
|
|
182
|
+
label: string;
|
|
183
|
+
}[];
|
|
184
|
+
description?: string | undefined;
|
|
185
|
+
}, {
|
|
186
|
+
label: string;
|
|
187
|
+
key: string;
|
|
188
|
+
choices: {
|
|
189
|
+
value: string;
|
|
190
|
+
label: string;
|
|
191
|
+
}[];
|
|
192
|
+
description?: string | undefined;
|
|
193
|
+
}];
|
|
194
|
+
uniqueByField?: string | undefined;
|
|
161
195
|
};
|
|
162
196
|
};
|
|
163
197
|
schema: zod.ZodObject<zod.objectUtil.extendShape<{
|
|
@@ -166,11 +200,11 @@ declare const GoogleChatModelConfigs: {
|
|
|
166
200
|
stop: zod.ZodOptional<zod.ZodDefault<zod.ZodArray<zod.ZodString, "many">>>;
|
|
167
201
|
topP: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
168
202
|
toolChoice: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
169
|
-
safetySettings: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape,
|
|
203
|
+
safetySettings: zod.ZodOptional<zod.ZodArray<zod.ZodObject<zod.ZodRawShape, "strip", zod.ZodTypeAny, {
|
|
170
204
|
[x: string]: any;
|
|
171
205
|
}, {
|
|
172
206
|
[x: string]: any;
|
|
173
|
-
}>>;
|
|
207
|
+
}>, "many">>;
|
|
174
208
|
}, {
|
|
175
209
|
responseFormat: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
176
210
|
responseSchema: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape, zod.UnknownKeysParam, zod.ZodTypeAny, {
|
|
@@ -182,7 +216,7 @@ declare const GoogleChatModelConfigs: {
|
|
|
182
216
|
toolChoice?: string | null | undefined;
|
|
183
217
|
safetySettings?: {
|
|
184
218
|
[x: string]: any;
|
|
185
|
-
} | undefined;
|
|
219
|
+
}[] | undefined;
|
|
186
220
|
temperature?: number | undefined;
|
|
187
221
|
topP?: number | undefined;
|
|
188
222
|
maxTokens?: number | undefined;
|
|
@@ -195,7 +229,7 @@ declare const GoogleChatModelConfigs: {
|
|
|
195
229
|
toolChoice?: string | null | undefined;
|
|
196
230
|
safetySettings?: {
|
|
197
231
|
[x: string]: any;
|
|
198
|
-
} | undefined;
|
|
232
|
+
}[] | undefined;
|
|
199
233
|
temperature?: number | undefined;
|
|
200
234
|
topP?: number | undefined;
|
|
201
235
|
maxTokens?: number | undefined;
|
|
@@ -276,11 +310,28 @@ declare const GoogleChatModelConfigs: {
|
|
|
276
310
|
choices: string[];
|
|
277
311
|
};
|
|
278
312
|
safetySettings: {
|
|
279
|
-
type: "
|
|
313
|
+
type: "paired-select";
|
|
280
314
|
param: string;
|
|
281
315
|
title: string;
|
|
282
316
|
description: string;
|
|
283
|
-
|
|
317
|
+
fields: [{
|
|
318
|
+
label: string;
|
|
319
|
+
key: string;
|
|
320
|
+
choices: {
|
|
321
|
+
value: string;
|
|
322
|
+
label: string;
|
|
323
|
+
}[];
|
|
324
|
+
description?: string | undefined;
|
|
325
|
+
}, {
|
|
326
|
+
label: string;
|
|
327
|
+
key: string;
|
|
328
|
+
choices: {
|
|
329
|
+
value: string;
|
|
330
|
+
label: string;
|
|
331
|
+
}[];
|
|
332
|
+
description?: string | undefined;
|
|
333
|
+
}];
|
|
334
|
+
uniqueByField?: string | undefined;
|
|
284
335
|
};
|
|
285
336
|
};
|
|
286
337
|
schema: zod.ZodObject<zod.objectUtil.extendShape<zod.objectUtil.extendShape<{
|
|
@@ -289,11 +340,11 @@ declare const GoogleChatModelConfigs: {
|
|
|
289
340
|
stop: zod.ZodOptional<zod.ZodDefault<zod.ZodArray<zod.ZodString, "many">>>;
|
|
290
341
|
topP: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
291
342
|
toolChoice: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
292
|
-
safetySettings: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape,
|
|
343
|
+
safetySettings: zod.ZodOptional<zod.ZodArray<zod.ZodObject<zod.ZodRawShape, "strip", zod.ZodTypeAny, {
|
|
293
344
|
[x: string]: any;
|
|
294
345
|
}, {
|
|
295
346
|
[x: string]: any;
|
|
296
|
-
}>>;
|
|
347
|
+
}>, "many">>;
|
|
297
348
|
}, {
|
|
298
349
|
responseFormat: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
299
350
|
responseSchema: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape, zod.UnknownKeysParam, zod.ZodTypeAny, {
|
|
@@ -307,7 +358,7 @@ declare const GoogleChatModelConfigs: {
|
|
|
307
358
|
toolChoice?: string | null | undefined;
|
|
308
359
|
safetySettings?: {
|
|
309
360
|
[x: string]: any;
|
|
310
|
-
} | undefined;
|
|
361
|
+
}[] | undefined;
|
|
311
362
|
reasoningEnabled?: boolean | null | undefined;
|
|
312
363
|
temperature?: number | undefined;
|
|
313
364
|
topP?: number | undefined;
|
|
@@ -321,7 +372,7 @@ declare const GoogleChatModelConfigs: {
|
|
|
321
372
|
toolChoice?: string | null | undefined;
|
|
322
373
|
safetySettings?: {
|
|
323
374
|
[x: string]: any;
|
|
324
|
-
} | undefined;
|
|
375
|
+
}[] | undefined;
|
|
325
376
|
reasoningEnabled?: boolean | null | undefined;
|
|
326
377
|
temperature?: number | undefined;
|
|
327
378
|
topP?: number | undefined;
|
|
@@ -364,16 +415,16 @@ declare const ChatModelBaseConfigSchema: (maxTemperature: number, defaultTempera
|
|
|
364
415
|
stop: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodString, "many">>>;
|
|
365
416
|
topP: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
366
417
|
toolChoice: z.ZodOptional<z.ZodDefault<z.ZodNullable<z.ZodEnum<[string, ...string[]]>>>>;
|
|
367
|
-
safetySettings: z.ZodOptional<z.ZodObject<z.ZodRawShape,
|
|
418
|
+
safetySettings: z.ZodOptional<z.ZodArray<z.ZodObject<z.ZodRawShape, "strip", z.ZodTypeAny, {
|
|
368
419
|
[x: string]: any;
|
|
369
420
|
}, {
|
|
370
421
|
[x: string]: any;
|
|
371
|
-
}>>;
|
|
422
|
+
}>, "many">>;
|
|
372
423
|
}, "strip", z.ZodTypeAny, {
|
|
373
424
|
toolChoice?: string | null | undefined;
|
|
374
425
|
safetySettings?: {
|
|
375
426
|
[x: string]: any;
|
|
376
|
-
} | undefined;
|
|
427
|
+
}[] | undefined;
|
|
377
428
|
temperature?: number | undefined;
|
|
378
429
|
topP?: number | undefined;
|
|
379
430
|
maxTokens?: number | undefined;
|
|
@@ -382,7 +433,7 @@ declare const ChatModelBaseConfigSchema: (maxTemperature: number, defaultTempera
|
|
|
382
433
|
toolChoice?: string | null | undefined;
|
|
383
434
|
safetySettings?: {
|
|
384
435
|
[x: string]: any;
|
|
385
|
-
} | undefined;
|
|
436
|
+
}[] | undefined;
|
|
386
437
|
temperature?: number | undefined;
|
|
387
438
|
topP?: number | undefined;
|
|
388
439
|
maxTokens?: number | undefined;
|
|
@@ -435,16 +486,41 @@ declare const ChatModelBaseConfigDef: (maxTemperature: number, defaultTemperatur
|
|
|
435
486
|
choices: string[];
|
|
436
487
|
};
|
|
437
488
|
readonly safetySettings: {
|
|
438
|
-
type: "
|
|
489
|
+
type: "paired-select";
|
|
439
490
|
param: string;
|
|
440
491
|
title: string;
|
|
441
492
|
description: string;
|
|
442
|
-
|
|
493
|
+
fields: [{
|
|
494
|
+
label: string;
|
|
495
|
+
key: string;
|
|
496
|
+
choices: {
|
|
497
|
+
value: string;
|
|
498
|
+
label: string;
|
|
499
|
+
}[];
|
|
500
|
+
description?: string | undefined;
|
|
501
|
+
}, {
|
|
502
|
+
label: string;
|
|
503
|
+
key: string;
|
|
504
|
+
choices: {
|
|
505
|
+
value: string;
|
|
506
|
+
label: string;
|
|
507
|
+
}[];
|
|
508
|
+
description?: string | undefined;
|
|
509
|
+
}];
|
|
510
|
+
uniqueByField?: string | undefined;
|
|
443
511
|
};
|
|
444
512
|
};
|
|
445
513
|
|
|
446
|
-
declare const GOOGLE_SAFETY_CATEGORIES: readonly ["
|
|
514
|
+
declare const GOOGLE_SAFETY_CATEGORIES: readonly ["HARM_CATEGORY_HARASSMENT", "HARM_CATEGORY_HATE_SPEECH", "HARM_CATEGORY_SEXUALLY_EXPLICIT", "HARM_CATEGORY_DANGEROUS_CONTENT", "HARM_CATEGORY_CIVIC_INTEGRITY"];
|
|
447
515
|
declare const GOOGLE_SAFETY_THRESHOLDS: readonly ["HARM_BLOCK_THRESHOLD_UNSPECIFIED", "BLOCK_LOW_AND_ABOVE", "BLOCK_MEDIUM_AND_ABOVE", "BLOCK_ONLY_HIGH", "BLOCK_NONE", "OFF"];
|
|
516
|
+
declare const GOOGLE_SAFETY_CATEGORY_OPTIONS: {
|
|
517
|
+
value: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
518
|
+
label: string;
|
|
519
|
+
}[];
|
|
520
|
+
declare const GOOGLE_SAFETY_THRESHOLD_OPTIONS: {
|
|
521
|
+
value: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
522
|
+
label: string;
|
|
523
|
+
}[];
|
|
448
524
|
declare const temperature: (max: number, _default: number) => {
|
|
449
525
|
def: {
|
|
450
526
|
type: "range";
|
|
@@ -456,7 +532,7 @@ declare const temperature: (max: number, _default: number) => {
|
|
|
456
532
|
min: number;
|
|
457
533
|
step: number;
|
|
458
534
|
};
|
|
459
|
-
schema:
|
|
535
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
460
536
|
};
|
|
461
537
|
declare const maxTokens: (maxOutputTokens: number) => {
|
|
462
538
|
def: {
|
|
@@ -469,7 +545,7 @@ declare const maxTokens: (maxOutputTokens: number) => {
|
|
|
469
545
|
min: number;
|
|
470
546
|
step: number;
|
|
471
547
|
};
|
|
472
|
-
schema:
|
|
548
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
473
549
|
};
|
|
474
550
|
declare const stop: (maxSequences: number) => {
|
|
475
551
|
def: {
|
|
@@ -479,7 +555,7 @@ declare const stop: (maxSequences: number) => {
|
|
|
479
555
|
description: string;
|
|
480
556
|
max: number;
|
|
481
557
|
};
|
|
482
|
-
schema:
|
|
558
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodArray<zod.ZodString, "many">>>;
|
|
483
559
|
};
|
|
484
560
|
declare const topP: (_default: number) => {
|
|
485
561
|
def: {
|
|
@@ -492,7 +568,7 @@ declare const topP: (_default: number) => {
|
|
|
492
568
|
min: number;
|
|
493
569
|
step: number;
|
|
494
570
|
};
|
|
495
|
-
schema:
|
|
571
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
496
572
|
};
|
|
497
573
|
declare const topK: (_default: number) => {
|
|
498
574
|
def: {
|
|
@@ -505,7 +581,7 @@ declare const topK: (_default: number) => {
|
|
|
505
581
|
min: number;
|
|
506
582
|
step: number;
|
|
507
583
|
};
|
|
508
|
-
schema:
|
|
584
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
509
585
|
};
|
|
510
586
|
declare const frequencyPenalty: {
|
|
511
587
|
def: {
|
|
@@ -518,7 +594,7 @@ declare const frequencyPenalty: {
|
|
|
518
594
|
min: number;
|
|
519
595
|
step: number;
|
|
520
596
|
};
|
|
521
|
-
schema:
|
|
597
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
522
598
|
};
|
|
523
599
|
declare const presencePenalty: {
|
|
524
600
|
def: {
|
|
@@ -531,7 +607,7 @@ declare const presencePenalty: {
|
|
|
531
607
|
min: number;
|
|
532
608
|
step: number;
|
|
533
609
|
};
|
|
534
|
-
schema:
|
|
610
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
535
611
|
};
|
|
536
612
|
declare const seed: {
|
|
537
613
|
def: {
|
|
@@ -544,7 +620,7 @@ declare const seed: {
|
|
|
544
620
|
min: number;
|
|
545
621
|
step: number;
|
|
546
622
|
};
|
|
547
|
-
schema:
|
|
623
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
548
624
|
};
|
|
549
625
|
declare const toolChoice: {
|
|
550
626
|
def: {
|
|
@@ -555,21 +631,38 @@ declare const toolChoice: {
|
|
|
555
631
|
default: string;
|
|
556
632
|
choices: string[];
|
|
557
633
|
};
|
|
558
|
-
schema:
|
|
634
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
559
635
|
};
|
|
560
636
|
declare const safetySettings: {
|
|
561
637
|
def: {
|
|
562
|
-
type: "
|
|
638
|
+
type: "paired-select";
|
|
563
639
|
param: string;
|
|
564
640
|
title: string;
|
|
565
641
|
description: string;
|
|
566
|
-
|
|
642
|
+
fields: [{
|
|
643
|
+
label: string;
|
|
644
|
+
key: string;
|
|
645
|
+
choices: {
|
|
646
|
+
value: string;
|
|
647
|
+
label: string;
|
|
648
|
+
}[];
|
|
649
|
+
description?: string | undefined;
|
|
650
|
+
}, {
|
|
651
|
+
label: string;
|
|
652
|
+
key: string;
|
|
653
|
+
choices: {
|
|
654
|
+
value: string;
|
|
655
|
+
label: string;
|
|
656
|
+
}[];
|
|
657
|
+
description?: string | undefined;
|
|
658
|
+
}];
|
|
659
|
+
uniqueByField?: string | undefined;
|
|
567
660
|
};
|
|
568
|
-
schema:
|
|
661
|
+
schema: zod.ZodOptional<zod.ZodArray<zod.ZodObject<zod.ZodRawShape, "strip", zod.ZodTypeAny, {
|
|
569
662
|
[x: string]: any;
|
|
570
663
|
}, {
|
|
571
664
|
[x: string]: any;
|
|
572
|
-
}>>;
|
|
665
|
+
}>, "many">>;
|
|
573
666
|
};
|
|
574
667
|
declare const reasoningEnabled: {
|
|
575
668
|
def: {
|
|
@@ -579,7 +672,7 @@ declare const reasoningEnabled: {
|
|
|
579
672
|
description: string;
|
|
580
673
|
default: boolean | null;
|
|
581
674
|
};
|
|
582
|
-
schema:
|
|
675
|
+
schema: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodBoolean>>>;
|
|
583
676
|
};
|
|
584
677
|
|
|
585
678
|
declare const ChatModelReasoningConfigSchema: (maxTemperature: number, defaultTemperature: number, maxOutputTokens: number, maxSequences: number, defaultTopP: number) => zod.ZodObject<zod.objectUtil.extendShape<zod.objectUtil.extendShape<{
|
|
@@ -588,11 +681,11 @@ declare const ChatModelReasoningConfigSchema: (maxTemperature: number, defaultTe
|
|
|
588
681
|
stop: zod.ZodOptional<zod.ZodDefault<zod.ZodArray<zod.ZodString, "many">>>;
|
|
589
682
|
topP: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
590
683
|
toolChoice: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
591
|
-
safetySettings: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape,
|
|
684
|
+
safetySettings: zod.ZodOptional<zod.ZodArray<zod.ZodObject<zod.ZodRawShape, "strip", zod.ZodTypeAny, {
|
|
592
685
|
[x: string]: any;
|
|
593
686
|
}, {
|
|
594
687
|
[x: string]: any;
|
|
595
|
-
}>>;
|
|
688
|
+
}>, "many">>;
|
|
596
689
|
}, {
|
|
597
690
|
responseFormat: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
598
691
|
responseSchema: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape, zod.UnknownKeysParam, zod.ZodTypeAny, {
|
|
@@ -606,7 +699,7 @@ declare const ChatModelReasoningConfigSchema: (maxTemperature: number, defaultTe
|
|
|
606
699
|
toolChoice?: string | null | undefined;
|
|
607
700
|
safetySettings?: {
|
|
608
701
|
[x: string]: any;
|
|
609
|
-
} | undefined;
|
|
702
|
+
}[] | undefined;
|
|
610
703
|
reasoningEnabled?: boolean | null | undefined;
|
|
611
704
|
temperature?: number | undefined;
|
|
612
705
|
topP?: number | undefined;
|
|
@@ -620,7 +713,7 @@ declare const ChatModelReasoningConfigSchema: (maxTemperature: number, defaultTe
|
|
|
620
713
|
toolChoice?: string | null | undefined;
|
|
621
714
|
safetySettings?: {
|
|
622
715
|
[x: string]: any;
|
|
623
|
-
} | undefined;
|
|
716
|
+
}[] | undefined;
|
|
624
717
|
reasoningEnabled?: boolean | null | undefined;
|
|
625
718
|
temperature?: number | undefined;
|
|
626
719
|
topP?: number | undefined;
|
|
@@ -700,11 +793,28 @@ declare const ChatModelReasoningConfigDef: (maxTemperature: number, defaultTempe
|
|
|
700
793
|
choices: string[];
|
|
701
794
|
};
|
|
702
795
|
safetySettings: {
|
|
703
|
-
type: "
|
|
796
|
+
type: "paired-select";
|
|
704
797
|
param: string;
|
|
705
798
|
title: string;
|
|
706
799
|
description: string;
|
|
707
|
-
|
|
800
|
+
fields: [{
|
|
801
|
+
label: string;
|
|
802
|
+
key: string;
|
|
803
|
+
choices: {
|
|
804
|
+
value: string;
|
|
805
|
+
label: string;
|
|
806
|
+
}[];
|
|
807
|
+
description?: string | undefined;
|
|
808
|
+
}, {
|
|
809
|
+
label: string;
|
|
810
|
+
key: string;
|
|
811
|
+
choices: {
|
|
812
|
+
value: string;
|
|
813
|
+
label: string;
|
|
814
|
+
}[];
|
|
815
|
+
description?: string | undefined;
|
|
816
|
+
}];
|
|
817
|
+
uniqueByField?: string | undefined;
|
|
708
818
|
};
|
|
709
819
|
};
|
|
710
820
|
|
|
@@ -770,11 +880,28 @@ declare const GoogleChatModelResponseSchemaConfigDef: (maxTemperature: number, d
|
|
|
770
880
|
choices: string[];
|
|
771
881
|
};
|
|
772
882
|
safetySettings: {
|
|
773
|
-
type: "
|
|
883
|
+
type: "paired-select";
|
|
774
884
|
param: string;
|
|
775
885
|
title: string;
|
|
776
886
|
description: string;
|
|
777
|
-
|
|
887
|
+
fields: [{
|
|
888
|
+
label: string;
|
|
889
|
+
key: string;
|
|
890
|
+
choices: {
|
|
891
|
+
value: string;
|
|
892
|
+
label: string;
|
|
893
|
+
}[];
|
|
894
|
+
description?: string | undefined;
|
|
895
|
+
}, {
|
|
896
|
+
label: string;
|
|
897
|
+
key: string;
|
|
898
|
+
choices: {
|
|
899
|
+
value: string;
|
|
900
|
+
label: string;
|
|
901
|
+
}[];
|
|
902
|
+
description?: string | undefined;
|
|
903
|
+
}];
|
|
904
|
+
uniqueByField?: string | undefined;
|
|
778
905
|
};
|
|
779
906
|
};
|
|
780
907
|
declare const GoogleChatModelResponseSchemaConfigSchema: (maxTemperature: number, defaultTemperature: number, maxOutputTokens: number, maxSequences: number, defaultTopP: number) => zod.ZodObject<zod.objectUtil.extendShape<{
|
|
@@ -783,11 +910,11 @@ declare const GoogleChatModelResponseSchemaConfigSchema: (maxTemperature: number
|
|
|
783
910
|
stop: zod.ZodOptional<zod.ZodDefault<zod.ZodArray<zod.ZodString, "many">>>;
|
|
784
911
|
topP: zod.ZodOptional<zod.ZodDefault<zod.ZodNumber>>;
|
|
785
912
|
toolChoice: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
786
|
-
safetySettings: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape,
|
|
913
|
+
safetySettings: zod.ZodOptional<zod.ZodArray<zod.ZodObject<zod.ZodRawShape, "strip", zod.ZodTypeAny, {
|
|
787
914
|
[x: string]: any;
|
|
788
915
|
}, {
|
|
789
916
|
[x: string]: any;
|
|
790
|
-
}>>;
|
|
917
|
+
}>, "many">>;
|
|
791
918
|
}, {
|
|
792
919
|
responseFormat: zod.ZodOptional<zod.ZodDefault<zod.ZodNullable<zod.ZodEnum<[string, ...string[]]>>>>;
|
|
793
920
|
responseSchema: zod.ZodOptional<zod.ZodObject<zod.ZodRawShape, zod.UnknownKeysParam, zod.ZodTypeAny, {
|
|
@@ -799,7 +926,7 @@ declare const GoogleChatModelResponseSchemaConfigSchema: (maxTemperature: number
|
|
|
799
926
|
toolChoice?: string | null | undefined;
|
|
800
927
|
safetySettings?: {
|
|
801
928
|
[x: string]: any;
|
|
802
|
-
} | undefined;
|
|
929
|
+
}[] | undefined;
|
|
803
930
|
temperature?: number | undefined;
|
|
804
931
|
topP?: number | undefined;
|
|
805
932
|
maxTokens?: number | undefined;
|
|
@@ -812,7 +939,7 @@ declare const GoogleChatModelResponseSchemaConfigSchema: (maxTemperature: number
|
|
|
812
939
|
toolChoice?: string | null | undefined;
|
|
813
940
|
safetySettings?: {
|
|
814
941
|
[x: string]: any;
|
|
815
|
-
} | undefined;
|
|
942
|
+
}[] | undefined;
|
|
816
943
|
temperature?: number | undefined;
|
|
817
944
|
topP?: number | undefined;
|
|
818
945
|
maxTokens?: number | undefined;
|
|
@@ -1694,11 +1821,11 @@ declare const GoogleChatSafetySettings: z.ZodObject<{
|
|
|
1694
1821
|
category: z.ZodEnum<["HARM_CATEGORY_HARASSMENT", "HARM_CATEGORY_HATE_SPEECH", "HARM_CATEGORY_SEXUALLY_EXPLICIT", "HARM_CATEGORY_DANGEROUS_CONTENT", "HARM_CATEGORY_CIVIC_INTEGRITY"]>;
|
|
1695
1822
|
threshold: z.ZodEnum<["HARM_BLOCK_THRESHOLD_UNSPECIFIED", "BLOCK_LOW_AND_ABOVE", "BLOCK_MEDIUM_AND_ABOVE", "BLOCK_ONLY_HIGH", "BLOCK_NONE", "OFF"]>;
|
|
1696
1823
|
}, "strip", z.ZodTypeAny, {
|
|
1697
|
-
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
1698
1824
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
1699
|
-
}, {
|
|
1700
1825
|
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
1826
|
+
}, {
|
|
1701
1827
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
1828
|
+
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
1702
1829
|
}>;
|
|
1703
1830
|
type GoogleChatSafetySettingsType = z.infer<typeof GoogleChatSafetySettings>;
|
|
1704
1831
|
declare const GoogleChatRequest: z.ZodObject<{
|
|
@@ -1941,21 +2068,21 @@ declare const GoogleChatRequest: z.ZodObject<{
|
|
|
1941
2068
|
category: z.ZodEnum<["HARM_CATEGORY_HARASSMENT", "HARM_CATEGORY_HATE_SPEECH", "HARM_CATEGORY_SEXUALLY_EXPLICIT", "HARM_CATEGORY_DANGEROUS_CONTENT", "HARM_CATEGORY_CIVIC_INTEGRITY"]>;
|
|
1942
2069
|
threshold: z.ZodEnum<["HARM_BLOCK_THRESHOLD_UNSPECIFIED", "BLOCK_LOW_AND_ABOVE", "BLOCK_MEDIUM_AND_ABOVE", "BLOCK_ONLY_HIGH", "BLOCK_NONE", "OFF"]>;
|
|
1943
2070
|
}, "strip", z.ZodTypeAny, {
|
|
1944
|
-
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
1945
2071
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
1946
|
-
}, {
|
|
1947
2072
|
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2073
|
+
}, {
|
|
1948
2074
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
2075
|
+
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
1949
2076
|
}>, "many">>;
|
|
1950
2077
|
safety_settings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1951
2078
|
category: z.ZodEnum<["HARM_CATEGORY_HARASSMENT", "HARM_CATEGORY_HATE_SPEECH", "HARM_CATEGORY_SEXUALLY_EXPLICIT", "HARM_CATEGORY_DANGEROUS_CONTENT", "HARM_CATEGORY_CIVIC_INTEGRITY"]>;
|
|
1952
2079
|
threshold: z.ZodEnum<["HARM_BLOCK_THRESHOLD_UNSPECIFIED", "BLOCK_LOW_AND_ABOVE", "BLOCK_MEDIUM_AND_ABOVE", "BLOCK_ONLY_HIGH", "BLOCK_NONE", "OFF"]>;
|
|
1953
2080
|
}, "strip", z.ZodTypeAny, {
|
|
1954
|
-
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
1955
2081
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
1956
|
-
}, {
|
|
1957
2082
|
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2083
|
+
}, {
|
|
1958
2084
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
2085
|
+
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
1959
2086
|
}>, "many">>;
|
|
1960
2087
|
tools: z.ZodOptional<z.ZodObject<{
|
|
1961
2088
|
function_declarations: z.ZodArray<z.ZodObject<{
|
|
@@ -2056,8 +2183,8 @@ declare const GoogleChatRequest: z.ZodObject<{
|
|
|
2056
2183
|
})[];
|
|
2057
2184
|
}[];
|
|
2058
2185
|
safetySettings?: {
|
|
2059
|
-
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2060
2186
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
2187
|
+
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2061
2188
|
}[] | undefined;
|
|
2062
2189
|
model?: string | undefined;
|
|
2063
2190
|
systemInstruction?: {
|
|
@@ -2091,8 +2218,8 @@ declare const GoogleChatRequest: z.ZodObject<{
|
|
|
2091
2218
|
topK?: number | undefined;
|
|
2092
2219
|
} | undefined;
|
|
2093
2220
|
safety_settings?: {
|
|
2094
|
-
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2095
2221
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
2222
|
+
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2096
2223
|
}[] | undefined;
|
|
2097
2224
|
tools?: {
|
|
2098
2225
|
function_declarations: {
|
|
@@ -2141,8 +2268,8 @@ declare const GoogleChatRequest: z.ZodObject<{
|
|
|
2141
2268
|
})[];
|
|
2142
2269
|
}[];
|
|
2143
2270
|
safetySettings?: {
|
|
2144
|
-
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2145
2271
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
2272
|
+
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2146
2273
|
}[] | undefined;
|
|
2147
2274
|
model?: string | undefined;
|
|
2148
2275
|
systemInstruction?: {
|
|
@@ -2176,8 +2303,8 @@ declare const GoogleChatRequest: z.ZodObject<{
|
|
|
2176
2303
|
topK?: number | undefined;
|
|
2177
2304
|
} | undefined;
|
|
2178
2305
|
safety_settings?: {
|
|
2179
|
-
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2180
2306
|
category: "HARM_CATEGORY_HARASSMENT" | "HARM_CATEGORY_HATE_SPEECH" | "HARM_CATEGORY_SEXUALLY_EXPLICIT" | "HARM_CATEGORY_DANGEROUS_CONTENT" | "HARM_CATEGORY_CIVIC_INTEGRITY";
|
|
2307
|
+
threshold: "HARM_BLOCK_THRESHOLD_UNSPECIFIED" | "BLOCK_LOW_AND_ABOVE" | "BLOCK_MEDIUM_AND_ABOVE" | "BLOCK_ONLY_HIGH" | "BLOCK_NONE" | "OFF";
|
|
2181
2308
|
}[] | undefined;
|
|
2182
2309
|
tools?: {
|
|
2183
2310
|
function_declarations: {
|
|
@@ -2291,6 +2418,29 @@ declare const Gemini1_5Flash001Schema: {
|
|
|
2291
2418
|
title: string;
|
|
2292
2419
|
description: string;
|
|
2293
2420
|
objectSchema?: any;
|
|
2421
|
+
} | {
|
|
2422
|
+
type: "paired-select";
|
|
2423
|
+
param: string;
|
|
2424
|
+
title: string;
|
|
2425
|
+
description: string;
|
|
2426
|
+
fields: [{
|
|
2427
|
+
label: string;
|
|
2428
|
+
key: string;
|
|
2429
|
+
choices: {
|
|
2430
|
+
value: string;
|
|
2431
|
+
label: string;
|
|
2432
|
+
}[];
|
|
2433
|
+
description?: string | undefined;
|
|
2434
|
+
}, {
|
|
2435
|
+
label: string;
|
|
2436
|
+
key: string;
|
|
2437
|
+
choices: {
|
|
2438
|
+
value: string;
|
|
2439
|
+
label: string;
|
|
2440
|
+
}[];
|
|
2441
|
+
description?: string | undefined;
|
|
2442
|
+
}];
|
|
2443
|
+
uniqueByField?: string | undefined;
|
|
2294
2444
|
} | {
|
|
2295
2445
|
type: "range";
|
|
2296
2446
|
param: string;
|
|
@@ -2377,6 +2527,29 @@ declare const Gemini1_5Flash002Schema: {
|
|
|
2377
2527
|
title: string;
|
|
2378
2528
|
description: string;
|
|
2379
2529
|
objectSchema?: any;
|
|
2530
|
+
} | {
|
|
2531
|
+
type: "paired-select";
|
|
2532
|
+
param: string;
|
|
2533
|
+
title: string;
|
|
2534
|
+
description: string;
|
|
2535
|
+
fields: [{
|
|
2536
|
+
label: string;
|
|
2537
|
+
key: string;
|
|
2538
|
+
choices: {
|
|
2539
|
+
value: string;
|
|
2540
|
+
label: string;
|
|
2541
|
+
}[];
|
|
2542
|
+
description?: string | undefined;
|
|
2543
|
+
}, {
|
|
2544
|
+
label: string;
|
|
2545
|
+
key: string;
|
|
2546
|
+
choices: {
|
|
2547
|
+
value: string;
|
|
2548
|
+
label: string;
|
|
2549
|
+
}[];
|
|
2550
|
+
description?: string | undefined;
|
|
2551
|
+
}];
|
|
2552
|
+
uniqueByField?: string | undefined;
|
|
2380
2553
|
} | {
|
|
2381
2554
|
type: "range";
|
|
2382
2555
|
param: string;
|
|
@@ -2463,6 +2636,29 @@ declare const Gemini1_5FlashLatestSchema: {
|
|
|
2463
2636
|
title: string;
|
|
2464
2637
|
description: string;
|
|
2465
2638
|
objectSchema?: any;
|
|
2639
|
+
} | {
|
|
2640
|
+
type: "paired-select";
|
|
2641
|
+
param: string;
|
|
2642
|
+
title: string;
|
|
2643
|
+
description: string;
|
|
2644
|
+
fields: [{
|
|
2645
|
+
label: string;
|
|
2646
|
+
key: string;
|
|
2647
|
+
choices: {
|
|
2648
|
+
value: string;
|
|
2649
|
+
label: string;
|
|
2650
|
+
}[];
|
|
2651
|
+
description?: string | undefined;
|
|
2652
|
+
}, {
|
|
2653
|
+
label: string;
|
|
2654
|
+
key: string;
|
|
2655
|
+
choices: {
|
|
2656
|
+
value: string;
|
|
2657
|
+
label: string;
|
|
2658
|
+
}[];
|
|
2659
|
+
description?: string | undefined;
|
|
2660
|
+
}];
|
|
2661
|
+
uniqueByField?: string | undefined;
|
|
2466
2662
|
} | {
|
|
2467
2663
|
type: "range";
|
|
2468
2664
|
param: string;
|
|
@@ -2549,6 +2745,29 @@ declare const Gemini1_5FlashSchema: {
|
|
|
2549
2745
|
title: string;
|
|
2550
2746
|
description: string;
|
|
2551
2747
|
objectSchema?: any;
|
|
2748
|
+
} | {
|
|
2749
|
+
type: "paired-select";
|
|
2750
|
+
param: string;
|
|
2751
|
+
title: string;
|
|
2752
|
+
description: string;
|
|
2753
|
+
fields: [{
|
|
2754
|
+
label: string;
|
|
2755
|
+
key: string;
|
|
2756
|
+
choices: {
|
|
2757
|
+
value: string;
|
|
2758
|
+
label: string;
|
|
2759
|
+
}[];
|
|
2760
|
+
description?: string | undefined;
|
|
2761
|
+
}, {
|
|
2762
|
+
label: string;
|
|
2763
|
+
key: string;
|
|
2764
|
+
choices: {
|
|
2765
|
+
value: string;
|
|
2766
|
+
label: string;
|
|
2767
|
+
}[];
|
|
2768
|
+
description?: string | undefined;
|
|
2769
|
+
}];
|
|
2770
|
+
uniqueByField?: string | undefined;
|
|
2552
2771
|
} | {
|
|
2553
2772
|
type: "range";
|
|
2554
2773
|
param: string;
|
|
@@ -2635,6 +2854,29 @@ declare const Gemini1_5Pro001Schema: {
|
|
|
2635
2854
|
title: string;
|
|
2636
2855
|
description: string;
|
|
2637
2856
|
objectSchema?: any;
|
|
2857
|
+
} | {
|
|
2858
|
+
type: "paired-select";
|
|
2859
|
+
param: string;
|
|
2860
|
+
title: string;
|
|
2861
|
+
description: string;
|
|
2862
|
+
fields: [{
|
|
2863
|
+
label: string;
|
|
2864
|
+
key: string;
|
|
2865
|
+
choices: {
|
|
2866
|
+
value: string;
|
|
2867
|
+
label: string;
|
|
2868
|
+
}[];
|
|
2869
|
+
description?: string | undefined;
|
|
2870
|
+
}, {
|
|
2871
|
+
label: string;
|
|
2872
|
+
key: string;
|
|
2873
|
+
choices: {
|
|
2874
|
+
value: string;
|
|
2875
|
+
label: string;
|
|
2876
|
+
}[];
|
|
2877
|
+
description?: string | undefined;
|
|
2878
|
+
}];
|
|
2879
|
+
uniqueByField?: string | undefined;
|
|
2638
2880
|
} | {
|
|
2639
2881
|
type: "range";
|
|
2640
2882
|
param: string;
|
|
@@ -2721,6 +2963,29 @@ declare const Gemini1_5Pro002Schema: {
|
|
|
2721
2963
|
title: string;
|
|
2722
2964
|
description: string;
|
|
2723
2965
|
objectSchema?: any;
|
|
2966
|
+
} | {
|
|
2967
|
+
type: "paired-select";
|
|
2968
|
+
param: string;
|
|
2969
|
+
title: string;
|
|
2970
|
+
description: string;
|
|
2971
|
+
fields: [{
|
|
2972
|
+
label: string;
|
|
2973
|
+
key: string;
|
|
2974
|
+
choices: {
|
|
2975
|
+
value: string;
|
|
2976
|
+
label: string;
|
|
2977
|
+
}[];
|
|
2978
|
+
description?: string | undefined;
|
|
2979
|
+
}, {
|
|
2980
|
+
label: string;
|
|
2981
|
+
key: string;
|
|
2982
|
+
choices: {
|
|
2983
|
+
value: string;
|
|
2984
|
+
label: string;
|
|
2985
|
+
}[];
|
|
2986
|
+
description?: string | undefined;
|
|
2987
|
+
}];
|
|
2988
|
+
uniqueByField?: string | undefined;
|
|
2724
2989
|
} | {
|
|
2725
2990
|
type: "range";
|
|
2726
2991
|
param: string;
|
|
@@ -2807,6 +3072,29 @@ declare const Gemini1_5ProLatestSchema: {
|
|
|
2807
3072
|
title: string;
|
|
2808
3073
|
description: string;
|
|
2809
3074
|
objectSchema?: any;
|
|
3075
|
+
} | {
|
|
3076
|
+
type: "paired-select";
|
|
3077
|
+
param: string;
|
|
3078
|
+
title: string;
|
|
3079
|
+
description: string;
|
|
3080
|
+
fields: [{
|
|
3081
|
+
label: string;
|
|
3082
|
+
key: string;
|
|
3083
|
+
choices: {
|
|
3084
|
+
value: string;
|
|
3085
|
+
label: string;
|
|
3086
|
+
}[];
|
|
3087
|
+
description?: string | undefined;
|
|
3088
|
+
}, {
|
|
3089
|
+
label: string;
|
|
3090
|
+
key: string;
|
|
3091
|
+
choices: {
|
|
3092
|
+
value: string;
|
|
3093
|
+
label: string;
|
|
3094
|
+
}[];
|
|
3095
|
+
description?: string | undefined;
|
|
3096
|
+
}];
|
|
3097
|
+
uniqueByField?: string | undefined;
|
|
2810
3098
|
} | {
|
|
2811
3099
|
type: "range";
|
|
2812
3100
|
param: string;
|
|
@@ -2893,6 +3181,29 @@ declare const Gemini1_5ProSchema: {
|
|
|
2893
3181
|
title: string;
|
|
2894
3182
|
description: string;
|
|
2895
3183
|
objectSchema?: any;
|
|
3184
|
+
} | {
|
|
3185
|
+
type: "paired-select";
|
|
3186
|
+
param: string;
|
|
3187
|
+
title: string;
|
|
3188
|
+
description: string;
|
|
3189
|
+
fields: [{
|
|
3190
|
+
label: string;
|
|
3191
|
+
key: string;
|
|
3192
|
+
choices: {
|
|
3193
|
+
value: string;
|
|
3194
|
+
label: string;
|
|
3195
|
+
}[];
|
|
3196
|
+
description?: string | undefined;
|
|
3197
|
+
}, {
|
|
3198
|
+
label: string;
|
|
3199
|
+
key: string;
|
|
3200
|
+
choices: {
|
|
3201
|
+
value: string;
|
|
3202
|
+
label: string;
|
|
3203
|
+
}[];
|
|
3204
|
+
description?: string | undefined;
|
|
3205
|
+
}];
|
|
3206
|
+
uniqueByField?: string | undefined;
|
|
2896
3207
|
} | {
|
|
2897
3208
|
type: "range";
|
|
2898
3209
|
param: string;
|
|
@@ -2979,6 +3290,29 @@ declare const Gemini2_0FlashExpSchema: {
|
|
|
2979
3290
|
title: string;
|
|
2980
3291
|
description: string;
|
|
2981
3292
|
objectSchema?: any;
|
|
3293
|
+
} | {
|
|
3294
|
+
type: "paired-select";
|
|
3295
|
+
param: string;
|
|
3296
|
+
title: string;
|
|
3297
|
+
description: string;
|
|
3298
|
+
fields: [{
|
|
3299
|
+
label: string;
|
|
3300
|
+
key: string;
|
|
3301
|
+
choices: {
|
|
3302
|
+
value: string;
|
|
3303
|
+
label: string;
|
|
3304
|
+
}[];
|
|
3305
|
+
description?: string | undefined;
|
|
3306
|
+
}, {
|
|
3307
|
+
label: string;
|
|
3308
|
+
key: string;
|
|
3309
|
+
choices: {
|
|
3310
|
+
value: string;
|
|
3311
|
+
label: string;
|
|
3312
|
+
}[];
|
|
3313
|
+
description?: string | undefined;
|
|
3314
|
+
}];
|
|
3315
|
+
uniqueByField?: string | undefined;
|
|
2982
3316
|
} | {
|
|
2983
3317
|
type: "range";
|
|
2984
3318
|
param: string;
|
|
@@ -3065,6 +3399,29 @@ declare const Gemini2_0FlashSchema: {
|
|
|
3065
3399
|
title: string;
|
|
3066
3400
|
description: string;
|
|
3067
3401
|
objectSchema?: any;
|
|
3402
|
+
} | {
|
|
3403
|
+
type: "paired-select";
|
|
3404
|
+
param: string;
|
|
3405
|
+
title: string;
|
|
3406
|
+
description: string;
|
|
3407
|
+
fields: [{
|
|
3408
|
+
label: string;
|
|
3409
|
+
key: string;
|
|
3410
|
+
choices: {
|
|
3411
|
+
value: string;
|
|
3412
|
+
label: string;
|
|
3413
|
+
}[];
|
|
3414
|
+
description?: string | undefined;
|
|
3415
|
+
}, {
|
|
3416
|
+
label: string;
|
|
3417
|
+
key: string;
|
|
3418
|
+
choices: {
|
|
3419
|
+
value: string;
|
|
3420
|
+
label: string;
|
|
3421
|
+
}[];
|
|
3422
|
+
description?: string | undefined;
|
|
3423
|
+
}];
|
|
3424
|
+
uniqueByField?: string | undefined;
|
|
3068
3425
|
} | {
|
|
3069
3426
|
type: "range";
|
|
3070
3427
|
param: string;
|
|
@@ -3151,6 +3508,29 @@ declare const Gemini2_5FlashLiteSchema: {
|
|
|
3151
3508
|
title: string;
|
|
3152
3509
|
description: string;
|
|
3153
3510
|
objectSchema?: any;
|
|
3511
|
+
} | {
|
|
3512
|
+
type: "paired-select";
|
|
3513
|
+
param: string;
|
|
3514
|
+
title: string;
|
|
3515
|
+
description: string;
|
|
3516
|
+
fields: [{
|
|
3517
|
+
label: string;
|
|
3518
|
+
key: string;
|
|
3519
|
+
choices: {
|
|
3520
|
+
value: string;
|
|
3521
|
+
label: string;
|
|
3522
|
+
}[];
|
|
3523
|
+
description?: string | undefined;
|
|
3524
|
+
}, {
|
|
3525
|
+
label: string;
|
|
3526
|
+
key: string;
|
|
3527
|
+
choices: {
|
|
3528
|
+
value: string;
|
|
3529
|
+
label: string;
|
|
3530
|
+
}[];
|
|
3531
|
+
description?: string | undefined;
|
|
3532
|
+
}];
|
|
3533
|
+
uniqueByField?: string | undefined;
|
|
3154
3534
|
} | {
|
|
3155
3535
|
type: "range";
|
|
3156
3536
|
param: string;
|
|
@@ -3237,6 +3617,29 @@ declare const Gemini2_5FlashPreview0417Schema: {
|
|
|
3237
3617
|
title: string;
|
|
3238
3618
|
description: string;
|
|
3239
3619
|
objectSchema?: any;
|
|
3620
|
+
} | {
|
|
3621
|
+
type: "paired-select";
|
|
3622
|
+
param: string;
|
|
3623
|
+
title: string;
|
|
3624
|
+
description: string;
|
|
3625
|
+
fields: [{
|
|
3626
|
+
label: string;
|
|
3627
|
+
key: string;
|
|
3628
|
+
choices: {
|
|
3629
|
+
value: string;
|
|
3630
|
+
label: string;
|
|
3631
|
+
}[];
|
|
3632
|
+
description?: string | undefined;
|
|
3633
|
+
}, {
|
|
3634
|
+
label: string;
|
|
3635
|
+
key: string;
|
|
3636
|
+
choices: {
|
|
3637
|
+
value: string;
|
|
3638
|
+
label: string;
|
|
3639
|
+
}[];
|
|
3640
|
+
description?: string | undefined;
|
|
3641
|
+
}];
|
|
3642
|
+
uniqueByField?: string | undefined;
|
|
3240
3643
|
} | {
|
|
3241
3644
|
type: "range";
|
|
3242
3645
|
param: string;
|
|
@@ -3323,6 +3726,29 @@ declare const Gemini2_5FlashSchema: {
|
|
|
3323
3726
|
title: string;
|
|
3324
3727
|
description: string;
|
|
3325
3728
|
objectSchema?: any;
|
|
3729
|
+
} | {
|
|
3730
|
+
type: "paired-select";
|
|
3731
|
+
param: string;
|
|
3732
|
+
title: string;
|
|
3733
|
+
description: string;
|
|
3734
|
+
fields: [{
|
|
3735
|
+
label: string;
|
|
3736
|
+
key: string;
|
|
3737
|
+
choices: {
|
|
3738
|
+
value: string;
|
|
3739
|
+
label: string;
|
|
3740
|
+
}[];
|
|
3741
|
+
description?: string | undefined;
|
|
3742
|
+
}, {
|
|
3743
|
+
label: string;
|
|
3744
|
+
key: string;
|
|
3745
|
+
choices: {
|
|
3746
|
+
value: string;
|
|
3747
|
+
label: string;
|
|
3748
|
+
}[];
|
|
3749
|
+
description?: string | undefined;
|
|
3750
|
+
}];
|
|
3751
|
+
uniqueByField?: string | undefined;
|
|
3326
3752
|
} | {
|
|
3327
3753
|
type: "range";
|
|
3328
3754
|
param: string;
|
|
@@ -3409,6 +3835,29 @@ declare const Gemini2_5ProPreview0325Schema: {
|
|
|
3409
3835
|
title: string;
|
|
3410
3836
|
description: string;
|
|
3411
3837
|
objectSchema?: any;
|
|
3838
|
+
} | {
|
|
3839
|
+
type: "paired-select";
|
|
3840
|
+
param: string;
|
|
3841
|
+
title: string;
|
|
3842
|
+
description: string;
|
|
3843
|
+
fields: [{
|
|
3844
|
+
label: string;
|
|
3845
|
+
key: string;
|
|
3846
|
+
choices: {
|
|
3847
|
+
value: string;
|
|
3848
|
+
label: string;
|
|
3849
|
+
}[];
|
|
3850
|
+
description?: string | undefined;
|
|
3851
|
+
}, {
|
|
3852
|
+
label: string;
|
|
3853
|
+
key: string;
|
|
3854
|
+
choices: {
|
|
3855
|
+
value: string;
|
|
3856
|
+
label: string;
|
|
3857
|
+
}[];
|
|
3858
|
+
description?: string | undefined;
|
|
3859
|
+
}];
|
|
3860
|
+
uniqueByField?: string | undefined;
|
|
3412
3861
|
} | {
|
|
3413
3862
|
type: "range";
|
|
3414
3863
|
param: string;
|
|
@@ -3495,6 +3944,29 @@ declare const Gemini2_5ProSchema: {
|
|
|
3495
3944
|
title: string;
|
|
3496
3945
|
description: string;
|
|
3497
3946
|
objectSchema?: any;
|
|
3947
|
+
} | {
|
|
3948
|
+
type: "paired-select";
|
|
3949
|
+
param: string;
|
|
3950
|
+
title: string;
|
|
3951
|
+
description: string;
|
|
3952
|
+
fields: [{
|
|
3953
|
+
label: string;
|
|
3954
|
+
key: string;
|
|
3955
|
+
choices: {
|
|
3956
|
+
value: string;
|
|
3957
|
+
label: string;
|
|
3958
|
+
}[];
|
|
3959
|
+
description?: string | undefined;
|
|
3960
|
+
}, {
|
|
3961
|
+
label: string;
|
|
3962
|
+
key: string;
|
|
3963
|
+
choices: {
|
|
3964
|
+
value: string;
|
|
3965
|
+
label: string;
|
|
3966
|
+
}[];
|
|
3967
|
+
description?: string | undefined;
|
|
3968
|
+
}];
|
|
3969
|
+
uniqueByField?: string | undefined;
|
|
3498
3970
|
} | {
|
|
3499
3971
|
type: "range";
|
|
3500
3972
|
param: string;
|
|
@@ -3581,6 +4053,29 @@ declare const Gemini3ProPreviewSchema: {
|
|
|
3581
4053
|
title: string;
|
|
3582
4054
|
description: string;
|
|
3583
4055
|
objectSchema?: any;
|
|
4056
|
+
} | {
|
|
4057
|
+
type: "paired-select";
|
|
4058
|
+
param: string;
|
|
4059
|
+
title: string;
|
|
4060
|
+
description: string;
|
|
4061
|
+
fields: [{
|
|
4062
|
+
label: string;
|
|
4063
|
+
key: string;
|
|
4064
|
+
choices: {
|
|
4065
|
+
value: string;
|
|
4066
|
+
label: string;
|
|
4067
|
+
}[];
|
|
4068
|
+
description?: string | undefined;
|
|
4069
|
+
}, {
|
|
4070
|
+
label: string;
|
|
4071
|
+
key: string;
|
|
4072
|
+
choices: {
|
|
4073
|
+
value: string;
|
|
4074
|
+
label: string;
|
|
4075
|
+
}[];
|
|
4076
|
+
description?: string | undefined;
|
|
4077
|
+
}];
|
|
4078
|
+
uniqueByField?: string | undefined;
|
|
3584
4079
|
} | {
|
|
3585
4080
|
type: "range";
|
|
3586
4081
|
param: string;
|
|
@@ -3831,6 +4326,29 @@ declare const Text_Embedding_001Schema: {
|
|
|
3831
4326
|
title: string;
|
|
3832
4327
|
description: string;
|
|
3833
4328
|
objectSchema?: any;
|
|
4329
|
+
} | {
|
|
4330
|
+
type: "paired-select";
|
|
4331
|
+
param: string;
|
|
4332
|
+
title: string;
|
|
4333
|
+
description: string;
|
|
4334
|
+
fields: [{
|
|
4335
|
+
label: string;
|
|
4336
|
+
key: string;
|
|
4337
|
+
choices: {
|
|
4338
|
+
value: string;
|
|
4339
|
+
label: string;
|
|
4340
|
+
}[];
|
|
4341
|
+
description?: string | undefined;
|
|
4342
|
+
}, {
|
|
4343
|
+
label: string;
|
|
4344
|
+
key: string;
|
|
4345
|
+
choices: {
|
|
4346
|
+
value: string;
|
|
4347
|
+
label: string;
|
|
4348
|
+
}[];
|
|
4349
|
+
description?: string | undefined;
|
|
4350
|
+
}];
|
|
4351
|
+
uniqueByField?: string | undefined;
|
|
3834
4352
|
} | {
|
|
3835
4353
|
type: "range";
|
|
3836
4354
|
param: string;
|
|
@@ -3898,6 +4416,29 @@ declare const Text_Embedding_004Schema: {
|
|
|
3898
4416
|
title: string;
|
|
3899
4417
|
description: string;
|
|
3900
4418
|
objectSchema?: any;
|
|
4419
|
+
} | {
|
|
4420
|
+
type: "paired-select";
|
|
4421
|
+
param: string;
|
|
4422
|
+
title: string;
|
|
4423
|
+
description: string;
|
|
4424
|
+
fields: [{
|
|
4425
|
+
label: string;
|
|
4426
|
+
key: string;
|
|
4427
|
+
choices: {
|
|
4428
|
+
value: string;
|
|
4429
|
+
label: string;
|
|
4430
|
+
}[];
|
|
4431
|
+
description?: string | undefined;
|
|
4432
|
+
}, {
|
|
4433
|
+
label: string;
|
|
4434
|
+
key: string;
|
|
4435
|
+
choices: {
|
|
4436
|
+
value: string;
|
|
4437
|
+
label: string;
|
|
4438
|
+
}[];
|
|
4439
|
+
description?: string | undefined;
|
|
4440
|
+
}];
|
|
4441
|
+
uniqueByField?: string | undefined;
|
|
3901
4442
|
} | {
|
|
3902
4443
|
type: "range";
|
|
3903
4444
|
param: string;
|
|
@@ -3960,4 +4501,4 @@ declare class Google<C extends BaseChatModelOptionsType, E extends BaseEmbedding
|
|
|
3960
4501
|
embeddingModel(options: E): EmbeddingModelV1;
|
|
3961
4502
|
}
|
|
3962
4503
|
|
|
3963
|
-
export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, GOOGLE_SAFETY_CATEGORIES, GOOGLE_SAFETY_THRESHOLDS, Gemini1_5Flash, Gemini1_5Flash001, Gemini1_5Flash001Literal, Gemini1_5Flash001Options, type Gemini1_5Flash001OptionsType, Gemini1_5Flash001Schema, Gemini1_5Flash002, Gemini1_5Flash002Literal, Gemini1_5Flash002Options, type Gemini1_5Flash002OptionsType, Gemini1_5Flash002Schema, Gemini1_5FlashLatest, Gemini1_5FlashLatestLiteral, Gemini1_5FlashLatestOptions, type Gemini1_5FlashLatestOptionsType, Gemini1_5FlashLatestSchema, Gemini1_5FlashLiteral, Gemini1_5FlashOptions, type Gemini1_5FlashOptionsType, Gemini1_5FlashSchema, Gemini1_5Pro, Gemini1_5Pro001, Gemini1_5Pro001Literal, Gemini1_5Pro001Options, type Gemini1_5Pro001OptionsType, Gemini1_5Pro001Schema, Gemini1_5Pro002, Gemini1_5Pro002Literal, Gemini1_5Pro002Options, type Gemini1_5Pro002OptionsType, Gemini1_5Pro002Schema, Gemini1_5ProLatest, Gemini1_5ProLatestLiteral, Gemini1_5ProLatestOptions, type Gemini1_5ProLatestOptionsType, Gemini1_5ProLatestSchema, Gemini1_5ProLiteral, Gemini1_5ProOptions, type Gemini1_5ProOptionsType, Gemini1_5ProSchema, Gemini2_0Flash, Gemini2_0FlashExp, Gemini2_0FlashExpLiteral, Gemini2_0FlashExpOptions, type Gemini2_0FlashExpOptionsType, Gemini2_0FlashExpSchema, Gemini2_0FlashLiteral, Gemini2_0FlashOptions, type Gemini2_0FlashOptionsType, Gemini2_0FlashSchema, Gemini2_5Flash, Gemini2_5FlashLite, Gemini2_5FlashLiteLiteral, Gemini2_5FlashLiteOptions, type Gemini2_5FlashLiteOptionsType, Gemini2_5FlashLiteSchema, Gemini2_5FlashLiteral, Gemini2_5FlashOptions, type Gemini2_5FlashOptionsType, Gemini2_5FlashPreview0417, Gemini2_5FlashPreview0417Literal, Gemini2_5FlashPreview0417Options, type Gemini2_5FlashPreview0417OptionsType, Gemini2_5FlashPreview0417Schema, Gemini2_5FlashSchema, Gemini2_5Pro, Gemini2_5ProLiteral, Gemini2_5ProOptions, type Gemini2_5ProOptionsType, Gemini2_5ProPreview0325, Gemini2_5ProPreview0325Literal, Gemini2_5ProPreview0325Options, type Gemini2_5ProPreview0325OptionsType, Gemini2_5ProPreview0325Schema, Gemini2_5ProSchema, Gemini3ProPreview, Gemini3ProPreviewLiteral, Gemini3ProPreviewOptions, type Gemini3ProPreviewOptionsType, Gemini3ProPreviewSchema, Google, GoogleChatAssistantRoleLiteral, GoogleChatContent, GoogleChatContentPartFileData, type GoogleChatContentPartFileDataType, GoogleChatContentPartFunctionCall, type GoogleChatContentPartFunctionCallType, GoogleChatContentPartFunctionResponse, type GoogleChatContentPartFunctionResponseType, GoogleChatContentPartInlineData, type GoogleChatContentPartInlineDataType, GoogleChatContentPartText, type GoogleChatContentPartTextType, type GoogleChatContentType, GoogleChatGenerationConfig, type GoogleChatGenerationConfigType, GoogleChatModelConfigs, GoogleChatModelModalities, GoogleChatModelModalitiesEnum, GoogleChatModelResponseSchemaConfigDef, GoogleChatModelResponseSchemaConfigSchema, GoogleChatModelRoles, GoogleChatModelRolesMap, GoogleChatModelTextModalities, GoogleChatModelTextModalitiesEnum, GoogleChatModelTextToolModalities, GoogleChatModelTextToolModalitiesEnum, GoogleChatModelTextVisionModalities, GoogleChatModelTextVisionModalitiesEnum, GoogleChatRequest, type GoogleChatRequestType, GoogleChatSafetySettings, type GoogleChatSafetySettingsType, GoogleChatSystemInstruction, type GoogleChatSystemInstructionType, GoogleChatTool, GoogleChatToolConfig, type GoogleChatToolConfigType, GoogleChatToolRoleLiteral, type GoogleChatToolType, GoogleCompleteChatResponse, type GoogleCompleteChatResponseType, GoogleCompleteChatTextResponse, GoogleCompleteChatToolResponse, GoogleEmbeddingModelConfigs, GoogleEmbeddingModelModalities, GoogleEmbeddingModelModalitiesEnum, GoogleEmbeddingRequest, GoogleEmbeddingRequestInput, type GoogleEmbeddingRequestInputType, type GoogleEmbeddingRequestType, GoogleGetEmbeddingsResponse, type GoogleGetEmbeddingsResponseType, GoogleStreamChatResponse, type GoogleStreamChatResponseType, GoogleStreamChatTextResponse, GoogleStreamChatToolResponse, ProviderLiteral, Text_Embedding_001, Text_Embedding_001Literal, Text_Embedding_001Options, type Text_Embedding_001OptionsType, Text_Embedding_001Schema, Text_Embedding_004, Text_Embedding_004Literal, Text_Embedding_004Options, type Text_Embedding_004OptionsType, Text_Embedding_004Schema, dimensions, frequencyPenalty, maxTokens, presencePenalty, reasoningEnabled, safetySettings, seed, stop, temperature, toolChoice, topK, topP };
|
|
4504
|
+
export { BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, GOOGLE_SAFETY_CATEGORIES, GOOGLE_SAFETY_CATEGORY_OPTIONS, GOOGLE_SAFETY_THRESHOLDS, GOOGLE_SAFETY_THRESHOLD_OPTIONS, Gemini1_5Flash, Gemini1_5Flash001, Gemini1_5Flash001Literal, Gemini1_5Flash001Options, type Gemini1_5Flash001OptionsType, Gemini1_5Flash001Schema, Gemini1_5Flash002, Gemini1_5Flash002Literal, Gemini1_5Flash002Options, type Gemini1_5Flash002OptionsType, Gemini1_5Flash002Schema, Gemini1_5FlashLatest, Gemini1_5FlashLatestLiteral, Gemini1_5FlashLatestOptions, type Gemini1_5FlashLatestOptionsType, Gemini1_5FlashLatestSchema, Gemini1_5FlashLiteral, Gemini1_5FlashOptions, type Gemini1_5FlashOptionsType, Gemini1_5FlashSchema, Gemini1_5Pro, Gemini1_5Pro001, Gemini1_5Pro001Literal, Gemini1_5Pro001Options, type Gemini1_5Pro001OptionsType, Gemini1_5Pro001Schema, Gemini1_5Pro002, Gemini1_5Pro002Literal, Gemini1_5Pro002Options, type Gemini1_5Pro002OptionsType, Gemini1_5Pro002Schema, Gemini1_5ProLatest, Gemini1_5ProLatestLiteral, Gemini1_5ProLatestOptions, type Gemini1_5ProLatestOptionsType, Gemini1_5ProLatestSchema, Gemini1_5ProLiteral, Gemini1_5ProOptions, type Gemini1_5ProOptionsType, Gemini1_5ProSchema, Gemini2_0Flash, Gemini2_0FlashExp, Gemini2_0FlashExpLiteral, Gemini2_0FlashExpOptions, type Gemini2_0FlashExpOptionsType, Gemini2_0FlashExpSchema, Gemini2_0FlashLiteral, Gemini2_0FlashOptions, type Gemini2_0FlashOptionsType, Gemini2_0FlashSchema, Gemini2_5Flash, Gemini2_5FlashLite, Gemini2_5FlashLiteLiteral, Gemini2_5FlashLiteOptions, type Gemini2_5FlashLiteOptionsType, Gemini2_5FlashLiteSchema, Gemini2_5FlashLiteral, Gemini2_5FlashOptions, type Gemini2_5FlashOptionsType, Gemini2_5FlashPreview0417, Gemini2_5FlashPreview0417Literal, Gemini2_5FlashPreview0417Options, type Gemini2_5FlashPreview0417OptionsType, Gemini2_5FlashPreview0417Schema, Gemini2_5FlashSchema, Gemini2_5Pro, Gemini2_5ProLiteral, Gemini2_5ProOptions, type Gemini2_5ProOptionsType, Gemini2_5ProPreview0325, Gemini2_5ProPreview0325Literal, Gemini2_5ProPreview0325Options, type Gemini2_5ProPreview0325OptionsType, Gemini2_5ProPreview0325Schema, Gemini2_5ProSchema, Gemini3ProPreview, Gemini3ProPreviewLiteral, Gemini3ProPreviewOptions, type Gemini3ProPreviewOptionsType, Gemini3ProPreviewSchema, Google, GoogleChatAssistantRoleLiteral, GoogleChatContent, GoogleChatContentPartFileData, type GoogleChatContentPartFileDataType, GoogleChatContentPartFunctionCall, type GoogleChatContentPartFunctionCallType, GoogleChatContentPartFunctionResponse, type GoogleChatContentPartFunctionResponseType, GoogleChatContentPartInlineData, type GoogleChatContentPartInlineDataType, GoogleChatContentPartText, type GoogleChatContentPartTextType, type GoogleChatContentType, GoogleChatGenerationConfig, type GoogleChatGenerationConfigType, GoogleChatModelConfigs, GoogleChatModelModalities, GoogleChatModelModalitiesEnum, GoogleChatModelResponseSchemaConfigDef, GoogleChatModelResponseSchemaConfigSchema, GoogleChatModelRoles, GoogleChatModelRolesMap, GoogleChatModelTextModalities, GoogleChatModelTextModalitiesEnum, GoogleChatModelTextToolModalities, GoogleChatModelTextToolModalitiesEnum, GoogleChatModelTextVisionModalities, GoogleChatModelTextVisionModalitiesEnum, GoogleChatRequest, type GoogleChatRequestType, GoogleChatSafetySettings, type GoogleChatSafetySettingsType, GoogleChatSystemInstruction, type GoogleChatSystemInstructionType, GoogleChatTool, GoogleChatToolConfig, type GoogleChatToolConfigType, GoogleChatToolRoleLiteral, type GoogleChatToolType, GoogleCompleteChatResponse, type GoogleCompleteChatResponseType, GoogleCompleteChatTextResponse, GoogleCompleteChatToolResponse, GoogleEmbeddingModelConfigs, GoogleEmbeddingModelModalities, GoogleEmbeddingModelModalitiesEnum, GoogleEmbeddingRequest, GoogleEmbeddingRequestInput, type GoogleEmbeddingRequestInputType, type GoogleEmbeddingRequestType, GoogleGetEmbeddingsResponse, type GoogleGetEmbeddingsResponseType, GoogleStreamChatResponse, type GoogleStreamChatResponseType, GoogleStreamChatTextResponse, GoogleStreamChatToolResponse, ProviderLiteral, Text_Embedding_001, Text_Embedding_001Literal, Text_Embedding_001Options, type Text_Embedding_001OptionsType, Text_Embedding_001Schema, Text_Embedding_004, Text_Embedding_004Literal, Text_Embedding_004Options, type Text_Embedding_004OptionsType, Text_Embedding_004Schema, dimensions, frequencyPenalty, maxTokens, presencePenalty, reasoningEnabled, safetySettings, seed, stop, temperature, toolChoice, topK, topP };
|