@orq-ai/node 4.1.0-rc.39 → 4.1.0-rc.40
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/bin/mcp-server.js +662 -352
- package/bin/mcp-server.js.map +49 -49
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createagentrequest.d.ts +370 -42
- package/models/operations/createagentrequest.d.ts.map +1 -1
- package/models/operations/createagentrequest.js +277 -48
- package/models/operations/createagentrequest.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createprompt.d.ts +10 -10
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +13 -13
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/createtool.js +12 -12
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.d.ts +96 -4
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +57 -7
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrieveagentrequest.d.ts +96 -4
- package/models/operations/retrieveagentrequest.d.ts.map +1 -1
- package/models/operations/retrieveagentrequest.js +59 -7
- package/models/operations/retrieveagentrequest.js.map +1 -1
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrieveconversation.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.d.ts +96 -4
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +65 -11
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +96 -4
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +63 -11
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +370 -42
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +276 -48
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createagentrequest.ts +696 -86
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createprompt.ts +25 -23
- package/src/models/operations/createtool.ts +12 -12
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +122 -8
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrieveagentrequest.ts +130 -8
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrieveconversation.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +126 -10
- package/src/models/operations/streamrunagent.ts +128 -10
- package/src/models/operations/updateagent.ts +698 -86
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -92,6 +92,39 @@ export type UpdateAgentResponseFormatText = {
|
|
|
92
92
|
* An object specifying the format that the model must output
|
|
93
93
|
*/
|
|
94
94
|
export type ModelConfigurationResponseFormat = UpdateAgentResponseFormatText | UpdateAgentResponseFormatJSONObject | UpdateAgentResponseFormatJSONSchema;
|
|
95
|
+
/**
|
|
96
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
97
|
+
*
|
|
98
|
+
* @remarks
|
|
99
|
+
*
|
|
100
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
101
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
102
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
103
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
104
|
+
*
|
|
105
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
106
|
+
*/
|
|
107
|
+
export declare const ModelConfigurationReasoningEffort: {
|
|
108
|
+
readonly None: "none";
|
|
109
|
+
readonly Minimal: "minimal";
|
|
110
|
+
readonly Low: "low";
|
|
111
|
+
readonly Medium: "medium";
|
|
112
|
+
readonly High: "high";
|
|
113
|
+
readonly Xhigh: "xhigh";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
117
|
+
*
|
|
118
|
+
* @remarks
|
|
119
|
+
*
|
|
120
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
121
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
122
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
123
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
124
|
+
*
|
|
125
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
126
|
+
*/
|
|
127
|
+
export type ModelConfigurationReasoningEffort = ClosedEnum<typeof ModelConfigurationReasoningEffort>;
|
|
95
128
|
/**
|
|
96
129
|
* Up to 4 sequences where the API will stop generating further tokens.
|
|
97
130
|
*/
|
|
@@ -189,9 +222,18 @@ export type ModelConfigurationParameters = {
|
|
|
189
222
|
*/
|
|
190
223
|
responseFormat?: UpdateAgentResponseFormatText | UpdateAgentResponseFormatJSONObject | UpdateAgentResponseFormatJSONSchema | undefined;
|
|
191
224
|
/**
|
|
192
|
-
* Constrains effort on reasoning for reasoning models. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
225
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
226
|
+
*
|
|
227
|
+
* @remarks
|
|
228
|
+
*
|
|
229
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
230
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
231
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
232
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
233
|
+
*
|
|
234
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
193
235
|
*/
|
|
194
|
-
reasoningEffort?:
|
|
236
|
+
reasoningEffort?: ModelConfigurationReasoningEffort | undefined;
|
|
195
237
|
/**
|
|
196
238
|
* Adjusts response verbosity. Lower levels yield shorter answers.
|
|
197
239
|
*/
|
|
@@ -359,6 +401,39 @@ export type UpdateAgentResponseFormatAgentsText = {
|
|
|
359
401
|
* An object specifying the format that the model must output
|
|
360
402
|
*/
|
|
361
403
|
export type UpdateAgentFallbackModelConfigurationResponseFormat = UpdateAgentResponseFormatAgentsText | UpdateAgentResponseFormatAgentsJSONObject | UpdateAgentResponseFormatAgentsRequestJSONSchema;
|
|
404
|
+
/**
|
|
405
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
406
|
+
*
|
|
407
|
+
* @remarks
|
|
408
|
+
*
|
|
409
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
410
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
411
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
412
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
413
|
+
*
|
|
414
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
415
|
+
*/
|
|
416
|
+
export declare const UpdateAgentFallbackModelConfigurationReasoningEffort: {
|
|
417
|
+
readonly None: "none";
|
|
418
|
+
readonly Minimal: "minimal";
|
|
419
|
+
readonly Low: "low";
|
|
420
|
+
readonly Medium: "medium";
|
|
421
|
+
readonly High: "high";
|
|
422
|
+
readonly Xhigh: "xhigh";
|
|
423
|
+
};
|
|
424
|
+
/**
|
|
425
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
426
|
+
*
|
|
427
|
+
* @remarks
|
|
428
|
+
*
|
|
429
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
430
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
431
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
432
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
433
|
+
*
|
|
434
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
435
|
+
*/
|
|
436
|
+
export type UpdateAgentFallbackModelConfigurationReasoningEffort = ClosedEnum<typeof UpdateAgentFallbackModelConfigurationReasoningEffort>;
|
|
362
437
|
/**
|
|
363
438
|
* Up to 4 sequences where the API will stop generating further tokens.
|
|
364
439
|
*/
|
|
@@ -456,9 +531,18 @@ export type UpdateAgentFallbackModelConfigurationParameters = {
|
|
|
456
531
|
*/
|
|
457
532
|
responseFormat?: UpdateAgentResponseFormatAgentsText | UpdateAgentResponseFormatAgentsJSONObject | UpdateAgentResponseFormatAgentsRequestJSONSchema | undefined;
|
|
458
533
|
/**
|
|
459
|
-
* Constrains effort on reasoning for reasoning models. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
534
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
535
|
+
*
|
|
536
|
+
* @remarks
|
|
537
|
+
*
|
|
538
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
539
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
540
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
541
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
542
|
+
*
|
|
543
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
460
544
|
*/
|
|
461
|
-
reasoningEffort?:
|
|
545
|
+
reasoningEffort?: UpdateAgentFallbackModelConfigurationReasoningEffort | undefined;
|
|
462
546
|
/**
|
|
463
547
|
* Adjusts response verbosity. Lower levels yield shorter answers.
|
|
464
548
|
*/
|
|
@@ -530,6 +614,16 @@ export declare const UpdateAgentToolApprovalRequired: {
|
|
|
530
614
|
* If all, the agent will require approval for all tools. If respect_tool, the agent will require approval for tools that have the requires_approval flag set to true. If none, the agent will not require approval for any tools.
|
|
531
615
|
*/
|
|
532
616
|
export type UpdateAgentToolApprovalRequired = ClosedEnum<typeof UpdateAgentToolApprovalRequired>;
|
|
617
|
+
/**
|
|
618
|
+
* MCP tool type
|
|
619
|
+
*/
|
|
620
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type: {
|
|
621
|
+
readonly Mcp: "mcp";
|
|
622
|
+
};
|
|
623
|
+
/**
|
|
624
|
+
* MCP tool type
|
|
625
|
+
*/
|
|
626
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type>;
|
|
533
627
|
/**
|
|
534
628
|
* Executes tools from Model Context Protocol (MCP) servers. Specify the parent MCP tool using "key" or "id", and the specific nested tool using "tool_id".
|
|
535
629
|
*/
|
|
@@ -537,7 +631,7 @@ export type AgentToolInputCRUDMCPTool = {
|
|
|
537
631
|
/**
|
|
538
632
|
* MCP tool type
|
|
539
633
|
*/
|
|
540
|
-
type
|
|
634
|
+
type?: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type | undefined;
|
|
541
635
|
/**
|
|
542
636
|
* The key of the parent MCP tool
|
|
543
637
|
*/
|
|
@@ -555,6 +649,16 @@ export type AgentToolInputCRUDMCPTool = {
|
|
|
555
649
|
*/
|
|
556
650
|
requiresApproval?: boolean | undefined;
|
|
557
651
|
};
|
|
652
|
+
/**
|
|
653
|
+
* Function tool type
|
|
654
|
+
*/
|
|
655
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type: {
|
|
656
|
+
readonly Function: "function";
|
|
657
|
+
};
|
|
658
|
+
/**
|
|
659
|
+
* Function tool type
|
|
660
|
+
*/
|
|
661
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type>;
|
|
558
662
|
/**
|
|
559
663
|
* Calls custom function tools defined in the agent configuration. Must reference a pre-created function tool by key or id.
|
|
560
664
|
*/
|
|
@@ -562,7 +666,7 @@ export type AgentToolInputCRUDFunctionTool = {
|
|
|
562
666
|
/**
|
|
563
667
|
* Function tool type
|
|
564
668
|
*/
|
|
565
|
-
type
|
|
669
|
+
type?: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type | undefined;
|
|
566
670
|
/**
|
|
567
671
|
* The key of the pre-created function tool
|
|
568
672
|
*/
|
|
@@ -576,6 +680,16 @@ export type AgentToolInputCRUDFunctionTool = {
|
|
|
576
680
|
*/
|
|
577
681
|
requiresApproval?: boolean | undefined;
|
|
578
682
|
};
|
|
683
|
+
/**
|
|
684
|
+
* Code execution tool type
|
|
685
|
+
*/
|
|
686
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type: {
|
|
687
|
+
readonly Code: "code";
|
|
688
|
+
};
|
|
689
|
+
/**
|
|
690
|
+
* Code execution tool type
|
|
691
|
+
*/
|
|
692
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type>;
|
|
579
693
|
/**
|
|
580
694
|
* Executes code snippets in a sandboxed environment. Must reference a pre-created code tool by key or id.
|
|
581
695
|
*/
|
|
@@ -583,7 +697,7 @@ export type AgentToolInputCRUDCodeExecutionTool = {
|
|
|
583
697
|
/**
|
|
584
698
|
* Code execution tool type
|
|
585
699
|
*/
|
|
586
|
-
type
|
|
700
|
+
type?: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type | undefined;
|
|
587
701
|
/**
|
|
588
702
|
* The key of the pre-created code tool
|
|
589
703
|
*/
|
|
@@ -597,6 +711,16 @@ export type AgentToolInputCRUDCodeExecutionTool = {
|
|
|
597
711
|
*/
|
|
598
712
|
requiresApproval?: boolean | undefined;
|
|
599
713
|
};
|
|
714
|
+
/**
|
|
715
|
+
* HTTP tool type
|
|
716
|
+
*/
|
|
717
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type: {
|
|
718
|
+
readonly Http: "http";
|
|
719
|
+
};
|
|
720
|
+
/**
|
|
721
|
+
* HTTP tool type
|
|
722
|
+
*/
|
|
723
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type>;
|
|
600
724
|
/**
|
|
601
725
|
* Executes HTTP requests to interact with external APIs and web services. Must reference a pre-created HTTP tool by key or id.
|
|
602
726
|
*/
|
|
@@ -604,7 +728,7 @@ export type AgentToolInputCRUDHTTPTool = {
|
|
|
604
728
|
/**
|
|
605
729
|
* HTTP tool type
|
|
606
730
|
*/
|
|
607
|
-
type
|
|
731
|
+
type?: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type | undefined;
|
|
608
732
|
/**
|
|
609
733
|
* The key of the pre-created HTTP tool
|
|
610
734
|
*/
|
|
@@ -618,111 +742,155 @@ export type AgentToolInputCRUDHTTPTool = {
|
|
|
618
742
|
*/
|
|
619
743
|
requiresApproval?: boolean | undefined;
|
|
620
744
|
};
|
|
745
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type: {
|
|
746
|
+
readonly CurrentDate: "current_date";
|
|
747
|
+
};
|
|
748
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type>;
|
|
621
749
|
/**
|
|
622
750
|
* Returns the current date and time
|
|
623
751
|
*/
|
|
624
752
|
export type AgentToolInputCRUDCurrentDateTool = {
|
|
625
|
-
type:
|
|
753
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type;
|
|
626
754
|
/**
|
|
627
755
|
* Whether this tool requires approval before execution
|
|
628
756
|
*/
|
|
629
757
|
requiresApproval?: boolean | undefined;
|
|
630
758
|
};
|
|
759
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type: {
|
|
760
|
+
readonly QueryKnowledgeBase: "query_knowledge_base";
|
|
761
|
+
};
|
|
762
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type>;
|
|
631
763
|
/**
|
|
632
764
|
* Queries knowledge bases for information
|
|
633
765
|
*/
|
|
634
766
|
export type AgentToolInputCRUDQueryKnowledgeBaseTool = {
|
|
635
|
-
type:
|
|
767
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type;
|
|
636
768
|
/**
|
|
637
769
|
* Whether this tool requires approval before execution
|
|
638
770
|
*/
|
|
639
771
|
requiresApproval?: boolean | undefined;
|
|
640
772
|
};
|
|
773
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type: {
|
|
774
|
+
readonly RetrieveKnowledgeBases: "retrieve_knowledge_bases";
|
|
775
|
+
};
|
|
776
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type>;
|
|
641
777
|
/**
|
|
642
778
|
* Lists available knowledge bases
|
|
643
779
|
*/
|
|
644
780
|
export type AgentToolInputCRUDRetrieveKnowledgeBasesTool = {
|
|
645
|
-
type:
|
|
781
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type;
|
|
646
782
|
/**
|
|
647
783
|
* Whether this tool requires approval before execution
|
|
648
784
|
*/
|
|
649
785
|
requiresApproval?: boolean | undefined;
|
|
650
786
|
};
|
|
787
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type: {
|
|
788
|
+
readonly DeleteMemoryDocument: "delete_memory_document";
|
|
789
|
+
};
|
|
790
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type>;
|
|
651
791
|
/**
|
|
652
792
|
* Deletes documents from memory stores
|
|
653
793
|
*/
|
|
654
794
|
export type AgentToolInputCRUDDeleteMemoryDocumentTool = {
|
|
655
|
-
type:
|
|
795
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type;
|
|
656
796
|
/**
|
|
657
797
|
* Whether this tool requires approval before execution
|
|
658
798
|
*/
|
|
659
799
|
requiresApproval?: boolean | undefined;
|
|
660
800
|
};
|
|
801
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type: {
|
|
802
|
+
readonly RetrieveMemoryStores: "retrieve_memory_stores";
|
|
803
|
+
};
|
|
804
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type>;
|
|
661
805
|
/**
|
|
662
806
|
* Lists available memory stores
|
|
663
807
|
*/
|
|
664
808
|
export type AgentToolInputCRUDRetrieveMemoryStoresTool = {
|
|
665
|
-
type:
|
|
809
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type;
|
|
666
810
|
/**
|
|
667
811
|
* Whether this tool requires approval before execution
|
|
668
812
|
*/
|
|
669
813
|
requiresApproval?: boolean | undefined;
|
|
670
814
|
};
|
|
815
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType: {
|
|
816
|
+
readonly WriteMemoryStore: "write_memory_store";
|
|
817
|
+
};
|
|
818
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType>;
|
|
671
819
|
/**
|
|
672
820
|
* Writes information to agent memory stores
|
|
673
821
|
*/
|
|
674
822
|
export type AgentToolInputCRUDWriteMemoryStoreTool = {
|
|
675
|
-
type:
|
|
823
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType;
|
|
676
824
|
/**
|
|
677
825
|
* Whether this tool requires approval before execution
|
|
678
826
|
*/
|
|
679
827
|
requiresApproval?: boolean | undefined;
|
|
680
828
|
};
|
|
829
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType: {
|
|
830
|
+
readonly QueryMemoryStore: "query_memory_store";
|
|
831
|
+
};
|
|
832
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType>;
|
|
681
833
|
/**
|
|
682
834
|
* Queries agent memory stores for context
|
|
683
835
|
*/
|
|
684
836
|
export type AgentToolInputCRUDQueryMemoryStoreTool = {
|
|
685
|
-
type:
|
|
837
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType;
|
|
686
838
|
/**
|
|
687
839
|
* Whether this tool requires approval before execution
|
|
688
840
|
*/
|
|
689
841
|
requiresApproval?: boolean | undefined;
|
|
690
842
|
};
|
|
843
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType: {
|
|
844
|
+
readonly RetrieveAgents: "retrieve_agents";
|
|
845
|
+
};
|
|
846
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType>;
|
|
691
847
|
/**
|
|
692
848
|
* Retrieves available agents in the system
|
|
693
849
|
*/
|
|
694
850
|
export type AgentToolInputCRUDRetrieveAgentsTool = {
|
|
695
|
-
type:
|
|
851
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType;
|
|
696
852
|
/**
|
|
697
853
|
* Whether this tool requires approval before execution
|
|
698
854
|
*/
|
|
699
855
|
requiresApproval?: boolean | undefined;
|
|
700
856
|
};
|
|
857
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestType: {
|
|
858
|
+
readonly CallSubAgent: "call_sub_agent";
|
|
859
|
+
};
|
|
860
|
+
export type UpdateAgentAgentToolInputCRUDAgentsRequestType = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestType>;
|
|
701
861
|
/**
|
|
702
862
|
* Delegates tasks to specialized sub-agents
|
|
703
863
|
*/
|
|
704
864
|
export type AgentToolInputCRUDCallSubAgentTool = {
|
|
705
|
-
type:
|
|
865
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestType;
|
|
706
866
|
/**
|
|
707
867
|
* Whether this tool requires approval before execution
|
|
708
868
|
*/
|
|
709
869
|
requiresApproval?: boolean | undefined;
|
|
710
870
|
};
|
|
871
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsType: {
|
|
872
|
+
readonly WebScraper: "web_scraper";
|
|
873
|
+
};
|
|
874
|
+
export type UpdateAgentAgentToolInputCRUDAgentsType = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDAgentsType>;
|
|
711
875
|
/**
|
|
712
876
|
* Scrapes and extracts content from web pages
|
|
713
877
|
*/
|
|
714
878
|
export type AgentToolInputCRUDWebScraperTool = {
|
|
715
|
-
type:
|
|
879
|
+
type: UpdateAgentAgentToolInputCRUDAgentsType;
|
|
716
880
|
/**
|
|
717
881
|
* Whether this tool requires approval before execution
|
|
718
882
|
*/
|
|
719
883
|
requiresApproval?: boolean | undefined;
|
|
720
884
|
};
|
|
885
|
+
export declare const UpdateAgentAgentToolInputCRUDType: {
|
|
886
|
+
readonly GoogleSearch: "google_search";
|
|
887
|
+
};
|
|
888
|
+
export type UpdateAgentAgentToolInputCRUDType = ClosedEnum<typeof UpdateAgentAgentToolInputCRUDType>;
|
|
721
889
|
/**
|
|
722
890
|
* Performs Google searches to retrieve web content
|
|
723
891
|
*/
|
|
724
892
|
export type AgentToolInputCRUDGoogleSearchTool = {
|
|
725
|
-
type:
|
|
893
|
+
type: UpdateAgentAgentToolInputCRUDType;
|
|
726
894
|
/**
|
|
727
895
|
* Whether this tool requires approval before execution
|
|
728
896
|
*/
|
|
@@ -731,7 +899,7 @@ export type AgentToolInputCRUDGoogleSearchTool = {
|
|
|
731
899
|
/**
|
|
732
900
|
* Tool configuration for agent create/update operations. Built-in tools only require a type, while custom tools (HTTP, Code, Function, MCP) must reference pre-created tools by key or id.
|
|
733
901
|
*/
|
|
734
|
-
export type UpdateAgentAgentToolInputCRUD = AgentToolInputCRUDGoogleSearchTool | AgentToolInputCRUDWebScraperTool | AgentToolInputCRUDCallSubAgentTool | AgentToolInputCRUDRetrieveAgentsTool | AgentToolInputCRUDQueryMemoryStoreTool | AgentToolInputCRUDWriteMemoryStoreTool | AgentToolInputCRUDRetrieveMemoryStoresTool | AgentToolInputCRUDDeleteMemoryDocumentTool | AgentToolInputCRUDRetrieveKnowledgeBasesTool | AgentToolInputCRUDQueryKnowledgeBaseTool | AgentToolInputCRUDCurrentDateTool | AgentToolInputCRUDHTTPTool | AgentToolInputCRUDCodeExecutionTool | AgentToolInputCRUDFunctionTool
|
|
902
|
+
export type UpdateAgentAgentToolInputCRUD = AgentToolInputCRUDGoogleSearchTool | AgentToolInputCRUDWebScraperTool | AgentToolInputCRUDCallSubAgentTool | AgentToolInputCRUDRetrieveAgentsTool | AgentToolInputCRUDQueryMemoryStoreTool | AgentToolInputCRUDWriteMemoryStoreTool | AgentToolInputCRUDRetrieveMemoryStoresTool | AgentToolInputCRUDDeleteMemoryDocumentTool | AgentToolInputCRUDRetrieveKnowledgeBasesTool | AgentToolInputCRUDQueryKnowledgeBaseTool | AgentToolInputCRUDCurrentDateTool | AgentToolInputCRUDMCPTool | AgentToolInputCRUDHTTPTool | AgentToolInputCRUDCodeExecutionTool | AgentToolInputCRUDFunctionTool;
|
|
735
903
|
/**
|
|
736
904
|
* Determines whether the evaluator runs on the agent input (user message) or output (agent response).
|
|
737
905
|
*/
|
|
@@ -798,7 +966,7 @@ export type UpdateAgentSettings = {
|
|
|
798
966
|
/**
|
|
799
967
|
* Tools available to the agent. Built-in tools only need a type, while custom tools (http, code, function) must reference pre-created tools by key or id.
|
|
800
968
|
*/
|
|
801
|
-
tools?: Array<AgentToolInputCRUDGoogleSearchTool | AgentToolInputCRUDWebScraperTool | AgentToolInputCRUDCallSubAgentTool | AgentToolInputCRUDRetrieveAgentsTool | AgentToolInputCRUDQueryMemoryStoreTool | AgentToolInputCRUDWriteMemoryStoreTool | AgentToolInputCRUDRetrieveMemoryStoresTool | AgentToolInputCRUDDeleteMemoryDocumentTool | AgentToolInputCRUDRetrieveKnowledgeBasesTool | AgentToolInputCRUDQueryKnowledgeBaseTool | AgentToolInputCRUDCurrentDateTool | AgentToolInputCRUDHTTPTool | AgentToolInputCRUDCodeExecutionTool | AgentToolInputCRUDFunctionTool
|
|
969
|
+
tools?: Array<AgentToolInputCRUDGoogleSearchTool | AgentToolInputCRUDWebScraperTool | AgentToolInputCRUDCallSubAgentTool | AgentToolInputCRUDRetrieveAgentsTool | AgentToolInputCRUDQueryMemoryStoreTool | AgentToolInputCRUDWriteMemoryStoreTool | AgentToolInputCRUDRetrieveMemoryStoresTool | AgentToolInputCRUDDeleteMemoryDocumentTool | AgentToolInputCRUDRetrieveKnowledgeBasesTool | AgentToolInputCRUDQueryKnowledgeBaseTool | AgentToolInputCRUDCurrentDateTool | AgentToolInputCRUDMCPTool | AgentToolInputCRUDHTTPTool | AgentToolInputCRUDCodeExecutionTool | AgentToolInputCRUDFunctionTool> | undefined;
|
|
802
970
|
/**
|
|
803
971
|
* Configuration for an evaluator applied to the agent
|
|
804
972
|
*/
|
|
@@ -1110,6 +1278,39 @@ export type UpdateAgentResponseFormatAgentsResponseText = {
|
|
|
1110
1278
|
* An object specifying the format that the model must output
|
|
1111
1279
|
*/
|
|
1112
1280
|
export type UpdateAgentResponseFormat = UpdateAgentResponseFormatAgentsResponseText | UpdateAgentResponseFormatAgentsResponseJSONObject | UpdateAgentResponseFormatAgentsResponse200JSONSchema;
|
|
1281
|
+
/**
|
|
1282
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
1283
|
+
*
|
|
1284
|
+
* @remarks
|
|
1285
|
+
*
|
|
1286
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
1287
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
1288
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
1289
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
1290
|
+
*
|
|
1291
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
1292
|
+
*/
|
|
1293
|
+
export declare const UpdateAgentReasoningEffort: {
|
|
1294
|
+
readonly None: "none";
|
|
1295
|
+
readonly Minimal: "minimal";
|
|
1296
|
+
readonly Low: "low";
|
|
1297
|
+
readonly Medium: "medium";
|
|
1298
|
+
readonly High: "high";
|
|
1299
|
+
readonly Xhigh: "xhigh";
|
|
1300
|
+
};
|
|
1301
|
+
/**
|
|
1302
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
1303
|
+
*
|
|
1304
|
+
* @remarks
|
|
1305
|
+
*
|
|
1306
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
1307
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
1308
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
1309
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
1310
|
+
*
|
|
1311
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
1312
|
+
*/
|
|
1313
|
+
export type UpdateAgentReasoningEffort = ClosedEnum<typeof UpdateAgentReasoningEffort>;
|
|
1113
1314
|
/**
|
|
1114
1315
|
* Up to 4 sequences where the API will stop generating further tokens.
|
|
1115
1316
|
*/
|
|
@@ -1207,9 +1408,18 @@ export type UpdateAgentParameters = {
|
|
|
1207
1408
|
*/
|
|
1208
1409
|
responseFormat?: UpdateAgentResponseFormatAgentsResponseText | UpdateAgentResponseFormatAgentsResponseJSONObject | UpdateAgentResponseFormatAgentsResponse200JSONSchema | undefined;
|
|
1209
1410
|
/**
|
|
1210
|
-
* Constrains effort on reasoning for reasoning models. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
1411
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
1412
|
+
*
|
|
1413
|
+
* @remarks
|
|
1414
|
+
*
|
|
1415
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
1416
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
1417
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
1418
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
1419
|
+
*
|
|
1420
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
1211
1421
|
*/
|
|
1212
|
-
reasoningEffort?:
|
|
1422
|
+
reasoningEffort?: UpdateAgentReasoningEffort | undefined;
|
|
1213
1423
|
/**
|
|
1214
1424
|
* Adjusts response verbosity. Lower levels yield shorter answers.
|
|
1215
1425
|
*/
|
|
@@ -1354,6 +1564,39 @@ export type UpdateAgentResponseFormatAgentsResponse200Text = {
|
|
|
1354
1564
|
* An object specifying the format that the model must output
|
|
1355
1565
|
*/
|
|
1356
1566
|
export type UpdateAgentFallbackModelConfigurationAgentsResponseFormat = UpdateAgentResponseFormatAgentsResponse200Text | UpdateAgentResponseFormatAgentsResponse200JSONObject | UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema;
|
|
1567
|
+
/**
|
|
1568
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
1569
|
+
*
|
|
1570
|
+
* @remarks
|
|
1571
|
+
*
|
|
1572
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
1573
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
1574
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
1575
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
1576
|
+
*
|
|
1577
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
1578
|
+
*/
|
|
1579
|
+
export declare const UpdateAgentFallbackModelConfigurationAgentsReasoningEffort: {
|
|
1580
|
+
readonly None: "none";
|
|
1581
|
+
readonly Minimal: "minimal";
|
|
1582
|
+
readonly Low: "low";
|
|
1583
|
+
readonly Medium: "medium";
|
|
1584
|
+
readonly High: "high";
|
|
1585
|
+
readonly Xhigh: "xhigh";
|
|
1586
|
+
};
|
|
1587
|
+
/**
|
|
1588
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
1589
|
+
*
|
|
1590
|
+
* @remarks
|
|
1591
|
+
*
|
|
1592
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
1593
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
1594
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
1595
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
1596
|
+
*
|
|
1597
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
1598
|
+
*/
|
|
1599
|
+
export type UpdateAgentFallbackModelConfigurationAgentsReasoningEffort = ClosedEnum<typeof UpdateAgentFallbackModelConfigurationAgentsReasoningEffort>;
|
|
1357
1600
|
/**
|
|
1358
1601
|
* Up to 4 sequences where the API will stop generating further tokens.
|
|
1359
1602
|
*/
|
|
@@ -1451,9 +1694,18 @@ export type UpdateAgentFallbackModelConfigurationAgentsParameters = {
|
|
|
1451
1694
|
*/
|
|
1452
1695
|
responseFormat?: UpdateAgentResponseFormatAgentsResponse200Text | UpdateAgentResponseFormatAgentsResponse200JSONObject | UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema | undefined;
|
|
1453
1696
|
/**
|
|
1454
|
-
* Constrains effort on reasoning for reasoning models. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
1697
|
+
* Constrains effort on reasoning for [reasoning models](https://platform.openai.com/docs/guides/reasoning). Currently supported values are `none`, `minimal`, `low`, `medium`, `high`, and `xhigh`. Reducing reasoning effort can result in faster responses and fewer tokens used on reasoning in a response.
|
|
1698
|
+
*
|
|
1699
|
+
* @remarks
|
|
1700
|
+
*
|
|
1701
|
+
* - `gpt-5.1` defaults to `none`, which does not perform reasoning. The supported reasoning values for `gpt-5.1` are `none`, `low`, `medium`, and `high`. Tool calls are supported for all reasoning values in gpt-5.1.
|
|
1702
|
+
* - All models before `gpt-5.1` default to `medium` reasoning effort, and do not support `none`.
|
|
1703
|
+
* - The `gpt-5-pro` model defaults to (and only supports) `high` reasoning effort.
|
|
1704
|
+
* - `xhigh` is currently only supported for `gpt-5.1-codex-max`.
|
|
1705
|
+
*
|
|
1706
|
+
* Any of "none", "minimal", "low", "medium", "high", "xhigh".
|
|
1455
1707
|
*/
|
|
1456
|
-
reasoningEffort?:
|
|
1708
|
+
reasoningEffort?: UpdateAgentFallbackModelConfigurationAgentsReasoningEffort | undefined;
|
|
1457
1709
|
/**
|
|
1458
1710
|
* Adjusts response verbosity. Lower levels yield shorter answers.
|
|
1459
1711
|
*/
|
|
@@ -1683,6 +1935,10 @@ export declare const ModelConfigurationResponseFormat$outboundSchema: z.ZodType<
|
|
|
1683
1935
|
export declare function modelConfigurationResponseFormatToJSON(modelConfigurationResponseFormat: ModelConfigurationResponseFormat): string;
|
|
1684
1936
|
export declare function modelConfigurationResponseFormatFromJSON(jsonString: string): SafeParseResult<ModelConfigurationResponseFormat, SDKValidationError>;
|
|
1685
1937
|
/** @internal */
|
|
1938
|
+
export declare const ModelConfigurationReasoningEffort$inboundSchema: z.ZodNativeEnum<typeof ModelConfigurationReasoningEffort>;
|
|
1939
|
+
/** @internal */
|
|
1940
|
+
export declare const ModelConfigurationReasoningEffort$outboundSchema: z.ZodNativeEnum<typeof ModelConfigurationReasoningEffort>;
|
|
1941
|
+
/** @internal */
|
|
1686
1942
|
export declare const ModelConfigurationStop$inboundSchema: z.ZodType<ModelConfigurationStop, z.ZodTypeDef, unknown>;
|
|
1687
1943
|
/** @internal */
|
|
1688
1944
|
export type ModelConfigurationStop$Outbound = string | Array<string>;
|
|
@@ -1882,6 +2138,10 @@ export declare const UpdateAgentFallbackModelConfigurationResponseFormat$outboun
|
|
|
1882
2138
|
export declare function updateAgentFallbackModelConfigurationResponseFormatToJSON(updateAgentFallbackModelConfigurationResponseFormat: UpdateAgentFallbackModelConfigurationResponseFormat): string;
|
|
1883
2139
|
export declare function updateAgentFallbackModelConfigurationResponseFormatFromJSON(jsonString: string): SafeParseResult<UpdateAgentFallbackModelConfigurationResponseFormat, SDKValidationError>;
|
|
1884
2140
|
/** @internal */
|
|
2141
|
+
export declare const UpdateAgentFallbackModelConfigurationReasoningEffort$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentFallbackModelConfigurationReasoningEffort>;
|
|
2142
|
+
/** @internal */
|
|
2143
|
+
export declare const UpdateAgentFallbackModelConfigurationReasoningEffort$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentFallbackModelConfigurationReasoningEffort>;
|
|
2144
|
+
/** @internal */
|
|
1885
2145
|
export declare const UpdateAgentFallbackModelConfigurationStop$inboundSchema: z.ZodType<UpdateAgentFallbackModelConfigurationStop, z.ZodTypeDef, unknown>;
|
|
1886
2146
|
/** @internal */
|
|
1887
2147
|
export type UpdateAgentFallbackModelConfigurationStop$Outbound = string | Array<string>;
|
|
@@ -2002,10 +2262,14 @@ export declare const UpdateAgentToolApprovalRequired$inboundSchema: z.ZodNativeE
|
|
|
2002
2262
|
/** @internal */
|
|
2003
2263
|
export declare const UpdateAgentToolApprovalRequired$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentToolApprovalRequired>;
|
|
2004
2264
|
/** @internal */
|
|
2265
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type>;
|
|
2266
|
+
/** @internal */
|
|
2267
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type>;
|
|
2268
|
+
/** @internal */
|
|
2005
2269
|
export declare const AgentToolInputCRUDMCPTool$inboundSchema: z.ZodType<AgentToolInputCRUDMCPTool, z.ZodTypeDef, unknown>;
|
|
2006
2270
|
/** @internal */
|
|
2007
2271
|
export type AgentToolInputCRUDMCPTool$Outbound = {
|
|
2008
|
-
type:
|
|
2272
|
+
type: string;
|
|
2009
2273
|
key?: string | undefined;
|
|
2010
2274
|
id?: string | undefined;
|
|
2011
2275
|
tool_id: string;
|
|
@@ -2016,10 +2280,14 @@ export declare const AgentToolInputCRUDMCPTool$outboundSchema: z.ZodType<AgentTo
|
|
|
2016
2280
|
export declare function agentToolInputCRUDMCPToolToJSON(agentToolInputCRUDMCPTool: AgentToolInputCRUDMCPTool): string;
|
|
2017
2281
|
export declare function agentToolInputCRUDMCPToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDMCPTool, SDKValidationError>;
|
|
2018
2282
|
/** @internal */
|
|
2283
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type>;
|
|
2284
|
+
/** @internal */
|
|
2285
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type>;
|
|
2286
|
+
/** @internal */
|
|
2019
2287
|
export declare const AgentToolInputCRUDFunctionTool$inboundSchema: z.ZodType<AgentToolInputCRUDFunctionTool, z.ZodTypeDef, unknown>;
|
|
2020
2288
|
/** @internal */
|
|
2021
2289
|
export type AgentToolInputCRUDFunctionTool$Outbound = {
|
|
2022
|
-
type:
|
|
2290
|
+
type: string;
|
|
2023
2291
|
key?: string | undefined;
|
|
2024
2292
|
id?: string | undefined;
|
|
2025
2293
|
requires_approval: boolean;
|
|
@@ -2029,10 +2297,14 @@ export declare const AgentToolInputCRUDFunctionTool$outboundSchema: z.ZodType<Ag
|
|
|
2029
2297
|
export declare function agentToolInputCRUDFunctionToolToJSON(agentToolInputCRUDFunctionTool: AgentToolInputCRUDFunctionTool): string;
|
|
2030
2298
|
export declare function agentToolInputCRUDFunctionToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDFunctionTool, SDKValidationError>;
|
|
2031
2299
|
/** @internal */
|
|
2300
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type>;
|
|
2301
|
+
/** @internal */
|
|
2302
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type>;
|
|
2303
|
+
/** @internal */
|
|
2032
2304
|
export declare const AgentToolInputCRUDCodeExecutionTool$inboundSchema: z.ZodType<AgentToolInputCRUDCodeExecutionTool, z.ZodTypeDef, unknown>;
|
|
2033
2305
|
/** @internal */
|
|
2034
2306
|
export type AgentToolInputCRUDCodeExecutionTool$Outbound = {
|
|
2035
|
-
type:
|
|
2307
|
+
type: string;
|
|
2036
2308
|
key?: string | undefined;
|
|
2037
2309
|
id?: string | undefined;
|
|
2038
2310
|
requires_approval: boolean;
|
|
@@ -2042,10 +2314,14 @@ export declare const AgentToolInputCRUDCodeExecutionTool$outboundSchema: z.ZodTy
|
|
|
2042
2314
|
export declare function agentToolInputCRUDCodeExecutionToolToJSON(agentToolInputCRUDCodeExecutionTool: AgentToolInputCRUDCodeExecutionTool): string;
|
|
2043
2315
|
export declare function agentToolInputCRUDCodeExecutionToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDCodeExecutionTool, SDKValidationError>;
|
|
2044
2316
|
/** @internal */
|
|
2317
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type>;
|
|
2318
|
+
/** @internal */
|
|
2319
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type>;
|
|
2320
|
+
/** @internal */
|
|
2045
2321
|
export declare const AgentToolInputCRUDHTTPTool$inboundSchema: z.ZodType<AgentToolInputCRUDHTTPTool, z.ZodTypeDef, unknown>;
|
|
2046
2322
|
/** @internal */
|
|
2047
2323
|
export type AgentToolInputCRUDHTTPTool$Outbound = {
|
|
2048
|
-
type:
|
|
2324
|
+
type: string;
|
|
2049
2325
|
key?: string | undefined;
|
|
2050
2326
|
id?: string | undefined;
|
|
2051
2327
|
requires_approval: boolean;
|
|
@@ -2055,10 +2331,14 @@ export declare const AgentToolInputCRUDHTTPTool$outboundSchema: z.ZodType<AgentT
|
|
|
2055
2331
|
export declare function agentToolInputCRUDHTTPToolToJSON(agentToolInputCRUDHTTPTool: AgentToolInputCRUDHTTPTool): string;
|
|
2056
2332
|
export declare function agentToolInputCRUDHTTPToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDHTTPTool, SDKValidationError>;
|
|
2057
2333
|
/** @internal */
|
|
2334
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type>;
|
|
2335
|
+
/** @internal */
|
|
2336
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type>;
|
|
2337
|
+
/** @internal */
|
|
2058
2338
|
export declare const AgentToolInputCRUDCurrentDateTool$inboundSchema: z.ZodType<AgentToolInputCRUDCurrentDateTool, z.ZodTypeDef, unknown>;
|
|
2059
2339
|
/** @internal */
|
|
2060
2340
|
export type AgentToolInputCRUDCurrentDateTool$Outbound = {
|
|
2061
|
-
type:
|
|
2341
|
+
type: string;
|
|
2062
2342
|
requires_approval?: boolean | undefined;
|
|
2063
2343
|
};
|
|
2064
2344
|
/** @internal */
|
|
@@ -2066,10 +2346,14 @@ export declare const AgentToolInputCRUDCurrentDateTool$outboundSchema: z.ZodType
|
|
|
2066
2346
|
export declare function agentToolInputCRUDCurrentDateToolToJSON(agentToolInputCRUDCurrentDateTool: AgentToolInputCRUDCurrentDateTool): string;
|
|
2067
2347
|
export declare function agentToolInputCRUDCurrentDateToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDCurrentDateTool, SDKValidationError>;
|
|
2068
2348
|
/** @internal */
|
|
2349
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type>;
|
|
2350
|
+
/** @internal */
|
|
2351
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type>;
|
|
2352
|
+
/** @internal */
|
|
2069
2353
|
export declare const AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema: z.ZodType<AgentToolInputCRUDQueryKnowledgeBaseTool, z.ZodTypeDef, unknown>;
|
|
2070
2354
|
/** @internal */
|
|
2071
2355
|
export type AgentToolInputCRUDQueryKnowledgeBaseTool$Outbound = {
|
|
2072
|
-
type:
|
|
2356
|
+
type: string;
|
|
2073
2357
|
requires_approval?: boolean | undefined;
|
|
2074
2358
|
};
|
|
2075
2359
|
/** @internal */
|
|
@@ -2077,10 +2361,14 @@ export declare const AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema: z.
|
|
|
2077
2361
|
export declare function agentToolInputCRUDQueryKnowledgeBaseToolToJSON(agentToolInputCRUDQueryKnowledgeBaseTool: AgentToolInputCRUDQueryKnowledgeBaseTool): string;
|
|
2078
2362
|
export declare function agentToolInputCRUDQueryKnowledgeBaseToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDQueryKnowledgeBaseTool, SDKValidationError>;
|
|
2079
2363
|
/** @internal */
|
|
2364
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type>;
|
|
2365
|
+
/** @internal */
|
|
2366
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type>;
|
|
2367
|
+
/** @internal */
|
|
2080
2368
|
export declare const AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema: z.ZodType<AgentToolInputCRUDRetrieveKnowledgeBasesTool, z.ZodTypeDef, unknown>;
|
|
2081
2369
|
/** @internal */
|
|
2082
2370
|
export type AgentToolInputCRUDRetrieveKnowledgeBasesTool$Outbound = {
|
|
2083
|
-
type:
|
|
2371
|
+
type: string;
|
|
2084
2372
|
requires_approval?: boolean | undefined;
|
|
2085
2373
|
};
|
|
2086
2374
|
/** @internal */
|
|
@@ -2088,10 +2376,14 @@ export declare const AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema
|
|
|
2088
2376
|
export declare function agentToolInputCRUDRetrieveKnowledgeBasesToolToJSON(agentToolInputCRUDRetrieveKnowledgeBasesTool: AgentToolInputCRUDRetrieveKnowledgeBasesTool): string;
|
|
2089
2377
|
export declare function agentToolInputCRUDRetrieveKnowledgeBasesToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDRetrieveKnowledgeBasesTool, SDKValidationError>;
|
|
2090
2378
|
/** @internal */
|
|
2379
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type>;
|
|
2380
|
+
/** @internal */
|
|
2381
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type>;
|
|
2382
|
+
/** @internal */
|
|
2091
2383
|
export declare const AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema: z.ZodType<AgentToolInputCRUDDeleteMemoryDocumentTool, z.ZodTypeDef, unknown>;
|
|
2092
2384
|
/** @internal */
|
|
2093
2385
|
export type AgentToolInputCRUDDeleteMemoryDocumentTool$Outbound = {
|
|
2094
|
-
type:
|
|
2386
|
+
type: string;
|
|
2095
2387
|
requires_approval?: boolean | undefined;
|
|
2096
2388
|
};
|
|
2097
2389
|
/** @internal */
|
|
@@ -2099,10 +2391,14 @@ export declare const AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema:
|
|
|
2099
2391
|
export declare function agentToolInputCRUDDeleteMemoryDocumentToolToJSON(agentToolInputCRUDDeleteMemoryDocumentTool: AgentToolInputCRUDDeleteMemoryDocumentTool): string;
|
|
2100
2392
|
export declare function agentToolInputCRUDDeleteMemoryDocumentToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDDeleteMemoryDocumentTool, SDKValidationError>;
|
|
2101
2393
|
/** @internal */
|
|
2394
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type>;
|
|
2395
|
+
/** @internal */
|
|
2396
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type>;
|
|
2397
|
+
/** @internal */
|
|
2102
2398
|
export declare const AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema: z.ZodType<AgentToolInputCRUDRetrieveMemoryStoresTool, z.ZodTypeDef, unknown>;
|
|
2103
2399
|
/** @internal */
|
|
2104
2400
|
export type AgentToolInputCRUDRetrieveMemoryStoresTool$Outbound = {
|
|
2105
|
-
type:
|
|
2401
|
+
type: string;
|
|
2106
2402
|
requires_approval?: boolean | undefined;
|
|
2107
2403
|
};
|
|
2108
2404
|
/** @internal */
|
|
@@ -2110,10 +2406,14 @@ export declare const AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema:
|
|
|
2110
2406
|
export declare function agentToolInputCRUDRetrieveMemoryStoresToolToJSON(agentToolInputCRUDRetrieveMemoryStoresTool: AgentToolInputCRUDRetrieveMemoryStoresTool): string;
|
|
2111
2407
|
export declare function agentToolInputCRUDRetrieveMemoryStoresToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDRetrieveMemoryStoresTool, SDKValidationError>;
|
|
2112
2408
|
/** @internal */
|
|
2409
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType>;
|
|
2410
|
+
/** @internal */
|
|
2411
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType>;
|
|
2412
|
+
/** @internal */
|
|
2113
2413
|
export declare const AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema: z.ZodType<AgentToolInputCRUDWriteMemoryStoreTool, z.ZodTypeDef, unknown>;
|
|
2114
2414
|
/** @internal */
|
|
2115
2415
|
export type AgentToolInputCRUDWriteMemoryStoreTool$Outbound = {
|
|
2116
|
-
type:
|
|
2416
|
+
type: string;
|
|
2117
2417
|
requires_approval?: boolean | undefined;
|
|
2118
2418
|
};
|
|
2119
2419
|
/** @internal */
|
|
@@ -2121,10 +2421,14 @@ export declare const AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema: z.Zo
|
|
|
2121
2421
|
export declare function agentToolInputCRUDWriteMemoryStoreToolToJSON(agentToolInputCRUDWriteMemoryStoreTool: AgentToolInputCRUDWriteMemoryStoreTool): string;
|
|
2122
2422
|
export declare function agentToolInputCRUDWriteMemoryStoreToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDWriteMemoryStoreTool, SDKValidationError>;
|
|
2123
2423
|
/** @internal */
|
|
2424
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType>;
|
|
2425
|
+
/** @internal */
|
|
2426
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType>;
|
|
2427
|
+
/** @internal */
|
|
2124
2428
|
export declare const AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema: z.ZodType<AgentToolInputCRUDQueryMemoryStoreTool, z.ZodTypeDef, unknown>;
|
|
2125
2429
|
/** @internal */
|
|
2126
2430
|
export type AgentToolInputCRUDQueryMemoryStoreTool$Outbound = {
|
|
2127
|
-
type:
|
|
2431
|
+
type: string;
|
|
2128
2432
|
requires_approval?: boolean | undefined;
|
|
2129
2433
|
};
|
|
2130
2434
|
/** @internal */
|
|
@@ -2132,10 +2436,14 @@ export declare const AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema: z.Zo
|
|
|
2132
2436
|
export declare function agentToolInputCRUDQueryMemoryStoreToolToJSON(agentToolInputCRUDQueryMemoryStoreTool: AgentToolInputCRUDQueryMemoryStoreTool): string;
|
|
2133
2437
|
export declare function agentToolInputCRUDQueryMemoryStoreToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDQueryMemoryStoreTool, SDKValidationError>;
|
|
2134
2438
|
/** @internal */
|
|
2439
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType>;
|
|
2440
|
+
/** @internal */
|
|
2441
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType>;
|
|
2442
|
+
/** @internal */
|
|
2135
2443
|
export declare const AgentToolInputCRUDRetrieveAgentsTool$inboundSchema: z.ZodType<AgentToolInputCRUDRetrieveAgentsTool, z.ZodTypeDef, unknown>;
|
|
2136
2444
|
/** @internal */
|
|
2137
2445
|
export type AgentToolInputCRUDRetrieveAgentsTool$Outbound = {
|
|
2138
|
-
type:
|
|
2446
|
+
type: string;
|
|
2139
2447
|
requires_approval?: boolean | undefined;
|
|
2140
2448
|
};
|
|
2141
2449
|
/** @internal */
|
|
@@ -2143,10 +2451,14 @@ export declare const AgentToolInputCRUDRetrieveAgentsTool$outboundSchema: z.ZodT
|
|
|
2143
2451
|
export declare function agentToolInputCRUDRetrieveAgentsToolToJSON(agentToolInputCRUDRetrieveAgentsTool: AgentToolInputCRUDRetrieveAgentsTool): string;
|
|
2144
2452
|
export declare function agentToolInputCRUDRetrieveAgentsToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDRetrieveAgentsTool, SDKValidationError>;
|
|
2145
2453
|
/** @internal */
|
|
2454
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestType>;
|
|
2455
|
+
/** @internal */
|
|
2456
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsRequestType>;
|
|
2457
|
+
/** @internal */
|
|
2146
2458
|
export declare const AgentToolInputCRUDCallSubAgentTool$inboundSchema: z.ZodType<AgentToolInputCRUDCallSubAgentTool, z.ZodTypeDef, unknown>;
|
|
2147
2459
|
/** @internal */
|
|
2148
2460
|
export type AgentToolInputCRUDCallSubAgentTool$Outbound = {
|
|
2149
|
-
type:
|
|
2461
|
+
type: string;
|
|
2150
2462
|
requires_approval?: boolean | undefined;
|
|
2151
2463
|
};
|
|
2152
2464
|
/** @internal */
|
|
@@ -2154,10 +2466,14 @@ export declare const AgentToolInputCRUDCallSubAgentTool$outboundSchema: z.ZodTyp
|
|
|
2154
2466
|
export declare function agentToolInputCRUDCallSubAgentToolToJSON(agentToolInputCRUDCallSubAgentTool: AgentToolInputCRUDCallSubAgentTool): string;
|
|
2155
2467
|
export declare function agentToolInputCRUDCallSubAgentToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDCallSubAgentTool, SDKValidationError>;
|
|
2156
2468
|
/** @internal */
|
|
2469
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsType>;
|
|
2470
|
+
/** @internal */
|
|
2471
|
+
export declare const UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDAgentsType>;
|
|
2472
|
+
/** @internal */
|
|
2157
2473
|
export declare const AgentToolInputCRUDWebScraperTool$inboundSchema: z.ZodType<AgentToolInputCRUDWebScraperTool, z.ZodTypeDef, unknown>;
|
|
2158
2474
|
/** @internal */
|
|
2159
2475
|
export type AgentToolInputCRUDWebScraperTool$Outbound = {
|
|
2160
|
-
type:
|
|
2476
|
+
type: string;
|
|
2161
2477
|
requires_approval?: boolean | undefined;
|
|
2162
2478
|
};
|
|
2163
2479
|
/** @internal */
|
|
@@ -2165,10 +2481,14 @@ export declare const AgentToolInputCRUDWebScraperTool$outboundSchema: z.ZodType<
|
|
|
2165
2481
|
export declare function agentToolInputCRUDWebScraperToolToJSON(agentToolInputCRUDWebScraperTool: AgentToolInputCRUDWebScraperTool): string;
|
|
2166
2482
|
export declare function agentToolInputCRUDWebScraperToolFromJSON(jsonString: string): SafeParseResult<AgentToolInputCRUDWebScraperTool, SDKValidationError>;
|
|
2167
2483
|
/** @internal */
|
|
2484
|
+
export declare const UpdateAgentAgentToolInputCRUDType$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDType>;
|
|
2485
|
+
/** @internal */
|
|
2486
|
+
export declare const UpdateAgentAgentToolInputCRUDType$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentAgentToolInputCRUDType>;
|
|
2487
|
+
/** @internal */
|
|
2168
2488
|
export declare const AgentToolInputCRUDGoogleSearchTool$inboundSchema: z.ZodType<AgentToolInputCRUDGoogleSearchTool, z.ZodTypeDef, unknown>;
|
|
2169
2489
|
/** @internal */
|
|
2170
2490
|
export type AgentToolInputCRUDGoogleSearchTool$Outbound = {
|
|
2171
|
-
type:
|
|
2491
|
+
type: string;
|
|
2172
2492
|
requires_approval?: boolean | undefined;
|
|
2173
2493
|
};
|
|
2174
2494
|
/** @internal */
|
|
@@ -2178,7 +2498,7 @@ export declare function agentToolInputCRUDGoogleSearchToolFromJSON(jsonString: s
|
|
|
2178
2498
|
/** @internal */
|
|
2179
2499
|
export declare const UpdateAgentAgentToolInputCRUD$inboundSchema: z.ZodType<UpdateAgentAgentToolInputCRUD, z.ZodTypeDef, unknown>;
|
|
2180
2500
|
/** @internal */
|
|
2181
|
-
export type UpdateAgentAgentToolInputCRUD$Outbound = AgentToolInputCRUDGoogleSearchTool$Outbound | AgentToolInputCRUDWebScraperTool$Outbound | AgentToolInputCRUDCallSubAgentTool$Outbound | AgentToolInputCRUDRetrieveAgentsTool$Outbound | AgentToolInputCRUDQueryMemoryStoreTool$Outbound | AgentToolInputCRUDWriteMemoryStoreTool$Outbound | AgentToolInputCRUDRetrieveMemoryStoresTool$Outbound | AgentToolInputCRUDDeleteMemoryDocumentTool$Outbound | AgentToolInputCRUDRetrieveKnowledgeBasesTool$Outbound | AgentToolInputCRUDQueryKnowledgeBaseTool$Outbound | AgentToolInputCRUDCurrentDateTool$Outbound |
|
|
2501
|
+
export type UpdateAgentAgentToolInputCRUD$Outbound = AgentToolInputCRUDGoogleSearchTool$Outbound | AgentToolInputCRUDWebScraperTool$Outbound | AgentToolInputCRUDCallSubAgentTool$Outbound | AgentToolInputCRUDRetrieveAgentsTool$Outbound | AgentToolInputCRUDQueryMemoryStoreTool$Outbound | AgentToolInputCRUDWriteMemoryStoreTool$Outbound | AgentToolInputCRUDRetrieveMemoryStoresTool$Outbound | AgentToolInputCRUDDeleteMemoryDocumentTool$Outbound | AgentToolInputCRUDRetrieveKnowledgeBasesTool$Outbound | AgentToolInputCRUDQueryKnowledgeBaseTool$Outbound | AgentToolInputCRUDCurrentDateTool$Outbound | AgentToolInputCRUDMCPTool$Outbound | AgentToolInputCRUDHTTPTool$Outbound | AgentToolInputCRUDCodeExecutionTool$Outbound | AgentToolInputCRUDFunctionTool$Outbound;
|
|
2182
2502
|
/** @internal */
|
|
2183
2503
|
export declare const UpdateAgentAgentToolInputCRUD$outboundSchema: z.ZodType<UpdateAgentAgentToolInputCRUD$Outbound, z.ZodTypeDef, UpdateAgentAgentToolInputCRUD>;
|
|
2184
2504
|
export declare function updateAgentAgentToolInputCRUDToJSON(updateAgentAgentToolInputCRUD: UpdateAgentAgentToolInputCRUD): string;
|
|
@@ -2222,7 +2542,7 @@ export type UpdateAgentSettings$Outbound = {
|
|
|
2222
2542
|
max_iterations: number;
|
|
2223
2543
|
max_execution_time: number;
|
|
2224
2544
|
tool_approval_required: string;
|
|
2225
|
-
tools?: Array<AgentToolInputCRUDGoogleSearchTool$Outbound | AgentToolInputCRUDWebScraperTool$Outbound | AgentToolInputCRUDCallSubAgentTool$Outbound | AgentToolInputCRUDRetrieveAgentsTool$Outbound | AgentToolInputCRUDQueryMemoryStoreTool$Outbound | AgentToolInputCRUDWriteMemoryStoreTool$Outbound | AgentToolInputCRUDRetrieveMemoryStoresTool$Outbound | AgentToolInputCRUDDeleteMemoryDocumentTool$Outbound | AgentToolInputCRUDRetrieveKnowledgeBasesTool$Outbound | AgentToolInputCRUDQueryKnowledgeBaseTool$Outbound | AgentToolInputCRUDCurrentDateTool$Outbound |
|
|
2545
|
+
tools?: Array<AgentToolInputCRUDGoogleSearchTool$Outbound | AgentToolInputCRUDWebScraperTool$Outbound | AgentToolInputCRUDCallSubAgentTool$Outbound | AgentToolInputCRUDRetrieveAgentsTool$Outbound | AgentToolInputCRUDQueryMemoryStoreTool$Outbound | AgentToolInputCRUDWriteMemoryStoreTool$Outbound | AgentToolInputCRUDRetrieveMemoryStoresTool$Outbound | AgentToolInputCRUDDeleteMemoryDocumentTool$Outbound | AgentToolInputCRUDRetrieveKnowledgeBasesTool$Outbound | AgentToolInputCRUDQueryKnowledgeBaseTool$Outbound | AgentToolInputCRUDCurrentDateTool$Outbound | AgentToolInputCRUDMCPTool$Outbound | AgentToolInputCRUDHTTPTool$Outbound | AgentToolInputCRUDCodeExecutionTool$Outbound | AgentToolInputCRUDFunctionTool$Outbound> | undefined;
|
|
2226
2546
|
evaluators?: Array<UpdateAgentEvaluators$Outbound> | undefined;
|
|
2227
2547
|
guardrails?: Array<UpdateAgentGuardrails$Outbound> | undefined;
|
|
2228
2548
|
};
|
|
@@ -2445,6 +2765,10 @@ export declare const UpdateAgentResponseFormat$outboundSchema: z.ZodType<UpdateA
|
|
|
2445
2765
|
export declare function updateAgentResponseFormatToJSON(updateAgentResponseFormat: UpdateAgentResponseFormat): string;
|
|
2446
2766
|
export declare function updateAgentResponseFormatFromJSON(jsonString: string): SafeParseResult<UpdateAgentResponseFormat, SDKValidationError>;
|
|
2447
2767
|
/** @internal */
|
|
2768
|
+
export declare const UpdateAgentReasoningEffort$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentReasoningEffort>;
|
|
2769
|
+
/** @internal */
|
|
2770
|
+
export declare const UpdateAgentReasoningEffort$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentReasoningEffort>;
|
|
2771
|
+
/** @internal */
|
|
2448
2772
|
export declare const UpdateAgentStop$inboundSchema: z.ZodType<UpdateAgentStop, z.ZodTypeDef, unknown>;
|
|
2449
2773
|
/** @internal */
|
|
2450
2774
|
export type UpdateAgentStop$Outbound = string | Array<string>;
|
|
@@ -2624,6 +2948,10 @@ export declare const UpdateAgentFallbackModelConfigurationAgentsResponseFormat$o
|
|
|
2624
2948
|
export declare function updateAgentFallbackModelConfigurationAgentsResponseFormatToJSON(updateAgentFallbackModelConfigurationAgentsResponseFormat: UpdateAgentFallbackModelConfigurationAgentsResponseFormat): string;
|
|
2625
2949
|
export declare function updateAgentFallbackModelConfigurationAgentsResponseFormatFromJSON(jsonString: string): SafeParseResult<UpdateAgentFallbackModelConfigurationAgentsResponseFormat, SDKValidationError>;
|
|
2626
2950
|
/** @internal */
|
|
2951
|
+
export declare const UpdateAgentFallbackModelConfigurationAgentsReasoningEffort$inboundSchema: z.ZodNativeEnum<typeof UpdateAgentFallbackModelConfigurationAgentsReasoningEffort>;
|
|
2952
|
+
/** @internal */
|
|
2953
|
+
export declare const UpdateAgentFallbackModelConfigurationAgentsReasoningEffort$outboundSchema: z.ZodNativeEnum<typeof UpdateAgentFallbackModelConfigurationAgentsReasoningEffort>;
|
|
2954
|
+
/** @internal */
|
|
2627
2955
|
export declare const UpdateAgentFallbackModelConfigurationAgentsStop$inboundSchema: z.ZodType<UpdateAgentFallbackModelConfigurationAgentsStop, z.ZodTypeDef, unknown>;
|
|
2628
2956
|
/** @internal */
|
|
2629
2957
|
export type UpdateAgentFallbackModelConfigurationAgentsStop$Outbound = string | Array<string>;
|