@openai/agents-core 0.13.1 → 0.13.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/config.js +4 -6
- package/dist/config.js.map +1 -1
- package/dist/config.mjs +4 -4
- package/dist/config.mjs.map +1 -1
- package/dist/items.d.ts +270 -0
- package/dist/mcp.d.ts +6 -105
- package/dist/mcp.js +23 -170
- package/dist/mcp.js.map +1 -1
- package/dist/mcp.mjs +5 -153
- package/dist/mcp.mjs.map +1 -1
- package/dist/mcpShared.d.ts +103 -0
- package/dist/mcpShared.js +137 -0
- package/dist/mcpShared.js.map +1 -0
- package/dist/mcpShared.mjs +127 -0
- package/dist/mcpShared.mjs.map +1 -0
- package/dist/mcpToolCache.d.ts +9 -0
- package/dist/mcpToolCache.js +28 -0
- package/dist/mcpToolCache.js.map +1 -0
- package/dist/mcpToolCache.mjs +24 -0
- package/dist/mcpToolCache.mjs.map +1 -0
- package/dist/metadata.js +2 -2
- package/dist/metadata.mjs +2 -2
- package/dist/model.d.ts +25 -0
- package/dist/runState.d.ts +105 -0
- package/dist/runState.js +12 -0
- package/dist/runState.js.map +1 -1
- package/dist/runState.mjs +12 -0
- package/dist/runState.mjs.map +1 -1
- package/dist/runner/modelSettingsMerge.js +5 -1
- package/dist/runner/modelSettingsMerge.js.map +1 -1
- package/dist/runner/modelSettingsMerge.mjs +5 -1
- package/dist/runner/modelSettingsMerge.mjs.map +1 -1
- package/dist/shims/config-browser.d.ts +2 -0
- package/dist/shims/config-browser.js +11 -0
- package/dist/shims/config-browser.js.map +1 -0
- package/dist/shims/config-browser.mjs +7 -0
- package/dist/shims/config-browser.mjs.map +1 -0
- package/dist/shims/config-node.d.ts +7 -0
- package/dist/shims/config-node.js +60 -0
- package/dist/shims/config-node.js.map +1 -0
- package/dist/shims/config-node.mjs +23 -0
- package/dist/shims/config-node.mjs.map +1 -0
- package/dist/shims/config-workerd.d.ts +2 -0
- package/dist/shims/config-workerd.js +10 -0
- package/dist/shims/config-workerd.js.map +1 -0
- package/dist/shims/config-workerd.mjs +5 -0
- package/dist/shims/config-workerd.mjs.map +1 -0
- package/dist/shims/mcp-server/browser.d.ts +2 -1
- package/dist/shims/mcp-server/browser.js +4 -4
- package/dist/shims/mcp-server/browser.js.map +1 -1
- package/dist/shims/mcp-server/browser.mjs +1 -1
- package/dist/shims/mcp-server/browser.mjs.map +1 -1
- package/dist/shims/mcp-server/node.d.ts +2 -1
- package/dist/shims/mcp-server/node.js +11 -10
- package/dist/shims/mcp-server/node.js.map +1 -1
- package/dist/shims/mcp-server/node.mjs +2 -1
- package/dist/shims/mcp-server/node.mjs.map +1 -1
- package/dist/shims/shims-browser.d.ts +2 -2
- package/dist/shims/shims-browser.js +8 -11
- package/dist/shims/shims-browser.js.map +1 -1
- package/dist/shims/shims-browser.mjs +4 -8
- package/dist/shims/shims-browser.mjs.map +1 -1
- package/dist/shims/shims-node.d.ts +2 -7
- package/dist/shims/shims-node.js +7 -59
- package/dist/shims/shims-node.js.map +1 -1
- package/dist/shims/shims-node.mjs +3 -23
- package/dist/shims/shims-node.mjs.map +1 -1
- package/dist/shims/shims-workerd.d.ts +2 -7
- package/dist/shims/shims-workerd.js +8 -60
- package/dist/shims/shims-workerd.js.map +1 -1
- package/dist/shims/shims-workerd.mjs +4 -24
- package/dist/shims/shims-workerd.mjs.map +1 -1
- package/dist/tracing/provider.js +4 -1
- package/dist/tracing/provider.js.map +1 -1
- package/dist/tracing/provider.mjs +4 -1
- package/dist/tracing/provider.mjs.map +1 -1
- package/dist/types/protocol.d.ts +154 -0
- package/dist/types/protocol.js +24 -2
- package/dist/types/protocol.js.map +1 -1
- package/dist/types/protocol.mjs +22 -0
- package/dist/types/protocol.mjs.map +1 -1
- package/package.json +24 -1
package/dist/items.d.ts
CHANGED
|
@@ -25,6 +25,9 @@ export declare class RunItemBase {
|
|
|
25
25
|
providerData?: Record<string, any> | undefined;
|
|
26
26
|
format?: string | null | undefined;
|
|
27
27
|
transcript?: string | null | undefined;
|
|
28
|
+
promptCacheBreakpoint?: {
|
|
29
|
+
mode: "explicit";
|
|
30
|
+
} | undefined;
|
|
28
31
|
} | {
|
|
29
32
|
type: "image";
|
|
30
33
|
image: string;
|
|
@@ -39,6 +42,9 @@ export declare class RunItemBase {
|
|
|
39
42
|
type: "input_text";
|
|
40
43
|
text: string;
|
|
41
44
|
providerData?: Record<string, any> | undefined;
|
|
45
|
+
promptCacheBreakpoint?: {
|
|
46
|
+
mode: "explicit";
|
|
47
|
+
} | undefined;
|
|
42
48
|
} | {
|
|
43
49
|
type: "input_image";
|
|
44
50
|
providerData?: Record<string, any> | undefined;
|
|
@@ -46,6 +52,9 @@ export declare class RunItemBase {
|
|
|
46
52
|
id: string;
|
|
47
53
|
} | undefined;
|
|
48
54
|
detail?: string | undefined;
|
|
55
|
+
promptCacheBreakpoint?: {
|
|
56
|
+
mode: "explicit";
|
|
57
|
+
} | undefined;
|
|
49
58
|
} | {
|
|
50
59
|
type: "input_file";
|
|
51
60
|
providerData?: Record<string, any> | undefined;
|
|
@@ -55,6 +64,9 @@ export declare class RunItemBase {
|
|
|
55
64
|
url: string;
|
|
56
65
|
} | undefined;
|
|
57
66
|
filename?: string | undefined;
|
|
67
|
+
promptCacheBreakpoint?: {
|
|
68
|
+
mode: "explicit";
|
|
69
|
+
} | undefined;
|
|
58
70
|
} | {
|
|
59
71
|
type: "audio";
|
|
60
72
|
audio: string | {
|
|
@@ -63,6 +75,9 @@ export declare class RunItemBase {
|
|
|
63
75
|
providerData?: Record<string, any> | undefined;
|
|
64
76
|
format?: string | null | undefined;
|
|
65
77
|
transcript?: string | null | undefined;
|
|
78
|
+
promptCacheBreakpoint?: {
|
|
79
|
+
mode: "explicit";
|
|
80
|
+
} | undefined;
|
|
66
81
|
})[];
|
|
67
82
|
providerData?: Record<string, any> | undefined;
|
|
68
83
|
id?: string | undefined;
|
|
@@ -147,6 +162,9 @@ export declare class RunItemBase {
|
|
|
147
162
|
type: "input_text";
|
|
148
163
|
text: string;
|
|
149
164
|
providerData?: Record<string, any> | undefined;
|
|
165
|
+
promptCacheBreakpoint?: {
|
|
166
|
+
mode: "explicit";
|
|
167
|
+
} | undefined;
|
|
150
168
|
} | {
|
|
151
169
|
type: "input_image";
|
|
152
170
|
providerData?: Record<string, any> | undefined;
|
|
@@ -154,6 +172,9 @@ export declare class RunItemBase {
|
|
|
154
172
|
id: string;
|
|
155
173
|
} | undefined;
|
|
156
174
|
detail?: string | undefined;
|
|
175
|
+
promptCacheBreakpoint?: {
|
|
176
|
+
mode: "explicit";
|
|
177
|
+
} | undefined;
|
|
157
178
|
} | {
|
|
158
179
|
type: "input_file";
|
|
159
180
|
providerData?: Record<string, any> | undefined;
|
|
@@ -163,6 +184,9 @@ export declare class RunItemBase {
|
|
|
163
184
|
url: string;
|
|
164
185
|
} | undefined;
|
|
165
186
|
filename?: string | undefined;
|
|
187
|
+
promptCacheBreakpoint?: {
|
|
188
|
+
mode: "explicit";
|
|
189
|
+
} | undefined;
|
|
166
190
|
})[];
|
|
167
191
|
providerData?: Record<string, any> | undefined;
|
|
168
192
|
id?: string | undefined;
|
|
@@ -315,6 +339,9 @@ export declare class RunItemBase {
|
|
|
315
339
|
type: "input_text";
|
|
316
340
|
text: string;
|
|
317
341
|
providerData?: Record<string, any> | undefined;
|
|
342
|
+
promptCacheBreakpoint?: {
|
|
343
|
+
mode: "explicit";
|
|
344
|
+
} | undefined;
|
|
318
345
|
}[];
|
|
319
346
|
providerData?: Record<string, any> | undefined;
|
|
320
347
|
id?: string | undefined;
|
|
@@ -365,6 +392,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
365
392
|
providerData?: Record<string, any> | undefined;
|
|
366
393
|
format?: string | null | undefined;
|
|
367
394
|
transcript?: string | null | undefined;
|
|
395
|
+
promptCacheBreakpoint?: {
|
|
396
|
+
mode: "explicit";
|
|
397
|
+
} | undefined;
|
|
368
398
|
} | {
|
|
369
399
|
type: "image";
|
|
370
400
|
image: string;
|
|
@@ -379,6 +409,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
379
409
|
type: "input_text";
|
|
380
410
|
text: string;
|
|
381
411
|
providerData?: Record<string, any> | undefined;
|
|
412
|
+
promptCacheBreakpoint?: {
|
|
413
|
+
mode: "explicit";
|
|
414
|
+
} | undefined;
|
|
382
415
|
} | {
|
|
383
416
|
type: "input_image";
|
|
384
417
|
providerData?: Record<string, any> | undefined;
|
|
@@ -386,6 +419,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
386
419
|
id: string;
|
|
387
420
|
} | undefined;
|
|
388
421
|
detail?: string | undefined;
|
|
422
|
+
promptCacheBreakpoint?: {
|
|
423
|
+
mode: "explicit";
|
|
424
|
+
} | undefined;
|
|
389
425
|
} | {
|
|
390
426
|
type: "input_file";
|
|
391
427
|
providerData?: Record<string, any> | undefined;
|
|
@@ -395,6 +431,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
395
431
|
url: string;
|
|
396
432
|
} | undefined;
|
|
397
433
|
filename?: string | undefined;
|
|
434
|
+
promptCacheBreakpoint?: {
|
|
435
|
+
mode: "explicit";
|
|
436
|
+
} | undefined;
|
|
398
437
|
} | {
|
|
399
438
|
type: "audio";
|
|
400
439
|
audio: string | {
|
|
@@ -403,6 +442,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
403
442
|
providerData?: Record<string, any> | undefined;
|
|
404
443
|
format?: string | null | undefined;
|
|
405
444
|
transcript?: string | null | undefined;
|
|
445
|
+
promptCacheBreakpoint?: {
|
|
446
|
+
mode: "explicit";
|
|
447
|
+
} | undefined;
|
|
406
448
|
})[];
|
|
407
449
|
providerData?: Record<string, any> | undefined;
|
|
408
450
|
id?: string | undefined;
|
|
@@ -487,6 +529,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
487
529
|
type: "input_text";
|
|
488
530
|
text: string;
|
|
489
531
|
providerData?: Record<string, any> | undefined;
|
|
532
|
+
promptCacheBreakpoint?: {
|
|
533
|
+
mode: "explicit";
|
|
534
|
+
} | undefined;
|
|
490
535
|
} | {
|
|
491
536
|
type: "input_image";
|
|
492
537
|
providerData?: Record<string, any> | undefined;
|
|
@@ -494,6 +539,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
494
539
|
id: string;
|
|
495
540
|
} | undefined;
|
|
496
541
|
detail?: string | undefined;
|
|
542
|
+
promptCacheBreakpoint?: {
|
|
543
|
+
mode: "explicit";
|
|
544
|
+
} | undefined;
|
|
497
545
|
} | {
|
|
498
546
|
type: "input_file";
|
|
499
547
|
providerData?: Record<string, any> | undefined;
|
|
@@ -503,6 +551,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
503
551
|
url: string;
|
|
504
552
|
} | undefined;
|
|
505
553
|
filename?: string | undefined;
|
|
554
|
+
promptCacheBreakpoint?: {
|
|
555
|
+
mode: "explicit";
|
|
556
|
+
} | undefined;
|
|
506
557
|
})[];
|
|
507
558
|
providerData?: Record<string, any> | undefined;
|
|
508
559
|
id?: string | undefined;
|
|
@@ -655,6 +706,9 @@ export declare class RunMessageOutputItem extends RunItemBase {
|
|
|
655
706
|
type: "input_text";
|
|
656
707
|
text: string;
|
|
657
708
|
providerData?: Record<string, any> | undefined;
|
|
709
|
+
promptCacheBreakpoint?: {
|
|
710
|
+
mode: "explicit";
|
|
711
|
+
} | undefined;
|
|
658
712
|
}[];
|
|
659
713
|
providerData?: Record<string, any> | undefined;
|
|
660
714
|
id?: string | undefined;
|
|
@@ -706,6 +760,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
706
760
|
providerData?: Record<string, any> | undefined;
|
|
707
761
|
format?: string | null | undefined;
|
|
708
762
|
transcript?: string | null | undefined;
|
|
763
|
+
promptCacheBreakpoint?: {
|
|
764
|
+
mode: "explicit";
|
|
765
|
+
} | undefined;
|
|
709
766
|
} | {
|
|
710
767
|
type: "image";
|
|
711
768
|
image: string;
|
|
@@ -720,6 +777,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
720
777
|
type: "input_text";
|
|
721
778
|
text: string;
|
|
722
779
|
providerData?: Record<string, any> | undefined;
|
|
780
|
+
promptCacheBreakpoint?: {
|
|
781
|
+
mode: "explicit";
|
|
782
|
+
} | undefined;
|
|
723
783
|
} | {
|
|
724
784
|
type: "input_image";
|
|
725
785
|
providerData?: Record<string, any> | undefined;
|
|
@@ -727,6 +787,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
727
787
|
id: string;
|
|
728
788
|
} | undefined;
|
|
729
789
|
detail?: string | undefined;
|
|
790
|
+
promptCacheBreakpoint?: {
|
|
791
|
+
mode: "explicit";
|
|
792
|
+
} | undefined;
|
|
730
793
|
} | {
|
|
731
794
|
type: "input_file";
|
|
732
795
|
providerData?: Record<string, any> | undefined;
|
|
@@ -736,6 +799,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
736
799
|
url: string;
|
|
737
800
|
} | undefined;
|
|
738
801
|
filename?: string | undefined;
|
|
802
|
+
promptCacheBreakpoint?: {
|
|
803
|
+
mode: "explicit";
|
|
804
|
+
} | undefined;
|
|
739
805
|
} | {
|
|
740
806
|
type: "audio";
|
|
741
807
|
audio: string | {
|
|
@@ -744,6 +810,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
744
810
|
providerData?: Record<string, any> | undefined;
|
|
745
811
|
format?: string | null | undefined;
|
|
746
812
|
transcript?: string | null | undefined;
|
|
813
|
+
promptCacheBreakpoint?: {
|
|
814
|
+
mode: "explicit";
|
|
815
|
+
} | undefined;
|
|
747
816
|
})[];
|
|
748
817
|
providerData?: Record<string, any> | undefined;
|
|
749
818
|
id?: string | undefined;
|
|
@@ -828,6 +897,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
828
897
|
type: "input_text";
|
|
829
898
|
text: string;
|
|
830
899
|
providerData?: Record<string, any> | undefined;
|
|
900
|
+
promptCacheBreakpoint?: {
|
|
901
|
+
mode: "explicit";
|
|
902
|
+
} | undefined;
|
|
831
903
|
} | {
|
|
832
904
|
type: "input_image";
|
|
833
905
|
providerData?: Record<string, any> | undefined;
|
|
@@ -835,6 +907,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
835
907
|
id: string;
|
|
836
908
|
} | undefined;
|
|
837
909
|
detail?: string | undefined;
|
|
910
|
+
promptCacheBreakpoint?: {
|
|
911
|
+
mode: "explicit";
|
|
912
|
+
} | undefined;
|
|
838
913
|
} | {
|
|
839
914
|
type: "input_file";
|
|
840
915
|
providerData?: Record<string, any> | undefined;
|
|
@@ -844,6 +919,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
844
919
|
url: string;
|
|
845
920
|
} | undefined;
|
|
846
921
|
filename?: string | undefined;
|
|
922
|
+
promptCacheBreakpoint?: {
|
|
923
|
+
mode: "explicit";
|
|
924
|
+
} | undefined;
|
|
847
925
|
})[];
|
|
848
926
|
providerData?: Record<string, any> | undefined;
|
|
849
927
|
id?: string | undefined;
|
|
@@ -996,6 +1074,9 @@ export declare class RunToolCallItem extends RunItemBase {
|
|
|
996
1074
|
type: "input_text";
|
|
997
1075
|
text: string;
|
|
998
1076
|
providerData?: Record<string, any> | undefined;
|
|
1077
|
+
promptCacheBreakpoint?: {
|
|
1078
|
+
mode: "explicit";
|
|
1079
|
+
} | undefined;
|
|
999
1080
|
}[];
|
|
1000
1081
|
providerData?: Record<string, any> | undefined;
|
|
1001
1082
|
id?: string | undefined;
|
|
@@ -1048,6 +1129,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1048
1129
|
providerData?: Record<string, any> | undefined;
|
|
1049
1130
|
format?: string | null | undefined;
|
|
1050
1131
|
transcript?: string | null | undefined;
|
|
1132
|
+
promptCacheBreakpoint?: {
|
|
1133
|
+
mode: "explicit";
|
|
1134
|
+
} | undefined;
|
|
1051
1135
|
} | {
|
|
1052
1136
|
type: "image";
|
|
1053
1137
|
image: string;
|
|
@@ -1062,6 +1146,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1062
1146
|
type: "input_text";
|
|
1063
1147
|
text: string;
|
|
1064
1148
|
providerData?: Record<string, any> | undefined;
|
|
1149
|
+
promptCacheBreakpoint?: {
|
|
1150
|
+
mode: "explicit";
|
|
1151
|
+
} | undefined;
|
|
1065
1152
|
} | {
|
|
1066
1153
|
type: "input_image";
|
|
1067
1154
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1069,6 +1156,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1069
1156
|
id: string;
|
|
1070
1157
|
} | undefined;
|
|
1071
1158
|
detail?: string | undefined;
|
|
1159
|
+
promptCacheBreakpoint?: {
|
|
1160
|
+
mode: "explicit";
|
|
1161
|
+
} | undefined;
|
|
1072
1162
|
} | {
|
|
1073
1163
|
type: "input_file";
|
|
1074
1164
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1078,6 +1168,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1078
1168
|
url: string;
|
|
1079
1169
|
} | undefined;
|
|
1080
1170
|
filename?: string | undefined;
|
|
1171
|
+
promptCacheBreakpoint?: {
|
|
1172
|
+
mode: "explicit";
|
|
1173
|
+
} | undefined;
|
|
1081
1174
|
} | {
|
|
1082
1175
|
type: "audio";
|
|
1083
1176
|
audio: string | {
|
|
@@ -1086,6 +1179,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1086
1179
|
providerData?: Record<string, any> | undefined;
|
|
1087
1180
|
format?: string | null | undefined;
|
|
1088
1181
|
transcript?: string | null | undefined;
|
|
1182
|
+
promptCacheBreakpoint?: {
|
|
1183
|
+
mode: "explicit";
|
|
1184
|
+
} | undefined;
|
|
1089
1185
|
})[];
|
|
1090
1186
|
providerData?: Record<string, any> | undefined;
|
|
1091
1187
|
id?: string | undefined;
|
|
@@ -1170,6 +1266,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1170
1266
|
type: "input_text";
|
|
1171
1267
|
text: string;
|
|
1172
1268
|
providerData?: Record<string, any> | undefined;
|
|
1269
|
+
promptCacheBreakpoint?: {
|
|
1270
|
+
mode: "explicit";
|
|
1271
|
+
} | undefined;
|
|
1173
1272
|
} | {
|
|
1174
1273
|
type: "input_image";
|
|
1175
1274
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1177,6 +1276,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1177
1276
|
id: string;
|
|
1178
1277
|
} | undefined;
|
|
1179
1278
|
detail?: string | undefined;
|
|
1279
|
+
promptCacheBreakpoint?: {
|
|
1280
|
+
mode: "explicit";
|
|
1281
|
+
} | undefined;
|
|
1180
1282
|
} | {
|
|
1181
1283
|
type: "input_file";
|
|
1182
1284
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1186,6 +1288,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1186
1288
|
url: string;
|
|
1187
1289
|
} | undefined;
|
|
1188
1290
|
filename?: string | undefined;
|
|
1291
|
+
promptCacheBreakpoint?: {
|
|
1292
|
+
mode: "explicit";
|
|
1293
|
+
} | undefined;
|
|
1189
1294
|
})[];
|
|
1190
1295
|
providerData?: Record<string, any> | undefined;
|
|
1191
1296
|
id?: string | undefined;
|
|
@@ -1338,6 +1443,9 @@ export declare class RunToolSearchCallItem extends RunItemBase {
|
|
|
1338
1443
|
type: "input_text";
|
|
1339
1444
|
text: string;
|
|
1340
1445
|
providerData?: Record<string, any> | undefined;
|
|
1446
|
+
promptCacheBreakpoint?: {
|
|
1447
|
+
mode: "explicit";
|
|
1448
|
+
} | undefined;
|
|
1341
1449
|
}[];
|
|
1342
1450
|
providerData?: Record<string, any> | undefined;
|
|
1343
1451
|
id?: string | undefined;
|
|
@@ -1388,6 +1496,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1388
1496
|
providerData?: Record<string, any> | undefined;
|
|
1389
1497
|
format?: string | null | undefined;
|
|
1390
1498
|
transcript?: string | null | undefined;
|
|
1499
|
+
promptCacheBreakpoint?: {
|
|
1500
|
+
mode: "explicit";
|
|
1501
|
+
} | undefined;
|
|
1391
1502
|
} | {
|
|
1392
1503
|
type: "image";
|
|
1393
1504
|
image: string;
|
|
@@ -1402,6 +1513,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1402
1513
|
type: "input_text";
|
|
1403
1514
|
text: string;
|
|
1404
1515
|
providerData?: Record<string, any> | undefined;
|
|
1516
|
+
promptCacheBreakpoint?: {
|
|
1517
|
+
mode: "explicit";
|
|
1518
|
+
} | undefined;
|
|
1405
1519
|
} | {
|
|
1406
1520
|
type: "input_image";
|
|
1407
1521
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1409,6 +1523,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1409
1523
|
id: string;
|
|
1410
1524
|
} | undefined;
|
|
1411
1525
|
detail?: string | undefined;
|
|
1526
|
+
promptCacheBreakpoint?: {
|
|
1527
|
+
mode: "explicit";
|
|
1528
|
+
} | undefined;
|
|
1412
1529
|
} | {
|
|
1413
1530
|
type: "input_file";
|
|
1414
1531
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1418,6 +1535,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1418
1535
|
url: string;
|
|
1419
1536
|
} | undefined;
|
|
1420
1537
|
filename?: string | undefined;
|
|
1538
|
+
promptCacheBreakpoint?: {
|
|
1539
|
+
mode: "explicit";
|
|
1540
|
+
} | undefined;
|
|
1421
1541
|
} | {
|
|
1422
1542
|
type: "audio";
|
|
1423
1543
|
audio: string | {
|
|
@@ -1426,6 +1546,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1426
1546
|
providerData?: Record<string, any> | undefined;
|
|
1427
1547
|
format?: string | null | undefined;
|
|
1428
1548
|
transcript?: string | null | undefined;
|
|
1549
|
+
promptCacheBreakpoint?: {
|
|
1550
|
+
mode: "explicit";
|
|
1551
|
+
} | undefined;
|
|
1429
1552
|
})[];
|
|
1430
1553
|
providerData?: Record<string, any> | undefined;
|
|
1431
1554
|
id?: string | undefined;
|
|
@@ -1510,6 +1633,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1510
1633
|
type: "input_text";
|
|
1511
1634
|
text: string;
|
|
1512
1635
|
providerData?: Record<string, any> | undefined;
|
|
1636
|
+
promptCacheBreakpoint?: {
|
|
1637
|
+
mode: "explicit";
|
|
1638
|
+
} | undefined;
|
|
1513
1639
|
} | {
|
|
1514
1640
|
type: "input_image";
|
|
1515
1641
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1517,6 +1643,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1517
1643
|
id: string;
|
|
1518
1644
|
} | undefined;
|
|
1519
1645
|
detail?: string | undefined;
|
|
1646
|
+
promptCacheBreakpoint?: {
|
|
1647
|
+
mode: "explicit";
|
|
1648
|
+
} | undefined;
|
|
1520
1649
|
} | {
|
|
1521
1650
|
type: "input_file";
|
|
1522
1651
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1526,6 +1655,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1526
1655
|
url: string;
|
|
1527
1656
|
} | undefined;
|
|
1528
1657
|
filename?: string | undefined;
|
|
1658
|
+
promptCacheBreakpoint?: {
|
|
1659
|
+
mode: "explicit";
|
|
1660
|
+
} | undefined;
|
|
1529
1661
|
})[];
|
|
1530
1662
|
providerData?: Record<string, any> | undefined;
|
|
1531
1663
|
id?: string | undefined;
|
|
@@ -1678,6 +1810,9 @@ export declare class RunToolSearchOutputItem extends RunItemBase {
|
|
|
1678
1810
|
type: "input_text";
|
|
1679
1811
|
text: string;
|
|
1680
1812
|
providerData?: Record<string, any> | undefined;
|
|
1813
|
+
promptCacheBreakpoint?: {
|
|
1814
|
+
mode: "explicit";
|
|
1815
|
+
} | undefined;
|
|
1681
1816
|
}[];
|
|
1682
1817
|
providerData?: Record<string, any> | undefined;
|
|
1683
1818
|
id?: string | undefined;
|
|
@@ -1732,6 +1867,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
1732
1867
|
providerData?: Record<string, any> | undefined;
|
|
1733
1868
|
format?: string | null | undefined;
|
|
1734
1869
|
transcript?: string | null | undefined;
|
|
1870
|
+
promptCacheBreakpoint?: {
|
|
1871
|
+
mode: "explicit";
|
|
1872
|
+
} | undefined;
|
|
1735
1873
|
} | {
|
|
1736
1874
|
type: "image";
|
|
1737
1875
|
image: string;
|
|
@@ -1746,6 +1884,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
1746
1884
|
type: "input_text";
|
|
1747
1885
|
text: string;
|
|
1748
1886
|
providerData?: Record<string, any> | undefined;
|
|
1887
|
+
promptCacheBreakpoint?: {
|
|
1888
|
+
mode: "explicit";
|
|
1889
|
+
} | undefined;
|
|
1749
1890
|
} | {
|
|
1750
1891
|
type: "input_image";
|
|
1751
1892
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1753,6 +1894,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
1753
1894
|
id: string;
|
|
1754
1895
|
} | undefined;
|
|
1755
1896
|
detail?: string | undefined;
|
|
1897
|
+
promptCacheBreakpoint?: {
|
|
1898
|
+
mode: "explicit";
|
|
1899
|
+
} | undefined;
|
|
1756
1900
|
} | {
|
|
1757
1901
|
type: "input_file";
|
|
1758
1902
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1762,6 +1906,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
1762
1906
|
url: string;
|
|
1763
1907
|
} | undefined;
|
|
1764
1908
|
filename?: string | undefined;
|
|
1909
|
+
promptCacheBreakpoint?: {
|
|
1910
|
+
mode: "explicit";
|
|
1911
|
+
} | undefined;
|
|
1765
1912
|
} | {
|
|
1766
1913
|
type: "audio";
|
|
1767
1914
|
audio: string | {
|
|
@@ -1770,6 +1917,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
1770
1917
|
providerData?: Record<string, any> | undefined;
|
|
1771
1918
|
format?: string | null | undefined;
|
|
1772
1919
|
transcript?: string | null | undefined;
|
|
1920
|
+
promptCacheBreakpoint?: {
|
|
1921
|
+
mode: "explicit";
|
|
1922
|
+
} | undefined;
|
|
1773
1923
|
})[];
|
|
1774
1924
|
providerData?: Record<string, any> | undefined;
|
|
1775
1925
|
id?: string | undefined;
|
|
@@ -1854,6 +2004,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
1854
2004
|
type: "input_text";
|
|
1855
2005
|
text: string;
|
|
1856
2006
|
providerData?: Record<string, any> | undefined;
|
|
2007
|
+
promptCacheBreakpoint?: {
|
|
2008
|
+
mode: "explicit";
|
|
2009
|
+
} | undefined;
|
|
1857
2010
|
} | {
|
|
1858
2011
|
type: "input_image";
|
|
1859
2012
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1861,6 +2014,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
1861
2014
|
id: string;
|
|
1862
2015
|
} | undefined;
|
|
1863
2016
|
detail?: string | undefined;
|
|
2017
|
+
promptCacheBreakpoint?: {
|
|
2018
|
+
mode: "explicit";
|
|
2019
|
+
} | undefined;
|
|
1864
2020
|
} | {
|
|
1865
2021
|
type: "input_file";
|
|
1866
2022
|
providerData?: Record<string, any> | undefined;
|
|
@@ -1870,6 +2026,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
1870
2026
|
url: string;
|
|
1871
2027
|
} | undefined;
|
|
1872
2028
|
filename?: string | undefined;
|
|
2029
|
+
promptCacheBreakpoint?: {
|
|
2030
|
+
mode: "explicit";
|
|
2031
|
+
} | undefined;
|
|
1873
2032
|
})[];
|
|
1874
2033
|
providerData?: Record<string, any> | undefined;
|
|
1875
2034
|
id?: string | undefined;
|
|
@@ -2022,6 +2181,9 @@ export declare class RunToolCallOutputItem extends RunItemBase {
|
|
|
2022
2181
|
type: "input_text";
|
|
2023
2182
|
text: string;
|
|
2024
2183
|
providerData?: Record<string, any> | undefined;
|
|
2184
|
+
promptCacheBreakpoint?: {
|
|
2185
|
+
mode: "explicit";
|
|
2186
|
+
} | undefined;
|
|
2025
2187
|
}[];
|
|
2026
2188
|
providerData?: Record<string, any> | undefined;
|
|
2027
2189
|
id?: string | undefined;
|
|
@@ -2073,6 +2235,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2073
2235
|
providerData?: Record<string, any> | undefined;
|
|
2074
2236
|
format?: string | null | undefined;
|
|
2075
2237
|
transcript?: string | null | undefined;
|
|
2238
|
+
promptCacheBreakpoint?: {
|
|
2239
|
+
mode: "explicit";
|
|
2240
|
+
} | undefined;
|
|
2076
2241
|
} | {
|
|
2077
2242
|
type: "image";
|
|
2078
2243
|
image: string;
|
|
@@ -2087,6 +2252,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2087
2252
|
type: "input_text";
|
|
2088
2253
|
text: string;
|
|
2089
2254
|
providerData?: Record<string, any> | undefined;
|
|
2255
|
+
promptCacheBreakpoint?: {
|
|
2256
|
+
mode: "explicit";
|
|
2257
|
+
} | undefined;
|
|
2090
2258
|
} | {
|
|
2091
2259
|
type: "input_image";
|
|
2092
2260
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2094,6 +2262,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2094
2262
|
id: string;
|
|
2095
2263
|
} | undefined;
|
|
2096
2264
|
detail?: string | undefined;
|
|
2265
|
+
promptCacheBreakpoint?: {
|
|
2266
|
+
mode: "explicit";
|
|
2267
|
+
} | undefined;
|
|
2097
2268
|
} | {
|
|
2098
2269
|
type: "input_file";
|
|
2099
2270
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2103,6 +2274,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2103
2274
|
url: string;
|
|
2104
2275
|
} | undefined;
|
|
2105
2276
|
filename?: string | undefined;
|
|
2277
|
+
promptCacheBreakpoint?: {
|
|
2278
|
+
mode: "explicit";
|
|
2279
|
+
} | undefined;
|
|
2106
2280
|
} | {
|
|
2107
2281
|
type: "audio";
|
|
2108
2282
|
audio: string | {
|
|
@@ -2111,6 +2285,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2111
2285
|
providerData?: Record<string, any> | undefined;
|
|
2112
2286
|
format?: string | null | undefined;
|
|
2113
2287
|
transcript?: string | null | undefined;
|
|
2288
|
+
promptCacheBreakpoint?: {
|
|
2289
|
+
mode: "explicit";
|
|
2290
|
+
} | undefined;
|
|
2114
2291
|
})[];
|
|
2115
2292
|
providerData?: Record<string, any> | undefined;
|
|
2116
2293
|
id?: string | undefined;
|
|
@@ -2195,6 +2372,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2195
2372
|
type: "input_text";
|
|
2196
2373
|
text: string;
|
|
2197
2374
|
providerData?: Record<string, any> | undefined;
|
|
2375
|
+
promptCacheBreakpoint?: {
|
|
2376
|
+
mode: "explicit";
|
|
2377
|
+
} | undefined;
|
|
2198
2378
|
} | {
|
|
2199
2379
|
type: "input_image";
|
|
2200
2380
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2202,6 +2382,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2202
2382
|
id: string;
|
|
2203
2383
|
} | undefined;
|
|
2204
2384
|
detail?: string | undefined;
|
|
2385
|
+
promptCacheBreakpoint?: {
|
|
2386
|
+
mode: "explicit";
|
|
2387
|
+
} | undefined;
|
|
2205
2388
|
} | {
|
|
2206
2389
|
type: "input_file";
|
|
2207
2390
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2211,6 +2394,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2211
2394
|
url: string;
|
|
2212
2395
|
} | undefined;
|
|
2213
2396
|
filename?: string | undefined;
|
|
2397
|
+
promptCacheBreakpoint?: {
|
|
2398
|
+
mode: "explicit";
|
|
2399
|
+
} | undefined;
|
|
2214
2400
|
})[];
|
|
2215
2401
|
providerData?: Record<string, any> | undefined;
|
|
2216
2402
|
id?: string | undefined;
|
|
@@ -2363,6 +2549,9 @@ export declare class RunReasoningItem extends RunItemBase {
|
|
|
2363
2549
|
type: "input_text";
|
|
2364
2550
|
text: string;
|
|
2365
2551
|
providerData?: Record<string, any> | undefined;
|
|
2552
|
+
promptCacheBreakpoint?: {
|
|
2553
|
+
mode: "explicit";
|
|
2554
|
+
} | undefined;
|
|
2366
2555
|
}[];
|
|
2367
2556
|
providerData?: Record<string, any> | undefined;
|
|
2368
2557
|
id?: string | undefined;
|
|
@@ -2413,6 +2602,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2413
2602
|
providerData?: Record<string, any> | undefined;
|
|
2414
2603
|
format?: string | null | undefined;
|
|
2415
2604
|
transcript?: string | null | undefined;
|
|
2605
|
+
promptCacheBreakpoint?: {
|
|
2606
|
+
mode: "explicit";
|
|
2607
|
+
} | undefined;
|
|
2416
2608
|
} | {
|
|
2417
2609
|
type: "image";
|
|
2418
2610
|
image: string;
|
|
@@ -2427,6 +2619,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2427
2619
|
type: "input_text";
|
|
2428
2620
|
text: string;
|
|
2429
2621
|
providerData?: Record<string, any> | undefined;
|
|
2622
|
+
promptCacheBreakpoint?: {
|
|
2623
|
+
mode: "explicit";
|
|
2624
|
+
} | undefined;
|
|
2430
2625
|
} | {
|
|
2431
2626
|
type: "input_image";
|
|
2432
2627
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2434,6 +2629,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2434
2629
|
id: string;
|
|
2435
2630
|
} | undefined;
|
|
2436
2631
|
detail?: string | undefined;
|
|
2632
|
+
promptCacheBreakpoint?: {
|
|
2633
|
+
mode: "explicit";
|
|
2634
|
+
} | undefined;
|
|
2437
2635
|
} | {
|
|
2438
2636
|
type: "input_file";
|
|
2439
2637
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2443,6 +2641,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2443
2641
|
url: string;
|
|
2444
2642
|
} | undefined;
|
|
2445
2643
|
filename?: string | undefined;
|
|
2644
|
+
promptCacheBreakpoint?: {
|
|
2645
|
+
mode: "explicit";
|
|
2646
|
+
} | undefined;
|
|
2446
2647
|
} | {
|
|
2447
2648
|
type: "audio";
|
|
2448
2649
|
audio: string | {
|
|
@@ -2451,6 +2652,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2451
2652
|
providerData?: Record<string, any> | undefined;
|
|
2452
2653
|
format?: string | null | undefined;
|
|
2453
2654
|
transcript?: string | null | undefined;
|
|
2655
|
+
promptCacheBreakpoint?: {
|
|
2656
|
+
mode: "explicit";
|
|
2657
|
+
} | undefined;
|
|
2454
2658
|
})[];
|
|
2455
2659
|
providerData?: Record<string, any> | undefined;
|
|
2456
2660
|
id?: string | undefined;
|
|
@@ -2535,6 +2739,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2535
2739
|
type: "input_text";
|
|
2536
2740
|
text: string;
|
|
2537
2741
|
providerData?: Record<string, any> | undefined;
|
|
2742
|
+
promptCacheBreakpoint?: {
|
|
2743
|
+
mode: "explicit";
|
|
2744
|
+
} | undefined;
|
|
2538
2745
|
} | {
|
|
2539
2746
|
type: "input_image";
|
|
2540
2747
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2542,6 +2749,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2542
2749
|
id: string;
|
|
2543
2750
|
} | undefined;
|
|
2544
2751
|
detail?: string | undefined;
|
|
2752
|
+
promptCacheBreakpoint?: {
|
|
2753
|
+
mode: "explicit";
|
|
2754
|
+
} | undefined;
|
|
2545
2755
|
} | {
|
|
2546
2756
|
type: "input_file";
|
|
2547
2757
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2551,6 +2761,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2551
2761
|
url: string;
|
|
2552
2762
|
} | undefined;
|
|
2553
2763
|
filename?: string | undefined;
|
|
2764
|
+
promptCacheBreakpoint?: {
|
|
2765
|
+
mode: "explicit";
|
|
2766
|
+
} | undefined;
|
|
2554
2767
|
})[];
|
|
2555
2768
|
providerData?: Record<string, any> | undefined;
|
|
2556
2769
|
id?: string | undefined;
|
|
@@ -2703,6 +2916,9 @@ export declare class RunHandoffCallItem extends RunItemBase {
|
|
|
2703
2916
|
type: "input_text";
|
|
2704
2917
|
text: string;
|
|
2705
2918
|
providerData?: Record<string, any> | undefined;
|
|
2919
|
+
promptCacheBreakpoint?: {
|
|
2920
|
+
mode: "explicit";
|
|
2921
|
+
} | undefined;
|
|
2706
2922
|
}[];
|
|
2707
2923
|
providerData?: Record<string, any> | undefined;
|
|
2708
2924
|
id?: string | undefined;
|
|
@@ -2757,6 +2973,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
2757
2973
|
providerData?: Record<string, any> | undefined;
|
|
2758
2974
|
format?: string | null | undefined;
|
|
2759
2975
|
transcript?: string | null | undefined;
|
|
2976
|
+
promptCacheBreakpoint?: {
|
|
2977
|
+
mode: "explicit";
|
|
2978
|
+
} | undefined;
|
|
2760
2979
|
} | {
|
|
2761
2980
|
type: "image";
|
|
2762
2981
|
image: string;
|
|
@@ -2771,6 +2990,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
2771
2990
|
type: "input_text";
|
|
2772
2991
|
text: string;
|
|
2773
2992
|
providerData?: Record<string, any> | undefined;
|
|
2993
|
+
promptCacheBreakpoint?: {
|
|
2994
|
+
mode: "explicit";
|
|
2995
|
+
} | undefined;
|
|
2774
2996
|
} | {
|
|
2775
2997
|
type: "input_image";
|
|
2776
2998
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2778,6 +3000,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
2778
3000
|
id: string;
|
|
2779
3001
|
} | undefined;
|
|
2780
3002
|
detail?: string | undefined;
|
|
3003
|
+
promptCacheBreakpoint?: {
|
|
3004
|
+
mode: "explicit";
|
|
3005
|
+
} | undefined;
|
|
2781
3006
|
} | {
|
|
2782
3007
|
type: "input_file";
|
|
2783
3008
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2787,6 +3012,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
2787
3012
|
url: string;
|
|
2788
3013
|
} | undefined;
|
|
2789
3014
|
filename?: string | undefined;
|
|
3015
|
+
promptCacheBreakpoint?: {
|
|
3016
|
+
mode: "explicit";
|
|
3017
|
+
} | undefined;
|
|
2790
3018
|
} | {
|
|
2791
3019
|
type: "audio";
|
|
2792
3020
|
audio: string | {
|
|
@@ -2795,6 +3023,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
2795
3023
|
providerData?: Record<string, any> | undefined;
|
|
2796
3024
|
format?: string | null | undefined;
|
|
2797
3025
|
transcript?: string | null | undefined;
|
|
3026
|
+
promptCacheBreakpoint?: {
|
|
3027
|
+
mode: "explicit";
|
|
3028
|
+
} | undefined;
|
|
2798
3029
|
})[];
|
|
2799
3030
|
providerData?: Record<string, any> | undefined;
|
|
2800
3031
|
id?: string | undefined;
|
|
@@ -2879,6 +3110,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
2879
3110
|
type: "input_text";
|
|
2880
3111
|
text: string;
|
|
2881
3112
|
providerData?: Record<string, any> | undefined;
|
|
3113
|
+
promptCacheBreakpoint?: {
|
|
3114
|
+
mode: "explicit";
|
|
3115
|
+
} | undefined;
|
|
2882
3116
|
} | {
|
|
2883
3117
|
type: "input_image";
|
|
2884
3118
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2886,6 +3120,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
2886
3120
|
id: string;
|
|
2887
3121
|
} | undefined;
|
|
2888
3122
|
detail?: string | undefined;
|
|
3123
|
+
promptCacheBreakpoint?: {
|
|
3124
|
+
mode: "explicit";
|
|
3125
|
+
} | undefined;
|
|
2889
3126
|
} | {
|
|
2890
3127
|
type: "input_file";
|
|
2891
3128
|
providerData?: Record<string, any> | undefined;
|
|
@@ -2895,6 +3132,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
2895
3132
|
url: string;
|
|
2896
3133
|
} | undefined;
|
|
2897
3134
|
filename?: string | undefined;
|
|
3135
|
+
promptCacheBreakpoint?: {
|
|
3136
|
+
mode: "explicit";
|
|
3137
|
+
} | undefined;
|
|
2898
3138
|
})[];
|
|
2899
3139
|
providerData?: Record<string, any> | undefined;
|
|
2900
3140
|
id?: string | undefined;
|
|
@@ -3047,6 +3287,9 @@ export declare class RunHandoffOutputItem extends RunItemBase {
|
|
|
3047
3287
|
type: "input_text";
|
|
3048
3288
|
text: string;
|
|
3049
3289
|
providerData?: Record<string, any> | undefined;
|
|
3290
|
+
promptCacheBreakpoint?: {
|
|
3291
|
+
mode: "explicit";
|
|
3292
|
+
} | undefined;
|
|
3050
3293
|
}[];
|
|
3051
3294
|
providerData?: Record<string, any> | undefined;
|
|
3052
3295
|
id?: string | undefined;
|
|
@@ -3115,6 +3358,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3115
3358
|
providerData?: Record<string, any> | undefined;
|
|
3116
3359
|
format?: string | null | undefined;
|
|
3117
3360
|
transcript?: string | null | undefined;
|
|
3361
|
+
promptCacheBreakpoint?: {
|
|
3362
|
+
mode: "explicit";
|
|
3363
|
+
} | undefined;
|
|
3118
3364
|
} | {
|
|
3119
3365
|
type: "image";
|
|
3120
3366
|
image: string;
|
|
@@ -3129,6 +3375,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3129
3375
|
type: "input_text";
|
|
3130
3376
|
text: string;
|
|
3131
3377
|
providerData?: Record<string, any> | undefined;
|
|
3378
|
+
promptCacheBreakpoint?: {
|
|
3379
|
+
mode: "explicit";
|
|
3380
|
+
} | undefined;
|
|
3132
3381
|
} | {
|
|
3133
3382
|
type: "input_image";
|
|
3134
3383
|
providerData?: Record<string, any> | undefined;
|
|
@@ -3136,6 +3385,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3136
3385
|
id: string;
|
|
3137
3386
|
} | undefined;
|
|
3138
3387
|
detail?: string | undefined;
|
|
3388
|
+
promptCacheBreakpoint?: {
|
|
3389
|
+
mode: "explicit";
|
|
3390
|
+
} | undefined;
|
|
3139
3391
|
} | {
|
|
3140
3392
|
type: "input_file";
|
|
3141
3393
|
providerData?: Record<string, any> | undefined;
|
|
@@ -3145,6 +3397,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3145
3397
|
url: string;
|
|
3146
3398
|
} | undefined;
|
|
3147
3399
|
filename?: string | undefined;
|
|
3400
|
+
promptCacheBreakpoint?: {
|
|
3401
|
+
mode: "explicit";
|
|
3402
|
+
} | undefined;
|
|
3148
3403
|
} | {
|
|
3149
3404
|
type: "audio";
|
|
3150
3405
|
audio: string | {
|
|
@@ -3153,6 +3408,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3153
3408
|
providerData?: Record<string, any> | undefined;
|
|
3154
3409
|
format?: string | null | undefined;
|
|
3155
3410
|
transcript?: string | null | undefined;
|
|
3411
|
+
promptCacheBreakpoint?: {
|
|
3412
|
+
mode: "explicit";
|
|
3413
|
+
} | undefined;
|
|
3156
3414
|
})[];
|
|
3157
3415
|
providerData?: Record<string, any> | undefined;
|
|
3158
3416
|
id?: string | undefined;
|
|
@@ -3237,6 +3495,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3237
3495
|
type: "input_text";
|
|
3238
3496
|
text: string;
|
|
3239
3497
|
providerData?: Record<string, any> | undefined;
|
|
3498
|
+
promptCacheBreakpoint?: {
|
|
3499
|
+
mode: "explicit";
|
|
3500
|
+
} | undefined;
|
|
3240
3501
|
} | {
|
|
3241
3502
|
type: "input_image";
|
|
3242
3503
|
providerData?: Record<string, any> | undefined;
|
|
@@ -3244,6 +3505,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3244
3505
|
id: string;
|
|
3245
3506
|
} | undefined;
|
|
3246
3507
|
detail?: string | undefined;
|
|
3508
|
+
promptCacheBreakpoint?: {
|
|
3509
|
+
mode: "explicit";
|
|
3510
|
+
} | undefined;
|
|
3247
3511
|
} | {
|
|
3248
3512
|
type: "input_file";
|
|
3249
3513
|
providerData?: Record<string, any> | undefined;
|
|
@@ -3253,6 +3517,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3253
3517
|
url: string;
|
|
3254
3518
|
} | undefined;
|
|
3255
3519
|
filename?: string | undefined;
|
|
3520
|
+
promptCacheBreakpoint?: {
|
|
3521
|
+
mode: "explicit";
|
|
3522
|
+
} | undefined;
|
|
3256
3523
|
})[];
|
|
3257
3524
|
providerData?: Record<string, any> | undefined;
|
|
3258
3525
|
id?: string | undefined;
|
|
@@ -3405,6 +3672,9 @@ export declare class RunToolApprovalItem extends RunItemBase {
|
|
|
3405
3672
|
type: "input_text";
|
|
3406
3673
|
text: string;
|
|
3407
3674
|
providerData?: Record<string, any> | undefined;
|
|
3675
|
+
promptCacheBreakpoint?: {
|
|
3676
|
+
mode: "explicit";
|
|
3677
|
+
} | undefined;
|
|
3408
3678
|
}[];
|
|
3409
3679
|
providerData?: Record<string, any> | undefined;
|
|
3410
3680
|
id?: string | undefined;
|