-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdiff.txt
More file actions
4400 lines (4400 loc) · 154 KB
/
Copy pathdiff.txt
File metadata and controls
4400 lines (4400 loc) · 154 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
diff --git a/openapi.json b/openapi.json
index c45dfd4..a713c40 100644
--- a/openapi.json
+++ b/openapi.json
@@ -2,7 +2,7 @@
"openapi": "3.0.3",
"info": {
"title": "Gemini API",
- "description": "The Gemini Interactions API that allows developers to build generative AI applications using Gemini models. Gemini is our most capable model, built from the ground up to be multimodal. It can generalize and seamlessly understand, operate across, and combine different types of information including language, images, audio, video, and code. You can use the Gemini API for use cases like reasoning across text and images, content generation, dialogue agents, summarization and classification systems, and more.",
+ "description": "The Gemini Interactions API allows developers to build generative AI applications using Gemini models. Gemini is our most capable model, built from the ground up to be multimodal. It can generalize and seamlessly understand, operate across, and combine different types of information including language, images, audio, video, and code. You can use the Gemini API for use cases like reasoning across text and images, content generation, dialogue agents, summarization and classification systems, and more.",
"version": "v1beta",
"x-google-revision": "0"
},
@@ -1116,12 +1116,22 @@
"cancel": {
"summary": "Cancel Interaction",
"value": {
- "id": "v1_ChdPU0F4YWFtNkFwS2kxZThQZ05lbXdROBIXT1NBeGFhbTZBcEtpMWU4UGdOZW13UTg",
+ "id": "v1_ChdVc0E0YXJTYk1zYlV6N0lQcXRXVG1BYxIXVXNBNGFyU2JNc2JVejdJUHF0V1RtQWM",
"agent": "deep-research-pro-preview-12-2025",
"status": "cancelled",
- "object": "interaction",
- "created": "2025-11-26T12:25:15Z",
- "updated": "2025-11-26T12:25:15Z"
+ "created": "2026-06-22T04:55:47Z",
+ "updated": "2026-06-22T04:55:47Z",
+ "steps": [
+ {
+ "type": "user_input",
+ "content": [
+ {
+ "type": "text",
+ "text": "Research the history of the Google TPUs with a focus on 2025 specs."
+ }
+ ]
+ }
+ ]
}
}
}
@@ -1554,15 +1564,6 @@
"in": "path",
"required": true
},
- "google_genai_api_revision": {
- "name": "Api-Revision",
- "in": "header",
- "schema": {
- "type": "string"
- },
- "description": "API revision header to send with Google GenAI API requests.",
- "x-speakeasy-name-override": "api_revision"
- },
"google_genai_user_project": {
"name": "x-goog-user-project",
"in": "header",
@@ -1581,14 +1582,14 @@
"schema": {
"type": "object",
"properties": {
- "apiKey": {
- "type": "string",
- "description": "Gemini API key sent as x-goog-api-key."
- },
"accessToken": {
"type": "string",
"description": "OAuth access token sent as a bearer Authorization header."
},
+ "apiKey": {
+ "type": "string",
+ "description": "Gemini API key sent as x-goog-api-key."
+ },
"defaultHeaders": {
"type": "object",
"additionalProperties": {
@@ -1607,29 +1608,10 @@
"description": "An agent definition for the CreateAgent API.\nThis message is the target for annotation-parser-based JSON parsing.\nNew format:\n {\n \"id\": \"customer-sentinel\",\n \"base_agent\": \"\",\n \"system_instruction\": \"...\",\n \"base_environment\": { \"type\": \"remote\", \"sources\": [...] },\n \"tools\": [ {\"type\": \"code_execution\"} ]\n }",
"type": "object",
"properties": {
- "id": {
- "description": "The unique identifier for the agent.",
- "type": "string"
- },
"base_agent": {
"description": "The base agent to extend.",
"type": "string"
},
- "system_instruction": {
- "description": "System instruction for the agent.",
- "type": "string"
- },
- "description": {
- "description": "Agent description for developers to quickly read and understand.",
- "type": "string"
- },
- "tools": {
- "description": "The tools available to the agent.",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/AgentTool"
- }
- },
"base_environment": {
"description": "The environment configuration for the agent.",
"oneOf": [
@@ -1643,6 +1625,25 @@
"discriminator": {
"propertyName": "type"
}
+ },
+ "description": {
+ "description": "Agent description for developers to quickly read and understand.",
+ "type": "string"
+ },
+ "id": {
+ "description": "The unique identifier for the agent.",
+ "type": "string"
+ },
+ "system_instruction": {
+ "description": "System instruction for the agent.",
+ "type": "string"
+ },
+ "tools": {
+ "description": "The tools available to the agent.",
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/AgentTool"
+ }
}
},
"x-speakeasy-model-namespace": "agents",
@@ -1753,15 +1754,27 @@
"type": "string"
},
"transform": {
- "description": "Headers to inject on all outbound requests matching this domain. Each entry is a flat {header_name: header_value} object. The egress proxy injects these automatically.",
- "type": "array",
- "items": {
- "type": "object",
- "additionalProperties": {
- "type": "string"
+ "description": "Headers to inject on all outbound requests matching this domain. Accepts a single dict or a list of dicts. The egress proxy injects these automatically.",
+ "oneOf": [
+ {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "A single header injection mapping, e.g., {\"Authorization\": \"Bearer token\"}."
},
- "description": "A single header to inject, e.g. {'Authorization': 'Bearer token'} or {'x-goog-api-key': 'key'}."
- }
+ {
+ "type": "array",
+ "items": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "A single header to inject."
+ },
+ "description": "A list of headers to inject."
+ }
+ ]
}
},
"required": [
@@ -1797,11 +1810,11 @@
"ArgumentsDelta": {
"type": "object",
"properties": {
- "type": {
- "const": "arguments_delta"
- },
"arguments": {
"type": "string"
+ },
+ "type": {
+ "const": "arguments_delta"
}
},
"required": [
@@ -1813,8 +1826,10 @@
"description": "An audio content block.",
"type": "object",
"properties": {
- "type": {
- "const": "audio"
+ "channels": {
+ "description": "The number of audio channels.",
+ "type": "integer",
+ "format": "int32"
},
"data": {
"description": "The audio content.",
@@ -1822,10 +1837,6 @@
"format": "byte",
"x-speakeasy-base64-input-mode": "file"
},
- "uri": {
- "description": "The URI of the audio.",
- "type": "string"
- },
"mime_type": {
"description": "The mime type of the audio.",
"type": "string",
@@ -1858,15 +1869,17 @@
"audio/mulaw"
]
},
- "channels": {
- "description": "The number of audio channels.",
- "type": "integer",
- "format": "int32"
- },
"sample_rate": {
"description": "The sample rate of the audio.",
"type": "integer",
"format": "int32"
+ },
+ "type": {
+ "const": "audio"
+ },
+ "uri": {
+ "description": "The URI of the audio.",
+ "type": "string"
}
},
"required": [
@@ -1895,17 +1908,16 @@
"AudioDelta": {
"type": "object",
"properties": {
- "type": {
- "const": "audio"
+ "channels": {
+ "description": "The number of audio channels.",
+ "type": "integer",
+ "format": "int32"
},
"data": {
"type": "string",
"format": "byte",
"x-speakeasy-base64-input-mode": "file"
},
- "uri": {
- "type": "string"
- },
"mime_type": {
"type": "string",
"x-google-enum-descriptions": [
@@ -1948,10 +1960,11 @@
"type": "integer",
"format": "int32"
},
- "channels": {
- "description": "The number of audio channels.",
- "type": "integer",
- "format": "int32"
+ "type": {
+ "const": "audio"
+ },
+ "uri": {
+ "type": "string"
}
},
"required": [
@@ -1963,8 +1976,22 @@
"description": "Configuration for audio output format.",
"type": "object",
"properties": {
- "type": {
- "const": "audio"
+ "bit_rate": {
+ "description": "Bit rate in bits per second (bps). Only applicable for compressed formats\n(MP3, Opus).",
+ "type": "integer",
+ "format": "int32"
+ },
+ "delivery": {
+ "description": "The delivery mode for the audio output.",
+ "type": "string",
+ "x-google-enum-descriptions": [
+ "Audio data is returned inline in the response.",
+ "Audio data is returned as a URI."
+ ],
+ "enum": [
+ "inline",
+ "uri"
+ ]
},
"mime_type": {
"description": "The MIME type of the audio output.",
@@ -1986,27 +2013,13 @@
"audio/mulaw"
]
},
- "delivery": {
- "description": "The delivery mode for the audio output.",
- "type": "string",
- "x-google-enum-descriptions": [
- "Audio data is returned inline in the response.",
- "Audio data is returned as a URI."
- ],
- "enum": [
- "inline",
- "uri"
- ]
- },
"sample_rate": {
"description": "Sample rate in Hz.",
"type": "integer",
"format": "int32"
},
- "bit_rate": {
- "description": "Bit rate in bits per second (bps). Only applicable for compressed formats\n(MP3, Opus).",
- "type": "integer",
- "format": "int32"
+ "type": {
+ "const": "audio"
}
},
"required": [
@@ -2065,6 +2078,10 @@
"description": "The arguments to pass to the code execution.",
"type": "object",
"properties": {
+ "code": {
+ "description": "The code to be executed.",
+ "type": "string"
+ },
"language": {
"description": "Programming language of the `code`.",
"type": "string",
@@ -2074,10 +2091,6 @@
"enum": [
"python"
]
- },
- "code": {
- "description": "The code to be executed.",
- "type": "string"
}
},
"x-speakeasy-model-namespace": "interactions"
@@ -2085,9 +2098,6 @@
"CodeExecutionCallDelta": {
"type": "object",
"properties": {
- "type": {
- "const": "code_execution_call"
- },
"arguments": {
"$ref": "#/components/schemas/CodeExecutionCallArguments"
},
@@ -2096,6 +2106,9 @@
"type": "string",
"format": "byte",
"x-speakeasy-base64-input-mode": "file"
+ },
+ "type": {
+ "const": "code_execution_call"
}
},
"required": [
@@ -2108,9 +2121,6 @@
"description": "Code execution call step.",
"type": "object",
"properties": {
- "type": {
- "const": "code_execution_call"
- },
"arguments": {
"description": "Required. The arguments to pass to the code execution.",
"$ref": "#/components/schemas/CodeExecutionCallStepArguments"
@@ -2124,6 +2134,9 @@
"type": "string",
"format": "byte",
"x-speakeasy-base64-input-mode": "file"
+ },
+ "type": {
+ "const": "code_execution_call"
}
},
"required": [
@@ -2157,6 +2170,10 @@
"description": "The arguments to pass to the code execution.",
"type": "object",
"properties": {
+ "code": {
+ "description": "The code to be executed.",
+ "type": "string"
+ },
"language": {
"description": "Programming language of the `code`.",
"type": "string",
@@ -2166,10 +2183,6 @@
"enum": [
"python"
]
- },
- "code": {
- "description": "The code to be executed.",
- "type": "string"
}
},
"x-speakeasy-model-namespace": "interactions",
@@ -2184,20 +2197,20 @@
"CodeExecutionResultDelta": {
"type": "object",
"properties": {
- "type": {
- "const": "code_execution_result"
+ "is_error": {
+ "type": "boolean"
},
"result": {
"type": "string"
},
- "is_error": {
- "type": "boolean"
- },
"signature": {
"description": "A signature hash for backend validation.",
"type": "string",
"format": "byte",
"x-speakeasy-base64-input-mode": "file"
+ },
+ "type": {
+ "const": "code_execution_result"
}
},
"required": [
@@ -2210,19 +2223,16 @@
"description": "Code execution result step.",
"type": "object",
"properties": {
- "type": {
- "const": "code_execution_result"
- },
- "result": {
- "description": "Required. The output of the code execution.",
+ "call_id": {
+ "description": "Required. ID to match the ID from the function call block.",
"type": "string"
},
"is_error": {
"description": "Whether the code execution resulted in an error.",
"type": "boolean"
},
- "call_id": {
- "description": "Required. ID to match the ID from the function call block.",
+ "result": {
+ "description": "Required. The output of the code execution.",
"type": "string"
},
"signature": {
@@ -2230,6 +2240,9 @@
"type": "string",
"format": "byte",
"x-speakeasy-base64-input-mode": "file"
+ },
+ "type": {
+ "const": "code_execution_result"
}
},
"required": [
@@ -2261,8 +2274,34 @@
"description": "A tool that can be used by the model to interact with the computer.",
"type": "object",
"properties": {
- "type": {
- "const": "computer_use"
+ "disabled_safety_policies": {
+ "description": "Optional. Disabled safety policies for computer use.",
+ "type": "array",
+ "items": {
+ "type": "string",
+ "x-google-enum-descriptions": [
+ "Safety policy for financial transactions.",
+ "Safety policy for sensitive data modification.",
+ "Safety policy for communication tools (e.g. Gmail, Chat, Meet).",
+ "Safety policy for account creation.",
+ "Safety policy for data modification.",
+ "Safety policy for user consent management.",
+ "Safety policy for legal terms and agreements."
+ ],
+ "enum": [
+ "financial_transactions",
+ "sensitive_data_modification",
+ "communication_tool",
+ "account_creation",
+ "data_modification",
+ "user_consent_management",
+ "legal_terms_and_agreements"
+ ]
+ }
+ },
+ "enable_prompt_injection_detection": {
+ "description": "Whether enable the prompt injection detection check on computer-use\nrequest.",
+ "type": "boolean"
},
"environment": {
"description": "The environment being operated.",
@@ -2285,9 +2324,8 @@
"type": "string"
}
},
- "enable_prompt_injection_detection": {
- "description": "Whether enable the prompt injection detection check on computer-use\nrequest.",
- "type": "boolean"
+ "type": {
+ "const": "computer_use"
}
},
"required": [
@@ -2346,13 +2384,6 @@
"ContentDelta": {
"type": "object",
"properties": {
- "event_type": {
- "const": "content.delta"
- },
- "index": {
- "type": "integer",
- "format": "int32"
- },
"delta": {
"$ref": "#/components/schemas/ContentDeltaData"
},
@@ -2360,6 +2391,13 @@
"description": "The event_id token to be used to resume the interaction stream, from\nthis event.",
"type": "string"
},
+ "event_type": {
+ "const": "content.delta"
+ },
+ "index": {
+ "type": "integer",
+ "format": "int32"
+ },
"metadata": {
"description": "Optional metadata accompanying ANY streamed event.",
"$ref": "#/components/schemas/StreamMetadata"
@@ -2466,20 +2504,20 @@
"ContentStart": {
"type": "object",
"properties": {
- "event_type": {
- "const": "content.start"
- },
- "index": {
- "type": "integer",
- "format": "int32"
- },
- "content": {
- "$ref": "#/components/schemas/Content"
+ "content": {
+ "$ref": "#/components/schemas/Content"
},
"event_id": {
"description": "The event_id token to be used to resume the interaction stream, from\nthis event.",
"type": "string"
},
+ "event_type": {
+ "const": "content.start"
+ },
+ "index": {
+ "type": "integer",
+ "format": "int32"
+ },
"metadata": {
"description": "Optional metadata accompanying ANY streamed event.",
"$ref": "#/components/schemas/StreamMetadata"
@@ -2509,6 +2547,10 @@
"ContentStop": {
"type": "object",
"properties": {
+ "event_id": {
+ "description": "The event_id token to be used to resume the interaction stream, from\nthis event.",
+ "type": "string"
+ },
"event_type": {
"const": "content.stop"
},
@@ -2516,10 +2558,6 @@
"type": "integer",
"format": "int32"
},
- "event_id": {
- "description": "The event_id token to be used to resume the interaction stream, from\nthis event.",
- "type": "string"
- },
"metadata": {
"description": "Optional metadata accompanying ANY streamed event.",
"$ref": "#/components/schemas/StreamMetadata"
@@ -2549,26 +2587,110 @@
"$ref": "#/components/schemas/AgentOption",
"description": "The name of the `Agent` used for generating the interaction."
},
- "stream": {
- "description": "Input only. Whether the interaction will be streamed.",
- "writeOnly": true,
- "type": "boolean"
- },
- "store": {
- "description": "Input only. Whether to store the response and request for later retrieval.",
- "writeOnly": true,
- "type": "boolean"
+ "agent_config": {
+ "description": "Configuration parameters for the agent interaction.",
+ "oneOf": [
+ {
+ "$ref": "#/components/schemas/DynamicAgentConfig"
+ },
+ {
+ "$ref": "#/components/schemas/DeepResearchAgentConfig"
+ }
+ ],
+ "discriminator": {
+ "propertyName": "type"
+ }
},
"background": {
"description": "Input only. Whether to run the model interaction in the background.",
"writeOnly": true,
"type": "boolean"
},
+ "created": {
+ "description": "Required. Output only. The time at which the response was created in ISO 8601 format\n(YYYY-MM-DDThh:mm:ssZ).",
+ "readOnly": true,
+ "type": "string",
+ "format": "date-time"
+ },
+ "environment": {
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "$ref": "#/components/schemas/EnvironmentConfig"
+ }
+ ],
+ "description": "The environment configuration for the interaction. Can be an object specifying remote environment sources or a string referencing an existing environment ID."
+ },
+ "environment_id": {
+ "description": "Output only. The environment ID for the interaction. Only populated if environment\nconfig is set in the request.",
+ "readOnly": true,
+ "type": "string"
+ },
"id": {
"description": "Required. Output only. A unique identifier for the interaction completion.",
"readOnly": true,
"type": "string"
},
+ "input": {
+ "$ref": "#/components/schemas/InteractionsInput"
+ },
+ "labels": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "The labels with user-defined metadata for the request."
+ },
+ "previous_interaction_id": {
+ "description": "The ID of the previous interaction, if any.",
+ "type": "string"
+ },
+ "response_format": {
+ "description": "Enforces that the generated response is a JSON object that complies with the JSON schema specified in this field.",
+ "oneOf": [
+ {
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/ResponseFormat"
+ },
+ "example": [
+ {
+ "type": "text",
+ "mime_type": "application/json"
+ }
+ ],
+ "x-speakeasy-model-namespace": "interactions"
+ },
+ {
+ "$ref": "#/components/schemas/ResponseFormat"
+ }
+ ]
+ },
+ "response_mime_type": {
+ "description": "The mime type of the response. This is required if response_format is set.",
+ "deprecated": true,
+ "type": "string"
+ },
+ "response_modalities": {
+ "description": "The requested modalities of the response (TEXT, IMAGE, AUDIO).",
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/ResponseModality"
+ }
+ },
+ "safety_settings": {
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/SafetySetting"
+ },
+ "description": "Safety settings for the interaction."
+ },
+ "service_tier": {
+ "$ref": "#/components/schemas/ServiceTier",
+ "description": "The service tier for the interaction."
+ },
"status": {
"description": "Required. Output only. The status of the interaction.",
"readOnly": true,
@@ -2592,17 +2714,15 @@
"budget_exceeded"
]
},
- "created": {
- "description": "Required. Output only. The time at which the response was created in ISO 8601 format\n(YYYY-MM-DDThh:mm:ssZ).",
- "readOnly": true,
- "type": "string",
- "format": "date-time"
+ "store": {
+ "description": "Input only. Whether to store the response and request for later retrieval.",
+ "writeOnly": true,
+ "type": "boolean"
},
- "updated": {
- "description": "Required. Output only. The time at which the response was last updated in ISO 8601 format\n(YYYY-MM-DDThh:mm:ssZ).",
- "readOnly": true,
- "type": "string",
- "format": "date-time"
+ "stream": {
+ "description": "Input only. Whether the interaction will be streamed.",
+ "writeOnly": true,
+ "type": "boolean"
},
"system_instruction": {
"description": "System instruction for the interaction.",
@@ -2615,83 +2735,15 @@
"$ref": "#/components/schemas/Tool"
}
},
- "response_modalities": {
- "description": "The requested modalities of the response (TEXT, IMAGE, AUDIO).",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/ResponseModality"
- }
- },
- "response_mime_type": {
- "description": "The mime type of the response. This is required if response_format is set.",
- "deprecated": true,
- "type": "string"
- },
- "previous_interaction_id": {
- "description": "The ID of the previous interaction, if any.",
- "type": "string"
- },
- "environment_id": {
- "description": "Output only. The environment ID for the interaction. Only populated if environment\nconfig is set in the request.",
+ "updated": {
+ "description": "Required. Output only. The time at which the response was last updated in ISO 8601 format\n(YYYY-MM-DDThh:mm:ssZ).",
"readOnly": true,
- "type": "string"
- },
- "service_tier": {
- "$ref": "#/components/schemas/ServiceTier",
- "description": "The service tier for the interaction."
+ "type": "string",
+ "format": "date-time"
},
"webhook_config": {
"$ref": "#/components/schemas/WebhookConfig",
"description": "Optional. Webhook configuration for receiving notifications when the\ninteraction completes."
- },
- "response_format": {
- "description": "Enforces that the generated response is a JSON object that complies with the JSON schema specified in this field.",
- "oneOf": [
- {
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/ResponseFormat"
- },
- "example": [
- {
- "type": "text",
- "mime_type": "application/json"
- }
- ],
- "x-speakeasy-model-namespace": "interactions"
- },
- {
- "$ref": "#/components/schemas/ResponseFormat"
- }
- ]
- },
- "environment": {
- "oneOf": [
- {
- "type": "string"
- },
- {
- "$ref": "#/components/schemas/EnvironmentConfig"
- }
- ],
- "description": "The environment configuration for the interaction. Can be an object specifying remote environment sources or a string referencing an existing environment ID."
- },
- "agent_config": {
- "description": "Configuration parameters for the agent interaction.",
- "oneOf": [
- {
- "$ref": "#/components/schemas/DynamicAgentConfig"
- },
- {
- "$ref": "#/components/schemas/DeepResearchAgentConfig"
- }
- ],
- "discriminator": {
- "propertyName": "type"
- }
- },
- "input": {
- "$ref": "#/components/schemas/InteractionsInput"
}
},
"required": [
@@ -2716,105 +2768,65 @@
"CreateModelInteractionParams": {
"description": "Parameters for creating model interactions",
"properties": {
- "model": {
- "$ref": "#/components/schemas/ModelOption",
- "description": "The name of the `Model` used for generating the interaction."
- },
- "stream": {
- "description": "Input only. Whether the interaction will be streamed.",
- "writeOnly": true,
- "type": "boolean"
- },
- "store": {
- "description": "Input only. Whether to store the response and request for later retrieval.",
- "writeOnly": true,
- "type": "boolean"
- },
"background": {
"description": "Input only. Whether to run the model interaction in the background.",
"writeOnly": true,
"type": "boolean"
},
- "id": {
- "description": "Required. Output only. A unique identifier for the interaction completion.",
- "readOnly": true,
+ "cached_content": {
+ "description": "The name of the cached content used as context to serve the prediction.\nNote: only used in explicit caching, where users can have control over\ncaching (e.g. what content to cache) and enjoy guaranteed cost savings.\nFormat:\n`projects/{project}/locations/{location}/cachedContents/{cachedContent}`",
"type": "string"
},
- "status": {
- "description": "Required. Output only. The status of the interaction.",
- "readOnly": true,
- "type": "string",
- "x-google-enum-descriptions": [
- "The interaction is in progress.",
- "The interaction requires action/input from the user.",
- "The interaction is completed.",
- "The interaction failed.",
- "The interaction was cancelled.",
- "The interaction is completed, but contains incomplete results (e.g.\nhitting max_tokens).",
- "The interaction was halted because the token budget was exceeded."
- ],
- "enum": [
- "in_progress",
- "requires_action",
- "completed",
- "failed",
- "cancelled",
- "incomplete",
- "budget_exceeded"
- ]
- },
"created": {
"description": "Required. Output only. The time at which the response was created in ISO 8601 format\n(YYYY-MM-DDThh:mm:ssZ).",
"readOnly": true,
"type": "string",
"format": "date-time"
},
- "updated": {
- "description": "Required. Output only. The time at which the response was last updated in ISO 8601 format\n(YYYY-MM-DDThh:mm:ssZ).",
+ "environment": {
+ "oneOf": [
+ {
+ "type": "string"
+ },
+ {
+ "$ref": "#/components/schemas/EnvironmentConfig"
+ }
+ ],
+ "description": "The environment configuration for the interaction. Can be an object specifying remote environment sources or a string referencing an existing environment ID."
+ },
+ "environment_id": {
+ "description": "Output only. The environment ID for the interaction. Only populated if environment\nconfig is set in the request.",
"readOnly": true,
- "type": "string",
- "format": "date-time"
+ "type": "string"
},
- "system_instruction": {
- "description": "System instruction for the interaction.",
+ "generation_config": {
+ "$ref": "#/components/schemas/GenerationConfig",
+ "description": "Input only. Configuration parameters for the model interaction.",
+ "writeOnly": true
+ },
+ "id": {
+ "description": "Required. Output only. A unique identifier for the interaction completion.",
+ "readOnly": true,
"type": "string"
},
- "tools": {
- "description": "A list of tool declarations the model may call during interaction.",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/Tool"
- }
+ "input": {
+ "$ref": "#/components/schemas/InteractionsInput"
},
- "response_modalities": {
- "description": "The requested modalities of the response (TEXT, IMAGE, AUDIO).",
- "type": "array",
- "items": {
- "$ref": "#/components/schemas/ResponseModality"
- }
+ "labels": {
+ "type": "object",
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "The labels with user-defined metadata for the request."
},
- "response_mime_type": {
- "description": "The mime type of the response. This is required if response_format is set.",
- "deprecated": true,
- "type": "string"
+ "model": {
+ "$ref": "#/components/schemas/ModelOption",
+ "description": "The name of the `Model` used for generating the interaction."
},
"previous_interaction_id": {
"description": "The ID of the previous interaction, if any.",
"type": "string"
},
- "environment_id": {
- "description": "Output only. The environment ID for the interaction. Only populated if environment\nconfig is set in the request.",
- "readOnly": true,
- "type": "string"
- },
- "service_tier": {
- "$ref": "#/components/schemas/ServiceTier",
- "description": "The service tier for the interaction."
- },
- "webhook_config": {
- "$ref": "#/components/schemas/WebhookConfig",
- "description": "Optional. Webhook configuration for receiving notifications when the\ninteraction completes."
- },
"response_format": {
"description": "Enforces that the generated response is a JSON object that complies with the JSON schema specified in this field.",
"oneOf": [
@@ -2836,28 +2848,82 @@
}
]
},
- "environment": {
- "oneOf": [
- {
- "type": "string"
- },
- {
- "$ref": "#/components/schemas/EnvironmentConfig"
- }
+ "response_mime_type": {
+ "description": "The mime type of the response. This is required if response_format is set.",
+ "deprecated": true,
+ "type": "string"
+ },
+ "response_modalities": {
+ "description": "The requested modalities of the response (TEXT, IMAGE, AUDIO).",
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/ResponseModality"
+ }
+ },
+ "safety_settings": {
+ "type": "array",
+ "items": {
+ "$ref": "#/components/schemas/SafetySetting"
+ },
+ "description": "Safety settings for the interaction."