@convex-dev/agent 0.1.5-alpha.2 → 0.1.5-alpha.3
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/commonjs/client/index.d.ts +8 -0
- package/dist/commonjs/client/index.d.ts.map +1 -1
- package/dist/commonjs/component/messages.d.ts +24 -0
- package/dist/commonjs/component/messages.d.ts.map +1 -1
- package/dist/commonjs/component/schema.d.ts +119 -15
- package/dist/commonjs/component/schema.d.ts.map +1 -1
- package/dist/commonjs/validators.d.ts +222 -34
- package/dist/commonjs/validators.d.ts.map +1 -1
- package/dist/commonjs/validators.js +1 -0
- package/dist/commonjs/validators.js.map +1 -1
- package/dist/commonjs.tsbuildinfo +1 -1
- package/dist/esm/client/index.d.ts +8 -0
- package/dist/esm/client/index.d.ts.map +1 -1
- package/dist/esm/component/messages.d.ts +24 -0
- package/dist/esm/component/messages.d.ts.map +1 -1
- package/dist/esm/component/schema.d.ts +119 -15
- package/dist/esm/component/schema.d.ts.map +1 -1
- package/dist/esm/validators.d.ts +222 -34
- package/dist/esm/validators.d.ts.map +1 -1
- package/dist/esm/validators.js +1 -0
- package/dist/esm/validators.js.map +1 -1
- package/dist/esm.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/validators.ts +1 -0
|
@@ -31,15 +31,17 @@ export declare const vImagePart: import("convex/values").VObject<{
|
|
|
31
31
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">;
|
|
32
32
|
export declare const vFilePart: import("convex/values").VObject<{
|
|
33
33
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
34
|
+
filename?: string | undefined;
|
|
34
35
|
type: "file";
|
|
35
36
|
mimeType: string;
|
|
36
37
|
data: string | ArrayBuffer;
|
|
37
38
|
}, {
|
|
38
39
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
39
40
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
41
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
40
42
|
mimeType: import("convex/values").VString<string, "required">;
|
|
41
43
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
42
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">;
|
|
44
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">;
|
|
43
45
|
export declare const vFile: import("convex/values").VObject<{
|
|
44
46
|
data?: string | ArrayBuffer | undefined;
|
|
45
47
|
url?: string | undefined;
|
|
@@ -73,6 +75,7 @@ export declare const vUserContent: import("convex/values").VUnion<string | ({
|
|
|
73
75
|
image: string | ArrayBuffer;
|
|
74
76
|
} | {
|
|
75
77
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
78
|
+
filename?: string | undefined;
|
|
76
79
|
type: "file";
|
|
77
80
|
mimeType: string;
|
|
78
81
|
data: string | ArrayBuffer;
|
|
@@ -87,6 +90,7 @@ export declare const vUserContent: import("convex/values").VUnion<string | ({
|
|
|
87
90
|
image: string | ArrayBuffer;
|
|
88
91
|
} | {
|
|
89
92
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
93
|
+
filename?: string | undefined;
|
|
90
94
|
type: "file";
|
|
91
95
|
mimeType: string;
|
|
92
96
|
data: string | ArrayBuffer;
|
|
@@ -101,6 +105,7 @@ export declare const vUserContent: import("convex/values").VUnion<string | ({
|
|
|
101
105
|
image: string | ArrayBuffer;
|
|
102
106
|
} | {
|
|
103
107
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
108
|
+
filename?: string | undefined;
|
|
104
109
|
type: "file";
|
|
105
110
|
mimeType: string;
|
|
106
111
|
data: string | ArrayBuffer;
|
|
@@ -124,15 +129,17 @@ export declare const vUserContent: import("convex/values").VUnion<string | ({
|
|
|
124
129
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
125
130
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
126
131
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
132
|
+
filename?: string | undefined;
|
|
127
133
|
type: "file";
|
|
128
134
|
mimeType: string;
|
|
129
135
|
data: string | ArrayBuffer;
|
|
130
136
|
}, {
|
|
131
137
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
132
138
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
139
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
133
140
|
mimeType: import("convex/values").VString<string, "required">;
|
|
134
141
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
135
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
142
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
136
143
|
export declare const vReasoningPart: import("convex/values").VObject<{
|
|
137
144
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
138
145
|
signature?: string | undefined;
|
|
@@ -201,6 +208,7 @@ export declare const vAssistantContent: import("convex/values").VUnion<string |
|
|
|
201
208
|
text: string;
|
|
202
209
|
} | {
|
|
203
210
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
211
|
+
filename?: string | undefined;
|
|
204
212
|
type: "file";
|
|
205
213
|
mimeType: string;
|
|
206
214
|
data: string | ArrayBuffer;
|
|
@@ -225,6 +233,7 @@ export declare const vAssistantContent: import("convex/values").VUnion<string |
|
|
|
225
233
|
text: string;
|
|
226
234
|
} | {
|
|
227
235
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
236
|
+
filename?: string | undefined;
|
|
228
237
|
type: "file";
|
|
229
238
|
mimeType: string;
|
|
230
239
|
data: string | ArrayBuffer;
|
|
@@ -249,6 +258,7 @@ export declare const vAssistantContent: import("convex/values").VUnion<string |
|
|
|
249
258
|
text: string;
|
|
250
259
|
} | {
|
|
251
260
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
261
|
+
filename?: string | undefined;
|
|
252
262
|
type: "file";
|
|
253
263
|
mimeType: string;
|
|
254
264
|
data: string | ArrayBuffer;
|
|
@@ -277,15 +287,17 @@ export declare const vAssistantContent: import("convex/values").VUnion<string |
|
|
|
277
287
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
278
288
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
279
289
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
290
|
+
filename?: string | undefined;
|
|
280
291
|
type: "file";
|
|
281
292
|
mimeType: string;
|
|
282
293
|
data: string | ArrayBuffer;
|
|
283
294
|
}, {
|
|
284
295
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
285
296
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
297
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
286
298
|
mimeType: import("convex/values").VString<string, "required">;
|
|
287
299
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
288
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
300
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
289
301
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
290
302
|
signature?: string | undefined;
|
|
291
303
|
type: "reasoning";
|
|
@@ -315,7 +327,7 @@ export declare const vAssistantContent: import("convex/values").VUnion<string |
|
|
|
315
327
|
toolName: import("convex/values").VString<string, "required">;
|
|
316
328
|
args: import("convex/values").VAny<any, "required", string>;
|
|
317
329
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
318
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
330
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
319
331
|
export declare const vToolContent: import("convex/values").VArray<{
|
|
320
332
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
321
333
|
args?: any;
|
|
@@ -397,6 +409,7 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
397
409
|
image: string | ArrayBuffer;
|
|
398
410
|
} | {
|
|
399
411
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
412
|
+
filename?: string | undefined;
|
|
400
413
|
type: "file";
|
|
401
414
|
mimeType: string;
|
|
402
415
|
data: string | ArrayBuffer;
|
|
@@ -406,6 +419,7 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
406
419
|
text: string;
|
|
407
420
|
} | {
|
|
408
421
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
422
|
+
filename?: string | undefined;
|
|
409
423
|
type: "file";
|
|
410
424
|
mimeType: string;
|
|
411
425
|
data: string | ArrayBuffer;
|
|
@@ -451,6 +465,7 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
451
465
|
image: string | ArrayBuffer;
|
|
452
466
|
} | {
|
|
453
467
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
468
|
+
filename?: string | undefined;
|
|
454
469
|
type: "file";
|
|
455
470
|
mimeType: string;
|
|
456
471
|
data: string | ArrayBuffer;
|
|
@@ -465,6 +480,7 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
465
480
|
image: string | ArrayBuffer;
|
|
466
481
|
} | {
|
|
467
482
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
483
|
+
filename?: string | undefined;
|
|
468
484
|
type: "file";
|
|
469
485
|
mimeType: string;
|
|
470
486
|
data: string | ArrayBuffer;
|
|
@@ -479,6 +495,7 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
479
495
|
image: string | ArrayBuffer;
|
|
480
496
|
} | {
|
|
481
497
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
498
|
+
filename?: string | undefined;
|
|
482
499
|
type: "file";
|
|
483
500
|
mimeType: string;
|
|
484
501
|
data: string | ArrayBuffer;
|
|
@@ -502,20 +519,23 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
502
519
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
503
520
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
504
521
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
522
|
+
filename?: string | undefined;
|
|
505
523
|
type: "file";
|
|
506
524
|
mimeType: string;
|
|
507
525
|
data: string | ArrayBuffer;
|
|
508
526
|
}, {
|
|
509
527
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
510
528
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
529
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
511
530
|
mimeType: import("convex/values").VString<string, "required">;
|
|
512
531
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
513
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>, import("convex/values").VUnion<string | ({
|
|
532
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>, import("convex/values").VUnion<string | ({
|
|
514
533
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
515
534
|
type: "text";
|
|
516
535
|
text: string;
|
|
517
536
|
} | {
|
|
518
537
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
538
|
+
filename?: string | undefined;
|
|
519
539
|
type: "file";
|
|
520
540
|
mimeType: string;
|
|
521
541
|
data: string | ArrayBuffer;
|
|
@@ -540,6 +560,7 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
540
560
|
text: string;
|
|
541
561
|
} | {
|
|
542
562
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
563
|
+
filename?: string | undefined;
|
|
543
564
|
type: "file";
|
|
544
565
|
mimeType: string;
|
|
545
566
|
data: string | ArrayBuffer;
|
|
@@ -564,6 +585,7 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
564
585
|
text: string;
|
|
565
586
|
} | {
|
|
566
587
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
588
|
+
filename?: string | undefined;
|
|
567
589
|
type: "file";
|
|
568
590
|
mimeType: string;
|
|
569
591
|
data: string | ArrayBuffer;
|
|
@@ -592,15 +614,17 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
592
614
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
593
615
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
594
616
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
617
|
+
filename?: string | undefined;
|
|
595
618
|
type: "file";
|
|
596
619
|
mimeType: string;
|
|
597
620
|
data: string | ArrayBuffer;
|
|
598
621
|
}, {
|
|
599
622
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
600
623
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
624
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
601
625
|
mimeType: import("convex/values").VString<string, "required">;
|
|
602
626
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
603
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
627
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
604
628
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
605
629
|
signature?: string | undefined;
|
|
606
630
|
type: "reasoning";
|
|
@@ -630,7 +654,7 @@ export declare const vContent: import("convex/values").VUnion<string | ({
|
|
|
630
654
|
toolName: import("convex/values").VString<string, "required">;
|
|
631
655
|
args: import("convex/values").VAny<any, "required", string>;
|
|
632
656
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
633
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>, import("convex/values").VArray<{
|
|
657
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>, import("convex/values").VArray<{
|
|
634
658
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
635
659
|
args?: any;
|
|
636
660
|
experimental_content?: ({
|
|
@@ -715,6 +739,7 @@ export declare const vUserMessage: import("convex/values").VObject<{
|
|
|
715
739
|
image: string | ArrayBuffer;
|
|
716
740
|
} | {
|
|
717
741
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
742
|
+
filename?: string | undefined;
|
|
718
743
|
type: "file";
|
|
719
744
|
mimeType: string;
|
|
720
745
|
data: string | ArrayBuffer;
|
|
@@ -732,6 +757,7 @@ export declare const vUserMessage: import("convex/values").VObject<{
|
|
|
732
757
|
image: string | ArrayBuffer;
|
|
733
758
|
} | {
|
|
734
759
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
760
|
+
filename?: string | undefined;
|
|
735
761
|
type: "file";
|
|
736
762
|
mimeType: string;
|
|
737
763
|
data: string | ArrayBuffer;
|
|
@@ -746,6 +772,7 @@ export declare const vUserMessage: import("convex/values").VObject<{
|
|
|
746
772
|
image: string | ArrayBuffer;
|
|
747
773
|
} | {
|
|
748
774
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
775
|
+
filename?: string | undefined;
|
|
749
776
|
type: "file";
|
|
750
777
|
mimeType: string;
|
|
751
778
|
data: string | ArrayBuffer;
|
|
@@ -760,6 +787,7 @@ export declare const vUserMessage: import("convex/values").VObject<{
|
|
|
760
787
|
image: string | ArrayBuffer;
|
|
761
788
|
} | {
|
|
762
789
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
790
|
+
filename?: string | undefined;
|
|
763
791
|
type: "file";
|
|
764
792
|
mimeType: string;
|
|
765
793
|
data: string | ArrayBuffer;
|
|
@@ -783,15 +811,17 @@ export declare const vUserMessage: import("convex/values").VObject<{
|
|
|
783
811
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
784
812
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
785
813
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
814
|
+
filename?: string | undefined;
|
|
786
815
|
type: "file";
|
|
787
816
|
mimeType: string;
|
|
788
817
|
data: string | ArrayBuffer;
|
|
789
818
|
}, {
|
|
790
819
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
791
820
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
821
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
792
822
|
mimeType: import("convex/values").VString<string, "required">;
|
|
793
823
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
794
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
824
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
795
825
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
796
826
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">;
|
|
797
827
|
export declare const vAssistantMessage: import("convex/values").VObject<{
|
|
@@ -803,6 +833,7 @@ export declare const vAssistantMessage: import("convex/values").VObject<{
|
|
|
803
833
|
text: string;
|
|
804
834
|
} | {
|
|
805
835
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
836
|
+
filename?: string | undefined;
|
|
806
837
|
type: "file";
|
|
807
838
|
mimeType: string;
|
|
808
839
|
data: string | ArrayBuffer;
|
|
@@ -830,6 +861,7 @@ export declare const vAssistantMessage: import("convex/values").VObject<{
|
|
|
830
861
|
text: string;
|
|
831
862
|
} | {
|
|
832
863
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
864
|
+
filename?: string | undefined;
|
|
833
865
|
type: "file";
|
|
834
866
|
mimeType: string;
|
|
835
867
|
data: string | ArrayBuffer;
|
|
@@ -854,6 +886,7 @@ export declare const vAssistantMessage: import("convex/values").VObject<{
|
|
|
854
886
|
text: string;
|
|
855
887
|
} | {
|
|
856
888
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
889
|
+
filename?: string | undefined;
|
|
857
890
|
type: "file";
|
|
858
891
|
mimeType: string;
|
|
859
892
|
data: string | ArrayBuffer;
|
|
@@ -878,6 +911,7 @@ export declare const vAssistantMessage: import("convex/values").VObject<{
|
|
|
878
911
|
text: string;
|
|
879
912
|
} | {
|
|
880
913
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
914
|
+
filename?: string | undefined;
|
|
881
915
|
type: "file";
|
|
882
916
|
mimeType: string;
|
|
883
917
|
data: string | ArrayBuffer;
|
|
@@ -906,15 +940,17 @@ export declare const vAssistantMessage: import("convex/values").VObject<{
|
|
|
906
940
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
907
941
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
908
942
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
943
|
+
filename?: string | undefined;
|
|
909
944
|
type: "file";
|
|
910
945
|
mimeType: string;
|
|
911
946
|
data: string | ArrayBuffer;
|
|
912
947
|
}, {
|
|
913
948
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
914
949
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
950
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
915
951
|
mimeType: import("convex/values").VString<string, "required">;
|
|
916
952
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
917
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
953
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
918
954
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
919
955
|
signature?: string | undefined;
|
|
920
956
|
type: "reasoning";
|
|
@@ -944,7 +980,7 @@ export declare const vAssistantMessage: import("convex/values").VObject<{
|
|
|
944
980
|
toolName: import("convex/values").VString<string, "required">;
|
|
945
981
|
args: import("convex/values").VAny<any, "required", string>;
|
|
946
982
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
947
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
983
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
948
984
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
949
985
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">;
|
|
950
986
|
export declare const vToolMessage: import("convex/values").VObject<{
|
|
@@ -1064,6 +1100,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1064
1100
|
image: string | ArrayBuffer;
|
|
1065
1101
|
} | {
|
|
1066
1102
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1103
|
+
filename?: string | undefined;
|
|
1067
1104
|
type: "file";
|
|
1068
1105
|
mimeType: string;
|
|
1069
1106
|
data: string | ArrayBuffer;
|
|
@@ -1077,6 +1114,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1077
1114
|
text: string;
|
|
1078
1115
|
} | {
|
|
1079
1116
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1117
|
+
filename?: string | undefined;
|
|
1080
1118
|
type: "file";
|
|
1081
1119
|
mimeType: string;
|
|
1082
1120
|
data: string | ArrayBuffer;
|
|
@@ -1134,6 +1172,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1134
1172
|
image: string | ArrayBuffer;
|
|
1135
1173
|
} | {
|
|
1136
1174
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1175
|
+
filename?: string | undefined;
|
|
1137
1176
|
type: "file";
|
|
1138
1177
|
mimeType: string;
|
|
1139
1178
|
data: string | ArrayBuffer;
|
|
@@ -1151,6 +1190,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1151
1190
|
image: string | ArrayBuffer;
|
|
1152
1191
|
} | {
|
|
1153
1192
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1193
|
+
filename?: string | undefined;
|
|
1154
1194
|
type: "file";
|
|
1155
1195
|
mimeType: string;
|
|
1156
1196
|
data: string | ArrayBuffer;
|
|
@@ -1165,6 +1205,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1165
1205
|
image: string | ArrayBuffer;
|
|
1166
1206
|
} | {
|
|
1167
1207
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1208
|
+
filename?: string | undefined;
|
|
1168
1209
|
type: "file";
|
|
1169
1210
|
mimeType: string;
|
|
1170
1211
|
data: string | ArrayBuffer;
|
|
@@ -1179,6 +1220,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1179
1220
|
image: string | ArrayBuffer;
|
|
1180
1221
|
} | {
|
|
1181
1222
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1223
|
+
filename?: string | undefined;
|
|
1182
1224
|
type: "file";
|
|
1183
1225
|
mimeType: string;
|
|
1184
1226
|
data: string | ArrayBuffer;
|
|
@@ -1202,15 +1244,17 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1202
1244
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1203
1245
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
1204
1246
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1247
|
+
filename?: string | undefined;
|
|
1205
1248
|
type: "file";
|
|
1206
1249
|
mimeType: string;
|
|
1207
1250
|
data: string | ArrayBuffer;
|
|
1208
1251
|
}, {
|
|
1209
1252
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
1210
1253
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
1254
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
1211
1255
|
mimeType: import("convex/values").VString<string, "required">;
|
|
1212
1256
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1213
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
1257
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
1214
1258
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1215
1259
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
1216
1260
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -1221,6 +1265,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1221
1265
|
text: string;
|
|
1222
1266
|
} | {
|
|
1223
1267
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1268
|
+
filename?: string | undefined;
|
|
1224
1269
|
type: "file";
|
|
1225
1270
|
mimeType: string;
|
|
1226
1271
|
data: string | ArrayBuffer;
|
|
@@ -1248,6 +1293,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1248
1293
|
text: string;
|
|
1249
1294
|
} | {
|
|
1250
1295
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1296
|
+
filename?: string | undefined;
|
|
1251
1297
|
type: "file";
|
|
1252
1298
|
mimeType: string;
|
|
1253
1299
|
data: string | ArrayBuffer;
|
|
@@ -1272,6 +1318,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1272
1318
|
text: string;
|
|
1273
1319
|
} | {
|
|
1274
1320
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1321
|
+
filename?: string | undefined;
|
|
1275
1322
|
type: "file";
|
|
1276
1323
|
mimeType: string;
|
|
1277
1324
|
data: string | ArrayBuffer;
|
|
@@ -1296,6 +1343,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1296
1343
|
text: string;
|
|
1297
1344
|
} | {
|
|
1298
1345
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1346
|
+
filename?: string | undefined;
|
|
1299
1347
|
type: "file";
|
|
1300
1348
|
mimeType: string;
|
|
1301
1349
|
data: string | ArrayBuffer;
|
|
@@ -1324,15 +1372,17 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1324
1372
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1325
1373
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
1326
1374
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1375
|
+
filename?: string | undefined;
|
|
1327
1376
|
type: "file";
|
|
1328
1377
|
mimeType: string;
|
|
1329
1378
|
data: string | ArrayBuffer;
|
|
1330
1379
|
}, {
|
|
1331
1380
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
1332
1381
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
1382
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
1333
1383
|
mimeType: import("convex/values").VString<string, "required">;
|
|
1334
1384
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1335
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
1385
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
1336
1386
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1337
1387
|
signature?: string | undefined;
|
|
1338
1388
|
type: "reasoning";
|
|
@@ -1362,7 +1412,7 @@ export declare const vMessage: import("convex/values").VUnion<{
|
|
|
1362
1412
|
toolName: import("convex/values").VString<string, "required">;
|
|
1363
1413
|
args: import("convex/values").VAny<any, "required", string>;
|
|
1364
1414
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1365
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
1415
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
1366
1416
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1367
1417
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
1368
1418
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -1512,6 +1562,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1512
1562
|
image: string | ArrayBuffer;
|
|
1513
1563
|
} | {
|
|
1514
1564
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1565
|
+
filename?: string | undefined;
|
|
1515
1566
|
type: "file";
|
|
1516
1567
|
mimeType: string;
|
|
1517
1568
|
data: string | ArrayBuffer;
|
|
@@ -1525,6 +1576,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1525
1576
|
text: string;
|
|
1526
1577
|
} | {
|
|
1527
1578
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1579
|
+
filename?: string | undefined;
|
|
1528
1580
|
type: "file";
|
|
1529
1581
|
mimeType: string;
|
|
1530
1582
|
data: string | ArrayBuffer;
|
|
@@ -1594,6 +1646,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1594
1646
|
image: string | ArrayBuffer;
|
|
1595
1647
|
} | {
|
|
1596
1648
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1649
|
+
filename?: string | undefined;
|
|
1597
1650
|
type: "file";
|
|
1598
1651
|
mimeType: string;
|
|
1599
1652
|
data: string | ArrayBuffer;
|
|
@@ -1607,6 +1660,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1607
1660
|
text: string;
|
|
1608
1661
|
} | {
|
|
1609
1662
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1663
|
+
filename?: string | undefined;
|
|
1610
1664
|
type: "file";
|
|
1611
1665
|
mimeType: string;
|
|
1612
1666
|
data: string | ArrayBuffer;
|
|
@@ -1668,6 +1722,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1668
1722
|
image: string | ArrayBuffer;
|
|
1669
1723
|
} | {
|
|
1670
1724
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1725
|
+
filename?: string | undefined;
|
|
1671
1726
|
type: "file";
|
|
1672
1727
|
mimeType: string;
|
|
1673
1728
|
data: string | ArrayBuffer;
|
|
@@ -1681,6 +1736,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1681
1736
|
text: string;
|
|
1682
1737
|
} | {
|
|
1683
1738
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1739
|
+
filename?: string | undefined;
|
|
1684
1740
|
type: "file";
|
|
1685
1741
|
mimeType: string;
|
|
1686
1742
|
data: string | ArrayBuffer;
|
|
@@ -1741,6 +1797,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1741
1797
|
image: string | ArrayBuffer;
|
|
1742
1798
|
} | {
|
|
1743
1799
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1800
|
+
filename?: string | undefined;
|
|
1744
1801
|
type: "file";
|
|
1745
1802
|
mimeType: string;
|
|
1746
1803
|
data: string | ArrayBuffer;
|
|
@@ -1754,6 +1811,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1754
1811
|
text: string;
|
|
1755
1812
|
} | {
|
|
1756
1813
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1814
|
+
filename?: string | undefined;
|
|
1757
1815
|
type: "file";
|
|
1758
1816
|
mimeType: string;
|
|
1759
1817
|
data: string | ArrayBuffer;
|
|
@@ -1811,6 +1869,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1811
1869
|
image: string | ArrayBuffer;
|
|
1812
1870
|
} | {
|
|
1813
1871
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1872
|
+
filename?: string | undefined;
|
|
1814
1873
|
type: "file";
|
|
1815
1874
|
mimeType: string;
|
|
1816
1875
|
data: string | ArrayBuffer;
|
|
@@ -1828,6 +1887,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1828
1887
|
image: string | ArrayBuffer;
|
|
1829
1888
|
} | {
|
|
1830
1889
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1890
|
+
filename?: string | undefined;
|
|
1831
1891
|
type: "file";
|
|
1832
1892
|
mimeType: string;
|
|
1833
1893
|
data: string | ArrayBuffer;
|
|
@@ -1842,6 +1902,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1842
1902
|
image: string | ArrayBuffer;
|
|
1843
1903
|
} | {
|
|
1844
1904
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1905
|
+
filename?: string | undefined;
|
|
1845
1906
|
type: "file";
|
|
1846
1907
|
mimeType: string;
|
|
1847
1908
|
data: string | ArrayBuffer;
|
|
@@ -1856,6 +1917,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1856
1917
|
image: string | ArrayBuffer;
|
|
1857
1918
|
} | {
|
|
1858
1919
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1920
|
+
filename?: string | undefined;
|
|
1859
1921
|
type: "file";
|
|
1860
1922
|
mimeType: string;
|
|
1861
1923
|
data: string | ArrayBuffer;
|
|
@@ -1879,15 +1941,17 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1879
1941
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1880
1942
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
1881
1943
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1944
|
+
filename?: string | undefined;
|
|
1882
1945
|
type: "file";
|
|
1883
1946
|
mimeType: string;
|
|
1884
1947
|
data: string | ArrayBuffer;
|
|
1885
1948
|
}, {
|
|
1886
1949
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
1887
1950
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
1951
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
1888
1952
|
mimeType: import("convex/values").VString<string, "required">;
|
|
1889
1953
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1890
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
1954
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
1891
1955
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
1892
1956
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
1893
1957
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -1898,6 +1962,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1898
1962
|
text: string;
|
|
1899
1963
|
} | {
|
|
1900
1964
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1965
|
+
filename?: string | undefined;
|
|
1901
1966
|
type: "file";
|
|
1902
1967
|
mimeType: string;
|
|
1903
1968
|
data: string | ArrayBuffer;
|
|
@@ -1925,6 +1990,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1925
1990
|
text: string;
|
|
1926
1991
|
} | {
|
|
1927
1992
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
1993
|
+
filename?: string | undefined;
|
|
1928
1994
|
type: "file";
|
|
1929
1995
|
mimeType: string;
|
|
1930
1996
|
data: string | ArrayBuffer;
|
|
@@ -1949,6 +2015,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1949
2015
|
text: string;
|
|
1950
2016
|
} | {
|
|
1951
2017
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2018
|
+
filename?: string | undefined;
|
|
1952
2019
|
type: "file";
|
|
1953
2020
|
mimeType: string;
|
|
1954
2021
|
data: string | ArrayBuffer;
|
|
@@ -1973,6 +2040,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
1973
2040
|
text: string;
|
|
1974
2041
|
} | {
|
|
1975
2042
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2043
|
+
filename?: string | undefined;
|
|
1976
2044
|
type: "file";
|
|
1977
2045
|
mimeType: string;
|
|
1978
2046
|
data: string | ArrayBuffer;
|
|
@@ -2001,15 +2069,17 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
2001
2069
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2002
2070
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
2003
2071
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2072
|
+
filename?: string | undefined;
|
|
2004
2073
|
type: "file";
|
|
2005
2074
|
mimeType: string;
|
|
2006
2075
|
data: string | ArrayBuffer;
|
|
2007
2076
|
}, {
|
|
2008
2077
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
2009
2078
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
2079
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
2010
2080
|
mimeType: import("convex/values").VString<string, "required">;
|
|
2011
2081
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2012
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
2082
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
2013
2083
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2014
2084
|
signature?: string | undefined;
|
|
2015
2085
|
type: "reasoning";
|
|
@@ -2039,7 +2109,7 @@ export declare const vResponse: import("convex/values").VObject<{
|
|
|
2039
2109
|
toolName: import("convex/values").VString<string, "required">;
|
|
2040
2110
|
args: import("convex/values").VAny<any, "required", string>;
|
|
2041
2111
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2042
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
2112
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
2043
2113
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2044
2114
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
2045
2115
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -2266,6 +2336,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2266
2336
|
image: string | ArrayBuffer;
|
|
2267
2337
|
} | {
|
|
2268
2338
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2339
|
+
filename?: string | undefined;
|
|
2269
2340
|
type: "file";
|
|
2270
2341
|
mimeType: string;
|
|
2271
2342
|
data: string | ArrayBuffer;
|
|
@@ -2279,6 +2350,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2279
2350
|
text: string;
|
|
2280
2351
|
} | {
|
|
2281
2352
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2353
|
+
filename?: string | undefined;
|
|
2282
2354
|
type: "file";
|
|
2283
2355
|
mimeType: string;
|
|
2284
2356
|
data: string | ArrayBuffer;
|
|
@@ -2339,6 +2411,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2339
2411
|
image: string | ArrayBuffer;
|
|
2340
2412
|
} | {
|
|
2341
2413
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2414
|
+
filename?: string | undefined;
|
|
2342
2415
|
type: "file";
|
|
2343
2416
|
mimeType: string;
|
|
2344
2417
|
data: string | ArrayBuffer;
|
|
@@ -2352,6 +2425,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2352
2425
|
text: string;
|
|
2353
2426
|
} | {
|
|
2354
2427
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2428
|
+
filename?: string | undefined;
|
|
2355
2429
|
type: "file";
|
|
2356
2430
|
mimeType: string;
|
|
2357
2431
|
data: string | ArrayBuffer;
|
|
@@ -2409,6 +2483,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2409
2483
|
image: string | ArrayBuffer;
|
|
2410
2484
|
} | {
|
|
2411
2485
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2486
|
+
filename?: string | undefined;
|
|
2412
2487
|
type: "file";
|
|
2413
2488
|
mimeType: string;
|
|
2414
2489
|
data: string | ArrayBuffer;
|
|
@@ -2426,6 +2501,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2426
2501
|
image: string | ArrayBuffer;
|
|
2427
2502
|
} | {
|
|
2428
2503
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2504
|
+
filename?: string | undefined;
|
|
2429
2505
|
type: "file";
|
|
2430
2506
|
mimeType: string;
|
|
2431
2507
|
data: string | ArrayBuffer;
|
|
@@ -2440,6 +2516,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2440
2516
|
image: string | ArrayBuffer;
|
|
2441
2517
|
} | {
|
|
2442
2518
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2519
|
+
filename?: string | undefined;
|
|
2443
2520
|
type: "file";
|
|
2444
2521
|
mimeType: string;
|
|
2445
2522
|
data: string | ArrayBuffer;
|
|
@@ -2454,6 +2531,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2454
2531
|
image: string | ArrayBuffer;
|
|
2455
2532
|
} | {
|
|
2456
2533
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2534
|
+
filename?: string | undefined;
|
|
2457
2535
|
type: "file";
|
|
2458
2536
|
mimeType: string;
|
|
2459
2537
|
data: string | ArrayBuffer;
|
|
@@ -2477,15 +2555,17 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2477
2555
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2478
2556
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
2479
2557
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2558
|
+
filename?: string | undefined;
|
|
2480
2559
|
type: "file";
|
|
2481
2560
|
mimeType: string;
|
|
2482
2561
|
data: string | ArrayBuffer;
|
|
2483
2562
|
}, {
|
|
2484
2563
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
2485
2564
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
2565
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
2486
2566
|
mimeType: import("convex/values").VString<string, "required">;
|
|
2487
2567
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2488
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
2568
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
2489
2569
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2490
2570
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
2491
2571
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -2496,6 +2576,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2496
2576
|
text: string;
|
|
2497
2577
|
} | {
|
|
2498
2578
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2579
|
+
filename?: string | undefined;
|
|
2499
2580
|
type: "file";
|
|
2500
2581
|
mimeType: string;
|
|
2501
2582
|
data: string | ArrayBuffer;
|
|
@@ -2523,6 +2604,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2523
2604
|
text: string;
|
|
2524
2605
|
} | {
|
|
2525
2606
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2607
|
+
filename?: string | undefined;
|
|
2526
2608
|
type: "file";
|
|
2527
2609
|
mimeType: string;
|
|
2528
2610
|
data: string | ArrayBuffer;
|
|
@@ -2547,6 +2629,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2547
2629
|
text: string;
|
|
2548
2630
|
} | {
|
|
2549
2631
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2632
|
+
filename?: string | undefined;
|
|
2550
2633
|
type: "file";
|
|
2551
2634
|
mimeType: string;
|
|
2552
2635
|
data: string | ArrayBuffer;
|
|
@@ -2571,6 +2654,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2571
2654
|
text: string;
|
|
2572
2655
|
} | {
|
|
2573
2656
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2657
|
+
filename?: string | undefined;
|
|
2574
2658
|
type: "file";
|
|
2575
2659
|
mimeType: string;
|
|
2576
2660
|
data: string | ArrayBuffer;
|
|
@@ -2599,15 +2683,17 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2599
2683
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2600
2684
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
2601
2685
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2686
|
+
filename?: string | undefined;
|
|
2602
2687
|
type: "file";
|
|
2603
2688
|
mimeType: string;
|
|
2604
2689
|
data: string | ArrayBuffer;
|
|
2605
2690
|
}, {
|
|
2606
2691
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
2607
2692
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
2693
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
2608
2694
|
mimeType: import("convex/values").VString<string, "required">;
|
|
2609
2695
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2610
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
2696
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
2611
2697
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
2612
2698
|
signature?: string | undefined;
|
|
2613
2699
|
type: "reasoning";
|
|
@@ -2637,7 +2723,7 @@ export declare const vMessageWithMetadata: import("convex/values").VObject<{
|
|
|
2637
2723
|
toolName: import("convex/values").VString<string, "required">;
|
|
2638
2724
|
args: import("convex/values").VAny<any, "required", string>;
|
|
2639
2725
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2640
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
2726
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
2641
2727
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
2642
2728
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
2643
2729
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -2942,6 +3028,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
2942
3028
|
image: string | ArrayBuffer;
|
|
2943
3029
|
} | {
|
|
2944
3030
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3031
|
+
filename?: string | undefined;
|
|
2945
3032
|
type: "file";
|
|
2946
3033
|
mimeType: string;
|
|
2947
3034
|
data: string | ArrayBuffer;
|
|
@@ -2955,6 +3042,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
2955
3042
|
text: string;
|
|
2956
3043
|
} | {
|
|
2957
3044
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3045
|
+
filename?: string | undefined;
|
|
2958
3046
|
type: "file";
|
|
2959
3047
|
mimeType: string;
|
|
2960
3048
|
data: string | ArrayBuffer;
|
|
@@ -3100,6 +3188,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3100
3188
|
image: string | ArrayBuffer;
|
|
3101
3189
|
} | {
|
|
3102
3190
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3191
|
+
filename?: string | undefined;
|
|
3103
3192
|
type: "file";
|
|
3104
3193
|
mimeType: string;
|
|
3105
3194
|
data: string | ArrayBuffer;
|
|
@@ -3113,6 +3202,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3113
3202
|
text: string;
|
|
3114
3203
|
} | {
|
|
3115
3204
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3205
|
+
filename?: string | undefined;
|
|
3116
3206
|
type: "file";
|
|
3117
3207
|
mimeType: string;
|
|
3118
3208
|
data: string | ArrayBuffer;
|
|
@@ -3182,6 +3272,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3182
3272
|
image: string | ArrayBuffer;
|
|
3183
3273
|
} | {
|
|
3184
3274
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3275
|
+
filename?: string | undefined;
|
|
3185
3276
|
type: "file";
|
|
3186
3277
|
mimeType: string;
|
|
3187
3278
|
data: string | ArrayBuffer;
|
|
@@ -3195,6 +3286,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3195
3286
|
text: string;
|
|
3196
3287
|
} | {
|
|
3197
3288
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3289
|
+
filename?: string | undefined;
|
|
3198
3290
|
type: "file";
|
|
3199
3291
|
mimeType: string;
|
|
3200
3292
|
data: string | ArrayBuffer;
|
|
@@ -3256,6 +3348,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3256
3348
|
image: string | ArrayBuffer;
|
|
3257
3349
|
} | {
|
|
3258
3350
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3351
|
+
filename?: string | undefined;
|
|
3259
3352
|
type: "file";
|
|
3260
3353
|
mimeType: string;
|
|
3261
3354
|
data: string | ArrayBuffer;
|
|
@@ -3269,6 +3362,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3269
3362
|
text: string;
|
|
3270
3363
|
} | {
|
|
3271
3364
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3365
|
+
filename?: string | undefined;
|
|
3272
3366
|
type: "file";
|
|
3273
3367
|
mimeType: string;
|
|
3274
3368
|
data: string | ArrayBuffer;
|
|
@@ -3329,6 +3423,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3329
3423
|
image: string | ArrayBuffer;
|
|
3330
3424
|
} | {
|
|
3331
3425
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3426
|
+
filename?: string | undefined;
|
|
3332
3427
|
type: "file";
|
|
3333
3428
|
mimeType: string;
|
|
3334
3429
|
data: string | ArrayBuffer;
|
|
@@ -3342,6 +3437,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3342
3437
|
text: string;
|
|
3343
3438
|
} | {
|
|
3344
3439
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3440
|
+
filename?: string | undefined;
|
|
3345
3441
|
type: "file";
|
|
3346
3442
|
mimeType: string;
|
|
3347
3443
|
data: string | ArrayBuffer;
|
|
@@ -3399,6 +3495,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3399
3495
|
image: string | ArrayBuffer;
|
|
3400
3496
|
} | {
|
|
3401
3497
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3498
|
+
filename?: string | undefined;
|
|
3402
3499
|
type: "file";
|
|
3403
3500
|
mimeType: string;
|
|
3404
3501
|
data: string | ArrayBuffer;
|
|
@@ -3416,6 +3513,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3416
3513
|
image: string | ArrayBuffer;
|
|
3417
3514
|
} | {
|
|
3418
3515
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3516
|
+
filename?: string | undefined;
|
|
3419
3517
|
type: "file";
|
|
3420
3518
|
mimeType: string;
|
|
3421
3519
|
data: string | ArrayBuffer;
|
|
@@ -3430,6 +3528,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3430
3528
|
image: string | ArrayBuffer;
|
|
3431
3529
|
} | {
|
|
3432
3530
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3531
|
+
filename?: string | undefined;
|
|
3433
3532
|
type: "file";
|
|
3434
3533
|
mimeType: string;
|
|
3435
3534
|
data: string | ArrayBuffer;
|
|
@@ -3444,6 +3543,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3444
3543
|
image: string | ArrayBuffer;
|
|
3445
3544
|
} | {
|
|
3446
3545
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3546
|
+
filename?: string | undefined;
|
|
3447
3547
|
type: "file";
|
|
3448
3548
|
mimeType: string;
|
|
3449
3549
|
data: string | ArrayBuffer;
|
|
@@ -3467,15 +3567,17 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3467
3567
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
3468
3568
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
3469
3569
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3570
|
+
filename?: string | undefined;
|
|
3470
3571
|
type: "file";
|
|
3471
3572
|
mimeType: string;
|
|
3472
3573
|
data: string | ArrayBuffer;
|
|
3473
3574
|
}, {
|
|
3474
3575
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
3475
3576
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
3577
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
3476
3578
|
mimeType: import("convex/values").VString<string, "required">;
|
|
3477
3579
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
3478
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
3580
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
3479
3581
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
3480
3582
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
3481
3583
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -3486,6 +3588,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3486
3588
|
text: string;
|
|
3487
3589
|
} | {
|
|
3488
3590
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3591
|
+
filename?: string | undefined;
|
|
3489
3592
|
type: "file";
|
|
3490
3593
|
mimeType: string;
|
|
3491
3594
|
data: string | ArrayBuffer;
|
|
@@ -3513,6 +3616,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3513
3616
|
text: string;
|
|
3514
3617
|
} | {
|
|
3515
3618
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3619
|
+
filename?: string | undefined;
|
|
3516
3620
|
type: "file";
|
|
3517
3621
|
mimeType: string;
|
|
3518
3622
|
data: string | ArrayBuffer;
|
|
@@ -3537,6 +3641,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3537
3641
|
text: string;
|
|
3538
3642
|
} | {
|
|
3539
3643
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3644
|
+
filename?: string | undefined;
|
|
3540
3645
|
type: "file";
|
|
3541
3646
|
mimeType: string;
|
|
3542
3647
|
data: string | ArrayBuffer;
|
|
@@ -3561,6 +3666,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3561
3666
|
text: string;
|
|
3562
3667
|
} | {
|
|
3563
3668
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3669
|
+
filename?: string | undefined;
|
|
3564
3670
|
type: "file";
|
|
3565
3671
|
mimeType: string;
|
|
3566
3672
|
data: string | ArrayBuffer;
|
|
@@ -3589,15 +3695,17 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3589
3695
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
3590
3696
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
3591
3697
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3698
|
+
filename?: string | undefined;
|
|
3592
3699
|
type: "file";
|
|
3593
3700
|
mimeType: string;
|
|
3594
3701
|
data: string | ArrayBuffer;
|
|
3595
3702
|
}, {
|
|
3596
3703
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
3597
3704
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
3705
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
3598
3706
|
mimeType: import("convex/values").VString<string, "required">;
|
|
3599
3707
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
3600
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
3708
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
3601
3709
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
3602
3710
|
signature?: string | undefined;
|
|
3603
3711
|
type: "reasoning";
|
|
@@ -3627,7 +3735,7 @@ export declare const vStep: import("convex/values").VObject<{
|
|
|
3627
3735
|
toolName: import("convex/values").VString<string, "required">;
|
|
3628
3736
|
args: import("convex/values").VAny<any, "required", string>;
|
|
3629
3737
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
3630
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
3738
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
3631
3739
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
3632
3740
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
3633
3741
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -3968,6 +4076,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
3968
4076
|
image: string | ArrayBuffer;
|
|
3969
4077
|
} | {
|
|
3970
4078
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4079
|
+
filename?: string | undefined;
|
|
3971
4080
|
type: "file";
|
|
3972
4081
|
mimeType: string;
|
|
3973
4082
|
data: string | ArrayBuffer;
|
|
@@ -3981,6 +4090,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
3981
4090
|
text: string;
|
|
3982
4091
|
} | {
|
|
3983
4092
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4093
|
+
filename?: string | undefined;
|
|
3984
4094
|
type: "file";
|
|
3985
4095
|
mimeType: string;
|
|
3986
4096
|
data: string | ArrayBuffer;
|
|
@@ -4091,6 +4201,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4091
4201
|
image: string | ArrayBuffer;
|
|
4092
4202
|
} | {
|
|
4093
4203
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4204
|
+
filename?: string | undefined;
|
|
4094
4205
|
type: "file";
|
|
4095
4206
|
mimeType: string;
|
|
4096
4207
|
data: string | ArrayBuffer;
|
|
@@ -4104,6 +4215,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4104
4215
|
text: string;
|
|
4105
4216
|
} | {
|
|
4106
4217
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4218
|
+
filename?: string | undefined;
|
|
4107
4219
|
type: "file";
|
|
4108
4220
|
mimeType: string;
|
|
4109
4221
|
data: string | ArrayBuffer;
|
|
@@ -4247,6 +4359,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4247
4359
|
image: string | ArrayBuffer;
|
|
4248
4360
|
} | {
|
|
4249
4361
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4362
|
+
filename?: string | undefined;
|
|
4250
4363
|
type: "file";
|
|
4251
4364
|
mimeType: string;
|
|
4252
4365
|
data: string | ArrayBuffer;
|
|
@@ -4260,6 +4373,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4260
4373
|
text: string;
|
|
4261
4374
|
} | {
|
|
4262
4375
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4376
|
+
filename?: string | undefined;
|
|
4263
4377
|
type: "file";
|
|
4264
4378
|
mimeType: string;
|
|
4265
4379
|
data: string | ArrayBuffer;
|
|
@@ -4405,6 +4519,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4405
4519
|
image: string | ArrayBuffer;
|
|
4406
4520
|
} | {
|
|
4407
4521
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4522
|
+
filename?: string | undefined;
|
|
4408
4523
|
type: "file";
|
|
4409
4524
|
mimeType: string;
|
|
4410
4525
|
data: string | ArrayBuffer;
|
|
@@ -4418,6 +4533,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4418
4533
|
text: string;
|
|
4419
4534
|
} | {
|
|
4420
4535
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4536
|
+
filename?: string | undefined;
|
|
4421
4537
|
type: "file";
|
|
4422
4538
|
mimeType: string;
|
|
4423
4539
|
data: string | ArrayBuffer;
|
|
@@ -4487,6 +4603,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4487
4603
|
image: string | ArrayBuffer;
|
|
4488
4604
|
} | {
|
|
4489
4605
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4606
|
+
filename?: string | undefined;
|
|
4490
4607
|
type: "file";
|
|
4491
4608
|
mimeType: string;
|
|
4492
4609
|
data: string | ArrayBuffer;
|
|
@@ -4500,6 +4617,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4500
4617
|
text: string;
|
|
4501
4618
|
} | {
|
|
4502
4619
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4620
|
+
filename?: string | undefined;
|
|
4503
4621
|
type: "file";
|
|
4504
4622
|
mimeType: string;
|
|
4505
4623
|
data: string | ArrayBuffer;
|
|
@@ -4561,6 +4679,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4561
4679
|
image: string | ArrayBuffer;
|
|
4562
4680
|
} | {
|
|
4563
4681
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4682
|
+
filename?: string | undefined;
|
|
4564
4683
|
type: "file";
|
|
4565
4684
|
mimeType: string;
|
|
4566
4685
|
data: string | ArrayBuffer;
|
|
@@ -4574,6 +4693,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4574
4693
|
text: string;
|
|
4575
4694
|
} | {
|
|
4576
4695
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4696
|
+
filename?: string | undefined;
|
|
4577
4697
|
type: "file";
|
|
4578
4698
|
mimeType: string;
|
|
4579
4699
|
data: string | ArrayBuffer;
|
|
@@ -4634,6 +4754,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4634
4754
|
image: string | ArrayBuffer;
|
|
4635
4755
|
} | {
|
|
4636
4756
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4757
|
+
filename?: string | undefined;
|
|
4637
4758
|
type: "file";
|
|
4638
4759
|
mimeType: string;
|
|
4639
4760
|
data: string | ArrayBuffer;
|
|
@@ -4647,6 +4768,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4647
4768
|
text: string;
|
|
4648
4769
|
} | {
|
|
4649
4770
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4771
|
+
filename?: string | undefined;
|
|
4650
4772
|
type: "file";
|
|
4651
4773
|
mimeType: string;
|
|
4652
4774
|
data: string | ArrayBuffer;
|
|
@@ -4704,6 +4826,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4704
4826
|
image: string | ArrayBuffer;
|
|
4705
4827
|
} | {
|
|
4706
4828
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4829
|
+
filename?: string | undefined;
|
|
4707
4830
|
type: "file";
|
|
4708
4831
|
mimeType: string;
|
|
4709
4832
|
data: string | ArrayBuffer;
|
|
@@ -4721,6 +4844,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4721
4844
|
image: string | ArrayBuffer;
|
|
4722
4845
|
} | {
|
|
4723
4846
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4847
|
+
filename?: string | undefined;
|
|
4724
4848
|
type: "file";
|
|
4725
4849
|
mimeType: string;
|
|
4726
4850
|
data: string | ArrayBuffer;
|
|
@@ -4735,6 +4859,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4735
4859
|
image: string | ArrayBuffer;
|
|
4736
4860
|
} | {
|
|
4737
4861
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4862
|
+
filename?: string | undefined;
|
|
4738
4863
|
type: "file";
|
|
4739
4864
|
mimeType: string;
|
|
4740
4865
|
data: string | ArrayBuffer;
|
|
@@ -4749,6 +4874,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4749
4874
|
image: string | ArrayBuffer;
|
|
4750
4875
|
} | {
|
|
4751
4876
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4877
|
+
filename?: string | undefined;
|
|
4752
4878
|
type: "file";
|
|
4753
4879
|
mimeType: string;
|
|
4754
4880
|
data: string | ArrayBuffer;
|
|
@@ -4772,15 +4898,17 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4772
4898
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
4773
4899
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
4774
4900
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4901
|
+
filename?: string | undefined;
|
|
4775
4902
|
type: "file";
|
|
4776
4903
|
mimeType: string;
|
|
4777
4904
|
data: string | ArrayBuffer;
|
|
4778
4905
|
}, {
|
|
4779
4906
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
4780
4907
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
4908
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
4781
4909
|
mimeType: import("convex/values").VString<string, "required">;
|
|
4782
4910
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
4783
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
4911
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
4784
4912
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
4785
4913
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
4786
4914
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -4791,6 +4919,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4791
4919
|
text: string;
|
|
4792
4920
|
} | {
|
|
4793
4921
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4922
|
+
filename?: string | undefined;
|
|
4794
4923
|
type: "file";
|
|
4795
4924
|
mimeType: string;
|
|
4796
4925
|
data: string | ArrayBuffer;
|
|
@@ -4818,6 +4947,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4818
4947
|
text: string;
|
|
4819
4948
|
} | {
|
|
4820
4949
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4950
|
+
filename?: string | undefined;
|
|
4821
4951
|
type: "file";
|
|
4822
4952
|
mimeType: string;
|
|
4823
4953
|
data: string | ArrayBuffer;
|
|
@@ -4842,6 +4972,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4842
4972
|
text: string;
|
|
4843
4973
|
} | {
|
|
4844
4974
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4975
|
+
filename?: string | undefined;
|
|
4845
4976
|
type: "file";
|
|
4846
4977
|
mimeType: string;
|
|
4847
4978
|
data: string | ArrayBuffer;
|
|
@@ -4866,6 +4997,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4866
4997
|
text: string;
|
|
4867
4998
|
} | {
|
|
4868
4999
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5000
|
+
filename?: string | undefined;
|
|
4869
5001
|
type: "file";
|
|
4870
5002
|
mimeType: string;
|
|
4871
5003
|
data: string | ArrayBuffer;
|
|
@@ -4894,15 +5026,17 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4894
5026
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
4895
5027
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
4896
5028
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5029
|
+
filename?: string | undefined;
|
|
4897
5030
|
type: "file";
|
|
4898
5031
|
mimeType: string;
|
|
4899
5032
|
data: string | ArrayBuffer;
|
|
4900
5033
|
}, {
|
|
4901
5034
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
4902
5035
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
5036
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
4903
5037
|
mimeType: import("convex/values").VString<string, "required">;
|
|
4904
5038
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
4905
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
5039
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
4906
5040
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
4907
5041
|
signature?: string | undefined;
|
|
4908
5042
|
type: "reasoning";
|
|
@@ -4932,7 +5066,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
4932
5066
|
toolName: import("convex/values").VString<string, "required">;
|
|
4933
5067
|
args: import("convex/values").VAny<any, "required", string>;
|
|
4934
5068
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
4935
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
5069
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
4936
5070
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
4937
5071
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
4938
5072
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -5266,6 +5400,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5266
5400
|
image: string | ArrayBuffer;
|
|
5267
5401
|
} | {
|
|
5268
5402
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5403
|
+
filename?: string | undefined;
|
|
5269
5404
|
type: "file";
|
|
5270
5405
|
mimeType: string;
|
|
5271
5406
|
data: string | ArrayBuffer;
|
|
@@ -5279,6 +5414,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5279
5414
|
text: string;
|
|
5280
5415
|
} | {
|
|
5281
5416
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5417
|
+
filename?: string | undefined;
|
|
5282
5418
|
type: "file";
|
|
5283
5419
|
mimeType: string;
|
|
5284
5420
|
data: string | ArrayBuffer;
|
|
@@ -5384,6 +5520,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5384
5520
|
image: string | ArrayBuffer;
|
|
5385
5521
|
} | {
|
|
5386
5522
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5523
|
+
filename?: string | undefined;
|
|
5387
5524
|
type: "file";
|
|
5388
5525
|
mimeType: string;
|
|
5389
5526
|
data: string | ArrayBuffer;
|
|
@@ -5397,6 +5534,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5397
5534
|
text: string;
|
|
5398
5535
|
} | {
|
|
5399
5536
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5537
|
+
filename?: string | undefined;
|
|
5400
5538
|
type: "file";
|
|
5401
5539
|
mimeType: string;
|
|
5402
5540
|
data: string | ArrayBuffer;
|
|
@@ -5457,6 +5595,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5457
5595
|
image: string | ArrayBuffer;
|
|
5458
5596
|
} | {
|
|
5459
5597
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5598
|
+
filename?: string | undefined;
|
|
5460
5599
|
type: "file";
|
|
5461
5600
|
mimeType: string;
|
|
5462
5601
|
data: string | ArrayBuffer;
|
|
@@ -5470,6 +5609,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5470
5609
|
text: string;
|
|
5471
5610
|
} | {
|
|
5472
5611
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5612
|
+
filename?: string | undefined;
|
|
5473
5613
|
type: "file";
|
|
5474
5614
|
mimeType: string;
|
|
5475
5615
|
data: string | ArrayBuffer;
|
|
@@ -5527,6 +5667,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5527
5667
|
image: string | ArrayBuffer;
|
|
5528
5668
|
} | {
|
|
5529
5669
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5670
|
+
filename?: string | undefined;
|
|
5530
5671
|
type: "file";
|
|
5531
5672
|
mimeType: string;
|
|
5532
5673
|
data: string | ArrayBuffer;
|
|
@@ -5544,6 +5685,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5544
5685
|
image: string | ArrayBuffer;
|
|
5545
5686
|
} | {
|
|
5546
5687
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5688
|
+
filename?: string | undefined;
|
|
5547
5689
|
type: "file";
|
|
5548
5690
|
mimeType: string;
|
|
5549
5691
|
data: string | ArrayBuffer;
|
|
@@ -5558,6 +5700,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5558
5700
|
image: string | ArrayBuffer;
|
|
5559
5701
|
} | {
|
|
5560
5702
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5703
|
+
filename?: string | undefined;
|
|
5561
5704
|
type: "file";
|
|
5562
5705
|
mimeType: string;
|
|
5563
5706
|
data: string | ArrayBuffer;
|
|
@@ -5572,6 +5715,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5572
5715
|
image: string | ArrayBuffer;
|
|
5573
5716
|
} | {
|
|
5574
5717
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5718
|
+
filename?: string | undefined;
|
|
5575
5719
|
type: "file";
|
|
5576
5720
|
mimeType: string;
|
|
5577
5721
|
data: string | ArrayBuffer;
|
|
@@ -5595,15 +5739,17 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5595
5739
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
5596
5740
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
5597
5741
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5742
|
+
filename?: string | undefined;
|
|
5598
5743
|
type: "file";
|
|
5599
5744
|
mimeType: string;
|
|
5600
5745
|
data: string | ArrayBuffer;
|
|
5601
5746
|
}, {
|
|
5602
5747
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
5603
5748
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
5749
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
5604
5750
|
mimeType: import("convex/values").VString<string, "required">;
|
|
5605
5751
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
5606
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
5752
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
5607
5753
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
5608
5754
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
5609
5755
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -5614,6 +5760,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5614
5760
|
text: string;
|
|
5615
5761
|
} | {
|
|
5616
5762
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5763
|
+
filename?: string | undefined;
|
|
5617
5764
|
type: "file";
|
|
5618
5765
|
mimeType: string;
|
|
5619
5766
|
data: string | ArrayBuffer;
|
|
@@ -5641,6 +5788,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5641
5788
|
text: string;
|
|
5642
5789
|
} | {
|
|
5643
5790
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5791
|
+
filename?: string | undefined;
|
|
5644
5792
|
type: "file";
|
|
5645
5793
|
mimeType: string;
|
|
5646
5794
|
data: string | ArrayBuffer;
|
|
@@ -5665,6 +5813,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5665
5813
|
text: string;
|
|
5666
5814
|
} | {
|
|
5667
5815
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5816
|
+
filename?: string | undefined;
|
|
5668
5817
|
type: "file";
|
|
5669
5818
|
mimeType: string;
|
|
5670
5819
|
data: string | ArrayBuffer;
|
|
@@ -5689,6 +5838,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5689
5838
|
text: string;
|
|
5690
5839
|
} | {
|
|
5691
5840
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5841
|
+
filename?: string | undefined;
|
|
5692
5842
|
type: "file";
|
|
5693
5843
|
mimeType: string;
|
|
5694
5844
|
data: string | ArrayBuffer;
|
|
@@ -5717,15 +5867,17 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5717
5867
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
5718
5868
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
5719
5869
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5870
|
+
filename?: string | undefined;
|
|
5720
5871
|
type: "file";
|
|
5721
5872
|
mimeType: string;
|
|
5722
5873
|
data: string | ArrayBuffer;
|
|
5723
5874
|
}, {
|
|
5724
5875
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
5725
5876
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
5877
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
5726
5878
|
mimeType: import("convex/values").VString<string, "required">;
|
|
5727
5879
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
5728
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
5880
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
5729
5881
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
5730
5882
|
signature?: string | undefined;
|
|
5731
5883
|
type: "reasoning";
|
|
@@ -5755,7 +5907,7 @@ export declare const vStepWithMessages: import("convex/values").VObject<{
|
|
|
5755
5907
|
toolName: import("convex/values").VString<string, "required">;
|
|
5756
5908
|
args: import("convex/values").VAny<any, "required", string>;
|
|
5757
5909
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
5758
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
5910
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
5759
5911
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
5760
5912
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
5761
5913
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -6227,6 +6379,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6227
6379
|
image: string | ArrayBuffer;
|
|
6228
6380
|
} | {
|
|
6229
6381
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6382
|
+
filename?: string | undefined;
|
|
6230
6383
|
type: "file";
|
|
6231
6384
|
mimeType: string;
|
|
6232
6385
|
data: string | ArrayBuffer;
|
|
@@ -6240,6 +6393,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6240
6393
|
text: string;
|
|
6241
6394
|
} | {
|
|
6242
6395
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6396
|
+
filename?: string | undefined;
|
|
6243
6397
|
type: "file";
|
|
6244
6398
|
mimeType: string;
|
|
6245
6399
|
data: string | ArrayBuffer;
|
|
@@ -6351,6 +6505,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6351
6505
|
image: string | ArrayBuffer;
|
|
6352
6506
|
} | {
|
|
6353
6507
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6508
|
+
filename?: string | undefined;
|
|
6354
6509
|
type: "file";
|
|
6355
6510
|
mimeType: string;
|
|
6356
6511
|
data: string | ArrayBuffer;
|
|
@@ -6364,6 +6519,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6364
6519
|
text: string;
|
|
6365
6520
|
} | {
|
|
6366
6521
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6522
|
+
filename?: string | undefined;
|
|
6367
6523
|
type: "file";
|
|
6368
6524
|
mimeType: string;
|
|
6369
6525
|
data: string | ArrayBuffer;
|
|
@@ -6421,6 +6577,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6421
6577
|
image: string | ArrayBuffer;
|
|
6422
6578
|
} | {
|
|
6423
6579
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6580
|
+
filename?: string | undefined;
|
|
6424
6581
|
type: "file";
|
|
6425
6582
|
mimeType: string;
|
|
6426
6583
|
data: string | ArrayBuffer;
|
|
@@ -6434,6 +6591,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6434
6591
|
text: string;
|
|
6435
6592
|
} | {
|
|
6436
6593
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6594
|
+
filename?: string | undefined;
|
|
6437
6595
|
type: "file";
|
|
6438
6596
|
mimeType: string;
|
|
6439
6597
|
data: string | ArrayBuffer;
|
|
@@ -6491,6 +6649,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6491
6649
|
image: string | ArrayBuffer;
|
|
6492
6650
|
} | {
|
|
6493
6651
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6652
|
+
filename?: string | undefined;
|
|
6494
6653
|
type: "file";
|
|
6495
6654
|
mimeType: string;
|
|
6496
6655
|
data: string | ArrayBuffer;
|
|
@@ -6508,6 +6667,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6508
6667
|
image: string | ArrayBuffer;
|
|
6509
6668
|
} | {
|
|
6510
6669
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6670
|
+
filename?: string | undefined;
|
|
6511
6671
|
type: "file";
|
|
6512
6672
|
mimeType: string;
|
|
6513
6673
|
data: string | ArrayBuffer;
|
|
@@ -6522,6 +6682,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6522
6682
|
image: string | ArrayBuffer;
|
|
6523
6683
|
} | {
|
|
6524
6684
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6685
|
+
filename?: string | undefined;
|
|
6525
6686
|
type: "file";
|
|
6526
6687
|
mimeType: string;
|
|
6527
6688
|
data: string | ArrayBuffer;
|
|
@@ -6536,6 +6697,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6536
6697
|
image: string | ArrayBuffer;
|
|
6537
6698
|
} | {
|
|
6538
6699
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6700
|
+
filename?: string | undefined;
|
|
6539
6701
|
type: "file";
|
|
6540
6702
|
mimeType: string;
|
|
6541
6703
|
data: string | ArrayBuffer;
|
|
@@ -6559,15 +6721,17 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6559
6721
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
6560
6722
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
6561
6723
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6724
|
+
filename?: string | undefined;
|
|
6562
6725
|
type: "file";
|
|
6563
6726
|
mimeType: string;
|
|
6564
6727
|
data: string | ArrayBuffer;
|
|
6565
6728
|
}, {
|
|
6566
6729
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
6567
6730
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
6731
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
6568
6732
|
mimeType: import("convex/values").VString<string, "required">;
|
|
6569
6733
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
6570
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
6734
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
6571
6735
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
6572
6736
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
6573
6737
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -6578,6 +6742,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6578
6742
|
text: string;
|
|
6579
6743
|
} | {
|
|
6580
6744
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6745
|
+
filename?: string | undefined;
|
|
6581
6746
|
type: "file";
|
|
6582
6747
|
mimeType: string;
|
|
6583
6748
|
data: string | ArrayBuffer;
|
|
@@ -6605,6 +6770,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6605
6770
|
text: string;
|
|
6606
6771
|
} | {
|
|
6607
6772
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6773
|
+
filename?: string | undefined;
|
|
6608
6774
|
type: "file";
|
|
6609
6775
|
mimeType: string;
|
|
6610
6776
|
data: string | ArrayBuffer;
|
|
@@ -6629,6 +6795,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6629
6795
|
text: string;
|
|
6630
6796
|
} | {
|
|
6631
6797
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6798
|
+
filename?: string | undefined;
|
|
6632
6799
|
type: "file";
|
|
6633
6800
|
mimeType: string;
|
|
6634
6801
|
data: string | ArrayBuffer;
|
|
@@ -6653,6 +6820,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6653
6820
|
text: string;
|
|
6654
6821
|
} | {
|
|
6655
6822
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6823
|
+
filename?: string | undefined;
|
|
6656
6824
|
type: "file";
|
|
6657
6825
|
mimeType: string;
|
|
6658
6826
|
data: string | ArrayBuffer;
|
|
@@ -6681,15 +6849,17 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6681
6849
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
6682
6850
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
6683
6851
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6852
|
+
filename?: string | undefined;
|
|
6684
6853
|
type: "file";
|
|
6685
6854
|
mimeType: string;
|
|
6686
6855
|
data: string | ArrayBuffer;
|
|
6687
6856
|
}, {
|
|
6688
6857
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
6689
6858
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
6859
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
6690
6860
|
mimeType: import("convex/values").VString<string, "required">;
|
|
6691
6861
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
6692
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
6862
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
6693
6863
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
6694
6864
|
signature?: string | undefined;
|
|
6695
6865
|
type: "reasoning";
|
|
@@ -6719,7 +6889,7 @@ export declare const vTextArgs: import("convex/values").VObject<{
|
|
|
6719
6889
|
toolName: import("convex/values").VString<string, "required">;
|
|
6720
6890
|
args: import("convex/values").VAny<any, "required", string>;
|
|
6721
6891
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
6722
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
6892
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
6723
6893
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
6724
6894
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
6725
6895
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -6904,6 +7074,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
6904
7074
|
image: string | ArrayBuffer;
|
|
6905
7075
|
} | {
|
|
6906
7076
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7077
|
+
filename?: string | undefined;
|
|
6907
7078
|
type: "file";
|
|
6908
7079
|
mimeType: string;
|
|
6909
7080
|
data: string | ArrayBuffer;
|
|
@@ -6917,6 +7088,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
6917
7088
|
text: string;
|
|
6918
7089
|
} | {
|
|
6919
7090
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7091
|
+
filename?: string | undefined;
|
|
6920
7092
|
type: "file";
|
|
6921
7093
|
mimeType: string;
|
|
6922
7094
|
data: string | ArrayBuffer;
|
|
@@ -7008,6 +7180,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7008
7180
|
image: string | ArrayBuffer;
|
|
7009
7181
|
} | {
|
|
7010
7182
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7183
|
+
filename?: string | undefined;
|
|
7011
7184
|
type: "file";
|
|
7012
7185
|
mimeType: string;
|
|
7013
7186
|
data: string | ArrayBuffer;
|
|
@@ -7021,6 +7194,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7021
7194
|
text: string;
|
|
7022
7195
|
} | {
|
|
7023
7196
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7197
|
+
filename?: string | undefined;
|
|
7024
7198
|
type: "file";
|
|
7025
7199
|
mimeType: string;
|
|
7026
7200
|
data: string | ArrayBuffer;
|
|
@@ -7078,6 +7252,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7078
7252
|
image: string | ArrayBuffer;
|
|
7079
7253
|
} | {
|
|
7080
7254
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7255
|
+
filename?: string | undefined;
|
|
7081
7256
|
type: "file";
|
|
7082
7257
|
mimeType: string;
|
|
7083
7258
|
data: string | ArrayBuffer;
|
|
@@ -7091,6 +7266,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7091
7266
|
text: string;
|
|
7092
7267
|
} | {
|
|
7093
7268
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7269
|
+
filename?: string | undefined;
|
|
7094
7270
|
type: "file";
|
|
7095
7271
|
mimeType: string;
|
|
7096
7272
|
data: string | ArrayBuffer;
|
|
@@ -7148,6 +7324,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7148
7324
|
image: string | ArrayBuffer;
|
|
7149
7325
|
} | {
|
|
7150
7326
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7327
|
+
filename?: string | undefined;
|
|
7151
7328
|
type: "file";
|
|
7152
7329
|
mimeType: string;
|
|
7153
7330
|
data: string | ArrayBuffer;
|
|
@@ -7165,6 +7342,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7165
7342
|
image: string | ArrayBuffer;
|
|
7166
7343
|
} | {
|
|
7167
7344
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7345
|
+
filename?: string | undefined;
|
|
7168
7346
|
type: "file";
|
|
7169
7347
|
mimeType: string;
|
|
7170
7348
|
data: string | ArrayBuffer;
|
|
@@ -7179,6 +7357,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7179
7357
|
image: string | ArrayBuffer;
|
|
7180
7358
|
} | {
|
|
7181
7359
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7360
|
+
filename?: string | undefined;
|
|
7182
7361
|
type: "file";
|
|
7183
7362
|
mimeType: string;
|
|
7184
7363
|
data: string | ArrayBuffer;
|
|
@@ -7193,6 +7372,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7193
7372
|
image: string | ArrayBuffer;
|
|
7194
7373
|
} | {
|
|
7195
7374
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7375
|
+
filename?: string | undefined;
|
|
7196
7376
|
type: "file";
|
|
7197
7377
|
mimeType: string;
|
|
7198
7378
|
data: string | ArrayBuffer;
|
|
@@ -7216,15 +7396,17 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7216
7396
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
7217
7397
|
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "image" | "mimeType">, import("convex/values").VObject<{
|
|
7218
7398
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7399
|
+
filename?: string | undefined;
|
|
7219
7400
|
type: "file";
|
|
7220
7401
|
mimeType: string;
|
|
7221
7402
|
data: string | ArrayBuffer;
|
|
7222
7403
|
}, {
|
|
7223
7404
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
7224
7405
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
7406
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
7225
7407
|
mimeType: import("convex/values").VString<string, "required">;
|
|
7226
7408
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
7227
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data">, "required">], "required", never>;
|
|
7409
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "image" | "mimeType" | "data" | "filename">, "required">], "required", never>;
|
|
7228
7410
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
7229
7411
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
7230
7412
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
@@ -7235,6 +7417,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7235
7417
|
text: string;
|
|
7236
7418
|
} | {
|
|
7237
7419
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7420
|
+
filename?: string | undefined;
|
|
7238
7421
|
type: "file";
|
|
7239
7422
|
mimeType: string;
|
|
7240
7423
|
data: string | ArrayBuffer;
|
|
@@ -7262,6 +7445,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7262
7445
|
text: string;
|
|
7263
7446
|
} | {
|
|
7264
7447
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7448
|
+
filename?: string | undefined;
|
|
7265
7449
|
type: "file";
|
|
7266
7450
|
mimeType: string;
|
|
7267
7451
|
data: string | ArrayBuffer;
|
|
@@ -7286,6 +7470,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7286
7470
|
text: string;
|
|
7287
7471
|
} | {
|
|
7288
7472
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7473
|
+
filename?: string | undefined;
|
|
7289
7474
|
type: "file";
|
|
7290
7475
|
mimeType: string;
|
|
7291
7476
|
data: string | ArrayBuffer;
|
|
@@ -7310,6 +7495,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7310
7495
|
text: string;
|
|
7311
7496
|
} | {
|
|
7312
7497
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7498
|
+
filename?: string | undefined;
|
|
7313
7499
|
type: "file";
|
|
7314
7500
|
mimeType: string;
|
|
7315
7501
|
data: string | ArrayBuffer;
|
|
@@ -7338,15 +7524,17 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7338
7524
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
7339
7525
|
}, "required", "type" | "providerOptions" | "text" | `providerOptions.${string}`>, import("convex/values").VObject<{
|
|
7340
7526
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7527
|
+
filename?: string | undefined;
|
|
7341
7528
|
type: "file";
|
|
7342
7529
|
mimeType: string;
|
|
7343
7530
|
data: string | ArrayBuffer;
|
|
7344
7531
|
}, {
|
|
7345
7532
|
type: import("convex/values").VLiteral<"file", "required">;
|
|
7346
7533
|
data: import("convex/values").VUnion<string | ArrayBuffer, [import("convex/values").VString<string, "required">, import("convex/values").VBytes<ArrayBuffer, "required">], "required", never>;
|
|
7534
|
+
filename: import("convex/values").VString<string | undefined, "optional">;
|
|
7347
7535
|
mimeType: import("convex/values").VString<string, "required">;
|
|
7348
7536
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
7349
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data">, import("convex/values").VObject<{
|
|
7537
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "mimeType" | "data" | "filename">, import("convex/values").VObject<{
|
|
7350
7538
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|
|
7351
7539
|
signature?: string | undefined;
|
|
7352
7540
|
type: "reasoning";
|
|
@@ -7376,7 +7564,7 @@ export declare const vSafeObjectArgs: import("convex/values").VObject<{
|
|
|
7376
7564
|
toolName: import("convex/values").VString<string, "required">;
|
|
7377
7565
|
args: import("convex/values").VAny<any, "required", string>;
|
|
7378
7566
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
7379
|
-
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
7567
|
+
}, "required", "type" | "providerOptions" | `providerOptions.${string}` | "toolCallId" | "toolName" | "args" | `args.${string}`>], "required", "type" | "providerOptions" | "text" | `providerOptions.${string}` | "mimeType" | "data" | "filename" | "signature" | "toolCallId" | "toolName" | "args" | `args.${string}`>, "required">], "required", never>;
|
|
7380
7568
|
providerOptions: import("convex/values").VRecord<Record<string, Record<string, any>> | undefined, import("convex/values").VString<string, "required">, import("convex/values").VRecord<Record<string, any>, import("convex/values").VString<string, "required">, import("convex/values").VAny<any, "required", string>, "required", string>, "optional", string>;
|
|
7381
7569
|
}, "required", "providerOptions" | "role" | `providerOptions.${string}` | "content">, import("convex/values").VObject<{
|
|
7382
7570
|
providerOptions?: Record<string, Record<string, any>> | undefined;
|