@orq-ai/node 4.2.0-rc.28 → 4.2.0-rc.29
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 +458 -268
- package/bin/mcp-server.js.map +43 -43
- 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/conversationwithmessagesresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createagentrequest.d.ts +58 -10
- package/models/operations/createagentrequest.d.ts.map +1 -1
- package/models/operations/createagentrequest.js +59 -13
- package/models/operations/createagentrequest.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createconversationresponse.js +4 -4
- 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/createtool.d.ts +8 -8
- package/models/operations/createtool.d.ts.map +1 -1
- package/models/operations/createtool.js +23 -23
- package/models/operations/createtool.js.map +1 -1
- 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/getevals.js +28 -28
- 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/retrievecontact.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 +120 -18
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +117 -22
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +120 -18
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +117 -20
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +58 -10
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +59 -13
- package/models/operations/updateagent.js.map +1 -1
- 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/conversationwithmessagesresponse.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 +132 -15
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createconversationresponse.ts +4 -4
- 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/createtool.ts +33 -29
- 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/getevals.ts +28 -28
- 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/retrievecontact.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 +280 -36
- package/src/models/operations/streamrunagent.ts +323 -46
- package/src/models/operations/updateagent.ts +138 -15
- 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
package/bin/mcp-server.js
CHANGED
|
@@ -52904,9 +52904,9 @@ var init_config = __esm(() => {
|
|
|
52904
52904
|
SDK_METADATA = {
|
|
52905
52905
|
language: "typescript",
|
|
52906
52906
|
openapiDocVersion: "2.0",
|
|
52907
|
-
sdkVersion: "4.2.0-rc.
|
|
52907
|
+
sdkVersion: "4.2.0-rc.29",
|
|
52908
52908
|
genVersion: "2.794.1",
|
|
52909
|
-
userAgent: "speakeasy-sdk/typescript 4.2.0-rc.
|
|
52909
|
+
userAgent: "speakeasy-sdk/typescript 4.2.0-rc.29 2.794.1 2.0 @orq-ai/node"
|
|
52910
52910
|
};
|
|
52911
52911
|
});
|
|
52912
52912
|
|
|
@@ -55936,7 +55936,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
55936
55936
|
model: nullableType(stringType()).optional()
|
|
55937
55937
|
});
|
|
55938
55938
|
ConversationResponse$inboundSchema = objectType({
|
|
55939
|
-
_id: stringType().default("
|
|
55939
|
+
_id: stringType().default("conv_01keyb6f8a77pvq81kwd4vpj0y"),
|
|
55940
55940
|
kind: ConversationResponseKind$inboundSchema,
|
|
55941
55941
|
displayName: stringType(),
|
|
55942
55942
|
createdAt: numberType(),
|
|
@@ -55950,7 +55950,7 @@ var init_conversationresponse = __esm(() => {
|
|
|
55950
55950
|
});
|
|
55951
55951
|
});
|
|
55952
55952
|
ConversationResponse$outboundSchema = objectType({
|
|
55953
|
-
id: stringType().default("
|
|
55953
|
+
id: stringType().default("conv_01keyb6f8a77pvq81kwd4vpj0y"),
|
|
55954
55954
|
kind: ConversationResponseKind$outboundSchema,
|
|
55955
55955
|
displayName: stringType(),
|
|
55956
55956
|
createdAt: numberType(),
|
|
@@ -56050,7 +56050,7 @@ var init_conversationwithmessagesresponse = __esm(() => {
|
|
|
56050
56050
|
model: nullableType(stringType()).optional()
|
|
56051
56051
|
});
|
|
56052
56052
|
ConversationWithMessagesResponse$inboundSchema = objectType({
|
|
56053
|
-
_id: stringType().default("
|
|
56053
|
+
_id: stringType().default("conv_01keyb6f8fdc01mq7784dpmkjx"),
|
|
56054
56054
|
kind: ConversationWithMessagesResponseKind$inboundSchema,
|
|
56055
56055
|
displayName: stringType(),
|
|
56056
56056
|
createdAt: numberType(),
|
|
@@ -56065,7 +56065,7 @@ var init_conversationwithmessagesresponse = __esm(() => {
|
|
|
56065
56065
|
});
|
|
56066
56066
|
});
|
|
56067
56067
|
ConversationWithMessagesResponse$outboundSchema = objectType({
|
|
56068
|
-
id: stringType().default("
|
|
56068
|
+
id: stringType().default("conv_01keyb6f8fdc01mq7784dpmkjx"),
|
|
56069
56069
|
kind: ConversationWithMessagesResponseKind$outboundSchema,
|
|
56070
56070
|
displayName: stringType(),
|
|
56071
56071
|
createdAt: numberType(),
|
|
@@ -57559,7 +57559,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
57559
57559
|
init_esm();
|
|
57560
57560
|
init_primitives();
|
|
57561
57561
|
ReasoningPart$inboundSchema = objectType({
|
|
57562
|
-
_id: stringType().default("
|
|
57562
|
+
_id: stringType().default("reasoning_01keyb6eyp0g01fa3cdebhbhmy"),
|
|
57563
57563
|
metadata: recordType(anyType()).optional(),
|
|
57564
57564
|
kind: literalType("reasoning"),
|
|
57565
57565
|
reasoning: stringType(),
|
|
@@ -57570,7 +57570,7 @@ var init_reasoningpart = __esm(() => {
|
|
|
57570
57570
|
});
|
|
57571
57571
|
});
|
|
57572
57572
|
ReasoningPart$outboundSchema = objectType({
|
|
57573
|
-
id: stringType().default("
|
|
57573
|
+
id: stringType().default("reasoning_01keyb6eyp0g01fa3cdebhbhmy"),
|
|
57574
57574
|
metadata: recordType(anyType()).optional(),
|
|
57575
57575
|
kind: literalType("reasoning"),
|
|
57576
57576
|
reasoning: stringType(),
|
|
@@ -57640,7 +57640,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
57640
57640
|
PartKind$inboundSchema = nativeEnumType(PartKind);
|
|
57641
57641
|
PartKind$outboundSchema = PartKind$inboundSchema;
|
|
57642
57642
|
PartReasoningPart$inboundSchema = objectType({
|
|
57643
|
-
_id: stringType().default("
|
|
57643
|
+
_id: stringType().default("reasoning_01keyb6ez0f714kz21hdw6zvax"),
|
|
57644
57644
|
metadata: recordType(anyType()).optional(),
|
|
57645
57645
|
kind: PartKind$inboundSchema,
|
|
57646
57646
|
reasoning: stringType(),
|
|
@@ -57651,7 +57651,7 @@ var init_partdoneevent = __esm(() => {
|
|
|
57651
57651
|
});
|
|
57652
57652
|
});
|
|
57653
57653
|
PartReasoningPart$outboundSchema = objectType({
|
|
57654
|
-
id: stringType().default("
|
|
57654
|
+
id: stringType().default("reasoning_01keyb6ez0f714kz21hdw6zvax"),
|
|
57655
57655
|
metadata: recordType(anyType()).optional(),
|
|
57656
57656
|
kind: PartKind$outboundSchema,
|
|
57657
57657
|
reasoning: stringType(),
|
|
@@ -58663,7 +58663,7 @@ var init_components = __esm(() => {
|
|
|
58663
58663
|
});
|
|
58664
58664
|
|
|
58665
58665
|
// src/models/operations/createagentrequest.ts
|
|
58666
|
-
var Voice, Format2, ReasoningEffort, ToolChoiceType, ToolChoice1, Modalities, Id1, ExecuteOn2, FallbackModelConfigurationVoice, FallbackModelConfigurationFormat, FallbackModelConfigurationReasoningEffort, CreateAgentRequestToolChoiceType, CreateAgentRequestToolChoice1, FallbackModelConfigurationModalities, CreateAgentRequestId1, FallbackModelConfigurationExecuteOn, ToolApprovalRequired2, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsType, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType, CreateAgentRequestAgentToolInputCRUDAgentsRequestType, CreateAgentRequestAgentToolInputCRUDAgentsType, CreateAgentRequestAgentToolInputCRUDType, AgentToolInputCRUDType, CreateAgentRequestExecuteOn, CreateAgentRequestAgentsExecuteOn, Source, CreateAgentRequestStatus, CreateAgentRequestToolApprovalRequired, CreateAgentRequestAgentsResponseExecuteOn, CreateAgentRequestAgentsResponse201ExecuteOn, CreateAgentRequestVoice, CreateAgentRequestFormat, CreateAgentRequestReasoningEffort, CreateAgentRequestToolChoiceAgentsType, CreateAgentRequestToolChoiceAgents1, CreateAgentRequestModalities, CreateAgentRequestIdAgents1, CreateAgentRequestAgentsResponse201ApplicationJSONExecuteOn, CreateAgentRequestFallbackModelConfigurationVoice, CreateAgentRequestFallbackModelConfigurationFormat, CreateAgentRequestFallbackModelConfigurationReasoningEffort, CreateAgentRequestToolChoiceAgentsResponseType, CreateAgentRequestToolChoiceAgentsResponse1, CreateAgentRequestFallbackModelConfigurationModalities, CreateAgentRequestIdAgentsResponse1, CreateAgentRequestFallbackModelConfigurationExecuteOn, CreateAgentRequestSource, Voice$inboundSchema, Voice$outboundSchema, Format$inboundSchema2, Format$outboundSchema2, ModelConfigurationAudio$inboundSchema, ModelConfigurationAudio$outboundSchema, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, JSONSchema$inboundSchema, JSONSchema$outboundSchema, JSONObject$inboundSchema, JSONObject$outboundSchema, Text$inboundSchema, Text$outboundSchema, ResponseFormat$inboundSchema, ResponseFormat$outboundSchema, ReasoningEffort$inboundSchema, ReasoningEffort$outboundSchema, Stop$inboundSchema, Stop$outboundSchema, StreamOptions$inboundSchema, StreamOptions$outboundSchema, Thinking$inboundSchema, Thinking$outboundSchema, ToolChoiceType$inboundSchema, ToolChoiceType$outboundSchema, ToolChoiceFunction$inboundSchema, ToolChoiceFunction$outboundSchema, ToolChoice2$inboundSchema, ToolChoice2$outboundSchema, ToolChoice1$inboundSchema, ToolChoice1$outboundSchema, ToolChoice$inboundSchema, ToolChoice$outboundSchema, Modalities$inboundSchema, Modalities$outboundSchema, Id1$inboundSchema, Id1$outboundSchema, Id$inboundSchema, Id$outboundSchema, ExecuteOn$inboundSchema2, ExecuteOn$outboundSchema2, Guardrails$inboundSchema2, Guardrails$outboundSchema2, ParametersT$inboundSchema, ParametersT$outboundSchema, Retry$inboundSchema, Retry$outboundSchema, ModelConfiguration2$inboundSchema, ModelConfiguration2$outboundSchema, ModelConfiguration$inboundSchema, ModelConfiguration$outboundSchema, FallbackModelConfigurationVoice$inboundSchema, FallbackModelConfigurationVoice$outboundSchema, FallbackModelConfigurationFormat$inboundSchema, FallbackModelConfigurationFormat$outboundSchema, FallbackModelConfigurationAudio$inboundSchema, FallbackModelConfigurationAudio$outboundSchema, CreateAgentRequestResponseFormatAgentsJsonSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsJsonSchema$outboundSchema, CreateAgentRequestResponseFormatJSONSchema$inboundSchema, CreateAgentRequestResponseFormatJSONSchema$outboundSchema, ResponseFormatJSONObject$inboundSchema, ResponseFormatJSONObject$outboundSchema, ResponseFormatText$inboundSchema, ResponseFormatText$outboundSchema, FallbackModelConfigurationResponseFormat$inboundSchema, FallbackModelConfigurationResponseFormat$outboundSchema, FallbackModelConfigurationReasoningEffort$inboundSchema, FallbackModelConfigurationReasoningEffort$outboundSchema, FallbackModelConfigurationStop$inboundSchema, FallbackModelConfigurationStop$outboundSchema, FallbackModelConfigurationStreamOptions$inboundSchema, FallbackModelConfigurationStreamOptions$outboundSchema, FallbackModelConfigurationThinking$inboundSchema, FallbackModelConfigurationThinking$outboundSchema, CreateAgentRequestToolChoiceType$inboundSchema, CreateAgentRequestToolChoiceType$outboundSchema, CreateAgentRequestToolChoiceFunction$inboundSchema, CreateAgentRequestToolChoiceFunction$outboundSchema, CreateAgentRequestToolChoice2$inboundSchema, CreateAgentRequestToolChoice2$outboundSchema, CreateAgentRequestToolChoice1$inboundSchema, CreateAgentRequestToolChoice1$outboundSchema, FallbackModelConfigurationToolChoice$inboundSchema, FallbackModelConfigurationToolChoice$outboundSchema, FallbackModelConfigurationModalities$inboundSchema, FallbackModelConfigurationModalities$outboundSchema, CreateAgentRequestId1$inboundSchema, CreateAgentRequestId1$outboundSchema, FallbackModelConfigurationId$inboundSchema, FallbackModelConfigurationId$outboundSchema, FallbackModelConfigurationExecuteOn$inboundSchema, FallbackModelConfigurationExecuteOn$outboundSchema, FallbackModelConfigurationGuardrails$inboundSchema, FallbackModelConfigurationGuardrails$outboundSchema, FallbackModelConfigurationParameters$inboundSchema, FallbackModelConfigurationParameters$outboundSchema, FallbackModelConfigurationRetry$inboundSchema, FallbackModelConfigurationRetry$outboundSchema, FallbackModelConfiguration2$inboundSchema, FallbackModelConfiguration2$outboundSchema, FallbackModelConfiguration$inboundSchema, FallbackModelConfiguration$outboundSchema, ToolApprovalRequired$inboundSchema2, ToolApprovalRequired$outboundSchema2, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema, MCPTool$inboundSchema, MCPTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, FunctionTool$inboundSchema, FunctionTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, CodeExecutionTool$inboundSchema, CodeExecutionTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, HTTPTool$inboundSchema, HTTPTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, CurrentDateTool$inboundSchema, CurrentDateTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, QueryKnowledgeBaseTool$inboundSchema, QueryKnowledgeBaseTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, RetrieveKnowledgeBasesTool$inboundSchema, RetrieveKnowledgeBasesTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, DeleteMemoryDocumentTool$inboundSchema, DeleteMemoryDocumentTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, RetrieveMemoryStoresTool$inboundSchema, RetrieveMemoryStoresTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, WriteMemoryStoreTool$inboundSchema, WriteMemoryStoreTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, QueryMemoryStoreTool$inboundSchema, QueryMemoryStoreTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestType$outboundSchema, RetrieveAgentsTool$inboundSchema, RetrieveAgentsTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsType$outboundSchema, CallSubAgentTool$inboundSchema, CallSubAgentTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDType$inboundSchema, CreateAgentRequestAgentToolInputCRUDType$outboundSchema, WebScraperTool$inboundSchema, WebScraperTool$outboundSchema, AgentToolInputCRUDType$inboundSchema, AgentToolInputCRUDType$outboundSchema, GoogleSearchTool$inboundSchema, GoogleSearchTool$outboundSchema, AgentToolInputCRUD$inboundSchema, AgentToolInputCRUD$outboundSchema, CreateAgentRequestExecuteOn$inboundSchema, CreateAgentRequestExecuteOn$outboundSchema, Evaluators$inboundSchema2, Evaluators$outboundSchema2, CreateAgentRequestAgentsExecuteOn$inboundSchema, CreateAgentRequestAgentsExecuteOn$outboundSchema, CreateAgentRequestGuardrails$inboundSchema, CreateAgentRequestGuardrails$outboundSchema, Settings$inboundSchema2, Settings$outboundSchema2, KnowledgeBases$inboundSchema, KnowledgeBases$outboundSchema, TeamOfAgents$inboundSchema, TeamOfAgents$outboundSchema, Source$inboundSchema, Source$outboundSchema, CreateAgentRequestRequestBody$inboundSchema, CreateAgentRequestRequestBody$outboundSchema, CreateAgentRequestStatus$inboundSchema, CreateAgentRequestStatus$outboundSchema, CreateAgentRequestToolApprovalRequired$inboundSchema, CreateAgentRequestToolApprovalRequired$outboundSchema, Conditions$inboundSchema2, Conditions$outboundSchema2, CreateAgentRequestTools$inboundSchema, CreateAgentRequestTools$outboundSchema, CreateAgentRequestAgentsResponseExecuteOn$inboundSchema, CreateAgentRequestAgentsResponseExecuteOn$outboundSchema, CreateAgentRequestEvaluators$inboundSchema, CreateAgentRequestEvaluators$outboundSchema, CreateAgentRequestAgentsResponse201ExecuteOn$inboundSchema, CreateAgentRequestAgentsResponse201ExecuteOn$outboundSchema, CreateAgentRequestAgentsGuardrails$inboundSchema, CreateAgentRequestAgentsGuardrails$outboundSchema, CreateAgentRequestSettings$inboundSchema, CreateAgentRequestSettings$outboundSchema, CreateAgentRequestVoice$inboundSchema, CreateAgentRequestVoice$outboundSchema, CreateAgentRequestFormat$inboundSchema, CreateAgentRequestFormat$outboundSchema, CreateAgentRequestAudio$inboundSchema, CreateAgentRequestAudio$outboundSchema, CreateAgentRequestResponseFormatAgentsResponseJsonSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsResponseJsonSchema$outboundSchema, CreateAgentRequestResponseFormatAgentsResponse201JSONSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsResponse201JSONSchema$outboundSchema, CreateAgentRequestResponseFormatJSONObject$inboundSchema, CreateAgentRequestResponseFormatJSONObject$outboundSchema, CreateAgentRequestResponseFormatText$inboundSchema, CreateAgentRequestResponseFormatText$outboundSchema, CreateAgentRequestResponseFormat$inboundSchema, CreateAgentRequestResponseFormat$outboundSchema, CreateAgentRequestReasoningEffort$inboundSchema, CreateAgentRequestReasoningEffort$outboundSchema, CreateAgentRequestStop$inboundSchema, CreateAgentRequestStop$outboundSchema, CreateAgentRequestStreamOptions$inboundSchema, CreateAgentRequestStreamOptions$outboundSchema, CreateAgentRequestThinking$inboundSchema, CreateAgentRequestThinking$outboundSchema, CreateAgentRequestToolChoiceAgentsType$inboundSchema, CreateAgentRequestToolChoiceAgentsType$outboundSchema, CreateAgentRequestToolChoiceAgentsFunction$inboundSchema, CreateAgentRequestToolChoiceAgentsFunction$outboundSchema, CreateAgentRequestToolChoiceAgents2$inboundSchema, CreateAgentRequestToolChoiceAgents2$outboundSchema, CreateAgentRequestToolChoiceAgents1$inboundSchema, CreateAgentRequestToolChoiceAgents1$outboundSchema, CreateAgentRequestToolChoice$inboundSchema, CreateAgentRequestToolChoice$outboundSchema, CreateAgentRequestModalities$inboundSchema, CreateAgentRequestModalities$outboundSchema, CreateAgentRequestIdAgents1$inboundSchema, CreateAgentRequestIdAgents1$outboundSchema, CreateAgentRequestId$inboundSchema, CreateAgentRequestId$outboundSchema, CreateAgentRequestAgentsResponse201ApplicationJSONExecuteOn$inboundSchema, CreateAgentRequestAgentsResponse201ApplicationJSONExecuteOn$outboundSchema, CreateAgentRequestAgentsResponseGuardrails$inboundSchema, CreateAgentRequestAgentsResponseGuardrails$outboundSchema, CreateAgentRequestParameters$inboundSchema, CreateAgentRequestParameters$outboundSchema, CreateAgentRequestRetry$inboundSchema, CreateAgentRequestRetry$outboundSchema, CreateAgentRequestFallbackModelConfigurationVoice$inboundSchema, CreateAgentRequestFallbackModelConfigurationVoice$outboundSchema, CreateAgentRequestFallbackModelConfigurationFormat$inboundSchema, CreateAgentRequestFallbackModelConfigurationFormat$outboundSchema, CreateAgentRequestFallbackModelConfigurationAudio$inboundSchema, CreateAgentRequestFallbackModelConfigurationAudio$outboundSchema, CreateAgentRequestResponseFormatAgentsResponse201ApplicationJSONJSONSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsResponse201ApplicationJSONJSONSchema$outboundSchema, CreateAgentRequestResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$outboundSchema, CreateAgentRequestResponseFormatAgentsJSONObject$inboundSchema, CreateAgentRequestResponseFormatAgentsJSONObject$outboundSchema, CreateAgentRequestResponseFormatAgentsText$inboundSchema, CreateAgentRequestResponseFormatAgentsText$outboundSchema, CreateAgentRequestFallbackModelConfigurationResponseFormat$inboundSchema, CreateAgentRequestFallbackModelConfigurationResponseFormat$outboundSchema, CreateAgentRequestFallbackModelConfigurationReasoningEffort$inboundSchema, CreateAgentRequestFallbackModelConfigurationReasoningEffort$outboundSchema, CreateAgentRequestFallbackModelConfigurationStop$inboundSchema, CreateAgentRequestFallbackModelConfigurationStop$outboundSchema, CreateAgentRequestFallbackModelConfigurationStreamOptions$inboundSchema, CreateAgentRequestFallbackModelConfigurationStreamOptions$outboundSchema, CreateAgentRequestFallbackModelConfigurationThinking$inboundSchema, CreateAgentRequestFallbackModelConfigurationThinking$outboundSchema, CreateAgentRequestToolChoiceAgentsResponseType$inboundSchema, CreateAgentRequestToolChoiceAgentsResponseType$outboundSchema, CreateAgentRequestToolChoiceAgentsResponseFunction$inboundSchema, CreateAgentRequestToolChoiceAgentsResponseFunction$outboundSchema, CreateAgentRequestToolChoiceAgentsResponse2$inboundSchema, CreateAgentRequestToolChoiceAgentsResponse2$outboundSchema, CreateAgentRequestToolChoiceAgentsResponse1$inboundSchema, CreateAgentRequestToolChoiceAgentsResponse1$outboundSchema, CreateAgentRequestFallbackModelConfigurationToolChoice$inboundSchema, CreateAgentRequestFallbackModelConfigurationToolChoice$outboundSchema, CreateAgentRequestFallbackModelConfigurationModalities$inboundSchema, CreateAgentRequestFallbackModelConfigurationModalities$outboundSchema, CreateAgentRequestIdAgentsResponse1$inboundSchema, CreateAgentRequestIdAgentsResponse1$outboundSchema, CreateAgentRequestFallbackModelConfigurationId$inboundSchema, CreateAgentRequestFallbackModelConfigurationId$outboundSchema, CreateAgentRequestFallbackModelConfigurationExecuteOn$inboundSchema, CreateAgentRequestFallbackModelConfigurationExecuteOn$outboundSchema, CreateAgentRequestFallbackModelConfigurationGuardrails$inboundSchema, CreateAgentRequestFallbackModelConfigurationGuardrails$outboundSchema, CreateAgentRequestFallbackModelConfigurationParameters$inboundSchema, CreateAgentRequestFallbackModelConfigurationParameters$outboundSchema, CreateAgentRequestFallbackModelConfigurationRetry$inboundSchema, CreateAgentRequestFallbackModelConfigurationRetry$outboundSchema, CreateAgentRequestFallbackModelConfiguration2$inboundSchema, CreateAgentRequestFallbackModelConfiguration2$outboundSchema, CreateAgentRequestFallbackModelConfiguration$inboundSchema, CreateAgentRequestFallbackModelConfiguration$outboundSchema, Model$inboundSchema, Model$outboundSchema, CreateAgentRequestTeamOfAgents$inboundSchema, CreateAgentRequestTeamOfAgents$outboundSchema, Metrics$inboundSchema, Metrics$outboundSchema, CreateAgentRequestKnowledgeBases$inboundSchema, CreateAgentRequestKnowledgeBases$outboundSchema, CreateAgentRequestSource$inboundSchema, CreateAgentRequestSource$outboundSchema, CreateAgentRequestResponseBody$inboundSchema, CreateAgentRequestResponseBody$outboundSchema;
|
|
58666
|
+
var Voice, Format2, ReasoningEffort, ToolChoiceType, ToolChoice1, Modalities, Id1, ExecuteOn2, FallbackModelConfigurationVoice, FallbackModelConfigurationFormat, FallbackModelConfigurationReasoningEffort, CreateAgentRequestToolChoiceType, CreateAgentRequestToolChoice1, FallbackModelConfigurationModalities, CreateAgentRequestId1, FallbackModelConfigurationExecuteOn, ToolApprovalRequired2, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsType, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType, CreateAgentRequestAgentToolInputCRUDAgentsRequestType, CreateAgentRequestAgentToolInputCRUDAgentsType, CreateAgentRequestAgentToolInputCRUDType, AgentToolInputCRUDType, CreateAgentRequestExecuteOn, CreateAgentRequestAgentsExecuteOn, Source, CreateAgentRequestStatus, CreateAgentRequestToolApprovalRequired, CreateAgentRequestAgentsResponseExecuteOn, CreateAgentRequestAgentsResponse201ExecuteOn, CreateAgentRequestVoice, CreateAgentRequestFormat, CreateAgentRequestReasoningEffort, CreateAgentRequestToolChoiceAgentsType, CreateAgentRequestToolChoiceAgents1, CreateAgentRequestModalities, CreateAgentRequestIdAgents1, CreateAgentRequestAgentsResponse201ApplicationJSONExecuteOn, CreateAgentRequestFallbackModelConfigurationVoice, CreateAgentRequestFallbackModelConfigurationFormat, CreateAgentRequestFallbackModelConfigurationReasoningEffort, CreateAgentRequestToolChoiceAgentsResponseType, CreateAgentRequestToolChoiceAgentsResponse1, CreateAgentRequestFallbackModelConfigurationModalities, CreateAgentRequestIdAgentsResponse1, CreateAgentRequestFallbackModelConfigurationExecuteOn, CreateAgentRequestSource, Voice$inboundSchema, Voice$outboundSchema, Format$inboundSchema2, Format$outboundSchema2, ModelConfigurationAudio$inboundSchema, ModelConfigurationAudio$outboundSchema, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, JSONSchema$inboundSchema, JSONSchema$outboundSchema, JSONObject$inboundSchema, JSONObject$outboundSchema, Text$inboundSchema, Text$outboundSchema, ResponseFormat$inboundSchema, ResponseFormat$outboundSchema, ReasoningEffort$inboundSchema, ReasoningEffort$outboundSchema, Stop$inboundSchema, Stop$outboundSchema, StreamOptions$inboundSchema, StreamOptions$outboundSchema, Thinking$inboundSchema, Thinking$outboundSchema, ToolChoiceType$inboundSchema, ToolChoiceType$outboundSchema, ToolChoiceFunction$inboundSchema, ToolChoiceFunction$outboundSchema, ToolChoice2$inboundSchema, ToolChoice2$outboundSchema, ToolChoice1$inboundSchema, ToolChoice1$outboundSchema, ToolChoice$inboundSchema, ToolChoice$outboundSchema, Modalities$inboundSchema, Modalities$outboundSchema, Id1$inboundSchema, Id1$outboundSchema, Id$inboundSchema, Id$outboundSchema, ExecuteOn$inboundSchema2, ExecuteOn$outboundSchema2, Guardrails$inboundSchema2, Guardrails$outboundSchema2, ParametersT$inboundSchema, ParametersT$outboundSchema, Retry$inboundSchema, Retry$outboundSchema, ModelConfiguration2$inboundSchema, ModelConfiguration2$outboundSchema, ModelConfiguration$inboundSchema, ModelConfiguration$outboundSchema, FallbackModelConfigurationVoice$inboundSchema, FallbackModelConfigurationVoice$outboundSchema, FallbackModelConfigurationFormat$inboundSchema, FallbackModelConfigurationFormat$outboundSchema, FallbackModelConfigurationAudio$inboundSchema, FallbackModelConfigurationAudio$outboundSchema, CreateAgentRequestResponseFormatAgentsJsonSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsJsonSchema$outboundSchema, CreateAgentRequestResponseFormatJSONSchema$inboundSchema, CreateAgentRequestResponseFormatJSONSchema$outboundSchema, ResponseFormatJSONObject$inboundSchema, ResponseFormatJSONObject$outboundSchema, ResponseFormatText$inboundSchema, ResponseFormatText$outboundSchema, FallbackModelConfigurationResponseFormat$inboundSchema, FallbackModelConfigurationResponseFormat$outboundSchema, FallbackModelConfigurationReasoningEffort$inboundSchema, FallbackModelConfigurationReasoningEffort$outboundSchema, FallbackModelConfigurationStop$inboundSchema, FallbackModelConfigurationStop$outboundSchema, FallbackModelConfigurationStreamOptions$inboundSchema, FallbackModelConfigurationStreamOptions$outboundSchema, FallbackModelConfigurationThinking$inboundSchema, FallbackModelConfigurationThinking$outboundSchema, CreateAgentRequestToolChoiceType$inboundSchema, CreateAgentRequestToolChoiceType$outboundSchema, CreateAgentRequestToolChoiceFunction$inboundSchema, CreateAgentRequestToolChoiceFunction$outboundSchema, CreateAgentRequestToolChoice2$inboundSchema, CreateAgentRequestToolChoice2$outboundSchema, CreateAgentRequestToolChoice1$inboundSchema, CreateAgentRequestToolChoice1$outboundSchema, FallbackModelConfigurationToolChoice$inboundSchema, FallbackModelConfigurationToolChoice$outboundSchema, FallbackModelConfigurationModalities$inboundSchema, FallbackModelConfigurationModalities$outboundSchema, CreateAgentRequestId1$inboundSchema, CreateAgentRequestId1$outboundSchema, FallbackModelConfigurationId$inboundSchema, FallbackModelConfigurationId$outboundSchema, FallbackModelConfigurationExecuteOn$inboundSchema, FallbackModelConfigurationExecuteOn$outboundSchema, FallbackModelConfigurationGuardrails$inboundSchema, FallbackModelConfigurationGuardrails$outboundSchema, FallbackModelConfigurationParameters$inboundSchema, FallbackModelConfigurationParameters$outboundSchema, FallbackModelConfigurationRetry$inboundSchema, FallbackModelConfigurationRetry$outboundSchema, FallbackModelConfiguration2$inboundSchema, FallbackModelConfiguration2$outboundSchema, FallbackModelConfiguration$inboundSchema, FallbackModelConfiguration$outboundSchema, ToolApprovalRequired$inboundSchema2, ToolApprovalRequired$outboundSchema2, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema, MCPTool$inboundSchema, MCPTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema, JSONSchemaTool$inboundSchema, JSONSchemaTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, FunctionTool$inboundSchema, FunctionTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, CodeExecutionTool$inboundSchema, CodeExecutionTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, HTTPTool$inboundSchema, HTTPTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, CurrentDateTool$inboundSchema, CurrentDateTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, QueryKnowledgeBaseTool$inboundSchema, QueryKnowledgeBaseTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, RetrieveKnowledgeBasesTool$inboundSchema, RetrieveKnowledgeBasesTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, DeleteMemoryDocumentTool$inboundSchema, DeleteMemoryDocumentTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, RetrieveMemoryStoresTool$inboundSchema, RetrieveMemoryStoresTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, WriteMemoryStoreTool$inboundSchema, WriteMemoryStoreTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, QueryMemoryStoreTool$inboundSchema, QueryMemoryStoreTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsRequestType$outboundSchema, RetrieveAgentsTool$inboundSchema, RetrieveAgentsTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsType$inboundSchema, CreateAgentRequestAgentToolInputCRUDAgentsType$outboundSchema, CallSubAgentTool$inboundSchema, CallSubAgentTool$outboundSchema, CreateAgentRequestAgentToolInputCRUDType$inboundSchema, CreateAgentRequestAgentToolInputCRUDType$outboundSchema, WebScraperTool$inboundSchema, WebScraperTool$outboundSchema, AgentToolInputCRUDType$inboundSchema, AgentToolInputCRUDType$outboundSchema, GoogleSearchTool$inboundSchema, GoogleSearchTool$outboundSchema, AgentToolInputCRUD$inboundSchema, AgentToolInputCRUD$outboundSchema, CreateAgentRequestExecuteOn$inboundSchema, CreateAgentRequestExecuteOn$outboundSchema, Evaluators$inboundSchema2, Evaluators$outboundSchema2, CreateAgentRequestAgentsExecuteOn$inboundSchema, CreateAgentRequestAgentsExecuteOn$outboundSchema, CreateAgentRequestGuardrails$inboundSchema, CreateAgentRequestGuardrails$outboundSchema, Settings$inboundSchema2, Settings$outboundSchema2, KnowledgeBases$inboundSchema, KnowledgeBases$outboundSchema, TeamOfAgents$inboundSchema, TeamOfAgents$outboundSchema, Source$inboundSchema, Source$outboundSchema, CreateAgentRequestRequestBody$inboundSchema, CreateAgentRequestRequestBody$outboundSchema, CreateAgentRequestStatus$inboundSchema, CreateAgentRequestStatus$outboundSchema, CreateAgentRequestToolApprovalRequired$inboundSchema, CreateAgentRequestToolApprovalRequired$outboundSchema, Conditions$inboundSchema2, Conditions$outboundSchema2, CreateAgentRequestTools$inboundSchema, CreateAgentRequestTools$outboundSchema, CreateAgentRequestAgentsResponseExecuteOn$inboundSchema, CreateAgentRequestAgentsResponseExecuteOn$outboundSchema, CreateAgentRequestEvaluators$inboundSchema, CreateAgentRequestEvaluators$outboundSchema, CreateAgentRequestAgentsResponse201ExecuteOn$inboundSchema, CreateAgentRequestAgentsResponse201ExecuteOn$outboundSchema, CreateAgentRequestAgentsGuardrails$inboundSchema, CreateAgentRequestAgentsGuardrails$outboundSchema, CreateAgentRequestSettings$inboundSchema, CreateAgentRequestSettings$outboundSchema, CreateAgentRequestVoice$inboundSchema, CreateAgentRequestVoice$outboundSchema, CreateAgentRequestFormat$inboundSchema, CreateAgentRequestFormat$outboundSchema, CreateAgentRequestAudio$inboundSchema, CreateAgentRequestAudio$outboundSchema, CreateAgentRequestResponseFormatAgentsResponseJsonSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsResponseJsonSchema$outboundSchema, CreateAgentRequestResponseFormatAgentsResponse201JSONSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsResponse201JSONSchema$outboundSchema, CreateAgentRequestResponseFormatJSONObject$inboundSchema, CreateAgentRequestResponseFormatJSONObject$outboundSchema, CreateAgentRequestResponseFormatText$inboundSchema, CreateAgentRequestResponseFormatText$outboundSchema, CreateAgentRequestResponseFormat$inboundSchema, CreateAgentRequestResponseFormat$outboundSchema, CreateAgentRequestReasoningEffort$inboundSchema, CreateAgentRequestReasoningEffort$outboundSchema, CreateAgentRequestStop$inboundSchema, CreateAgentRequestStop$outboundSchema, CreateAgentRequestStreamOptions$inboundSchema, CreateAgentRequestStreamOptions$outboundSchema, CreateAgentRequestThinking$inboundSchema, CreateAgentRequestThinking$outboundSchema, CreateAgentRequestToolChoiceAgentsType$inboundSchema, CreateAgentRequestToolChoiceAgentsType$outboundSchema, CreateAgentRequestToolChoiceAgentsFunction$inboundSchema, CreateAgentRequestToolChoiceAgentsFunction$outboundSchema, CreateAgentRequestToolChoiceAgents2$inboundSchema, CreateAgentRequestToolChoiceAgents2$outboundSchema, CreateAgentRequestToolChoiceAgents1$inboundSchema, CreateAgentRequestToolChoiceAgents1$outboundSchema, CreateAgentRequestToolChoice$inboundSchema, CreateAgentRequestToolChoice$outboundSchema, CreateAgentRequestModalities$inboundSchema, CreateAgentRequestModalities$outboundSchema, CreateAgentRequestIdAgents1$inboundSchema, CreateAgentRequestIdAgents1$outboundSchema, CreateAgentRequestId$inboundSchema, CreateAgentRequestId$outboundSchema, CreateAgentRequestAgentsResponse201ApplicationJSONExecuteOn$inboundSchema, CreateAgentRequestAgentsResponse201ApplicationJSONExecuteOn$outboundSchema, CreateAgentRequestAgentsResponseGuardrails$inboundSchema, CreateAgentRequestAgentsResponseGuardrails$outboundSchema, CreateAgentRequestParameters$inboundSchema, CreateAgentRequestParameters$outboundSchema, CreateAgentRequestRetry$inboundSchema, CreateAgentRequestRetry$outboundSchema, CreateAgentRequestFallbackModelConfigurationVoice$inboundSchema, CreateAgentRequestFallbackModelConfigurationVoice$outboundSchema, CreateAgentRequestFallbackModelConfigurationFormat$inboundSchema, CreateAgentRequestFallbackModelConfigurationFormat$outboundSchema, CreateAgentRequestFallbackModelConfigurationAudio$inboundSchema, CreateAgentRequestFallbackModelConfigurationAudio$outboundSchema, CreateAgentRequestResponseFormatAgentsResponse201ApplicationJSONJSONSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsResponse201ApplicationJSONJSONSchema$outboundSchema, CreateAgentRequestResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$inboundSchema, CreateAgentRequestResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$outboundSchema, CreateAgentRequestResponseFormatAgentsJSONObject$inboundSchema, CreateAgentRequestResponseFormatAgentsJSONObject$outboundSchema, CreateAgentRequestResponseFormatAgentsText$inboundSchema, CreateAgentRequestResponseFormatAgentsText$outboundSchema, CreateAgentRequestFallbackModelConfigurationResponseFormat$inboundSchema, CreateAgentRequestFallbackModelConfigurationResponseFormat$outboundSchema, CreateAgentRequestFallbackModelConfigurationReasoningEffort$inboundSchema, CreateAgentRequestFallbackModelConfigurationReasoningEffort$outboundSchema, CreateAgentRequestFallbackModelConfigurationStop$inboundSchema, CreateAgentRequestFallbackModelConfigurationStop$outboundSchema, CreateAgentRequestFallbackModelConfigurationStreamOptions$inboundSchema, CreateAgentRequestFallbackModelConfigurationStreamOptions$outboundSchema, CreateAgentRequestFallbackModelConfigurationThinking$inboundSchema, CreateAgentRequestFallbackModelConfigurationThinking$outboundSchema, CreateAgentRequestToolChoiceAgentsResponseType$inboundSchema, CreateAgentRequestToolChoiceAgentsResponseType$outboundSchema, CreateAgentRequestToolChoiceAgentsResponseFunction$inboundSchema, CreateAgentRequestToolChoiceAgentsResponseFunction$outboundSchema, CreateAgentRequestToolChoiceAgentsResponse2$inboundSchema, CreateAgentRequestToolChoiceAgentsResponse2$outboundSchema, CreateAgentRequestToolChoiceAgentsResponse1$inboundSchema, CreateAgentRequestToolChoiceAgentsResponse1$outboundSchema, CreateAgentRequestFallbackModelConfigurationToolChoice$inboundSchema, CreateAgentRequestFallbackModelConfigurationToolChoice$outboundSchema, CreateAgentRequestFallbackModelConfigurationModalities$inboundSchema, CreateAgentRequestFallbackModelConfigurationModalities$outboundSchema, CreateAgentRequestIdAgentsResponse1$inboundSchema, CreateAgentRequestIdAgentsResponse1$outboundSchema, CreateAgentRequestFallbackModelConfigurationId$inboundSchema, CreateAgentRequestFallbackModelConfigurationId$outboundSchema, CreateAgentRequestFallbackModelConfigurationExecuteOn$inboundSchema, CreateAgentRequestFallbackModelConfigurationExecuteOn$outboundSchema, CreateAgentRequestFallbackModelConfigurationGuardrails$inboundSchema, CreateAgentRequestFallbackModelConfigurationGuardrails$outboundSchema, CreateAgentRequestFallbackModelConfigurationParameters$inboundSchema, CreateAgentRequestFallbackModelConfigurationParameters$outboundSchema, CreateAgentRequestFallbackModelConfigurationRetry$inboundSchema, CreateAgentRequestFallbackModelConfigurationRetry$outboundSchema, CreateAgentRequestFallbackModelConfiguration2$inboundSchema, CreateAgentRequestFallbackModelConfiguration2$outboundSchema, CreateAgentRequestFallbackModelConfiguration$inboundSchema, CreateAgentRequestFallbackModelConfiguration$outboundSchema, Model$inboundSchema, Model$outboundSchema, CreateAgentRequestTeamOfAgents$inboundSchema, CreateAgentRequestTeamOfAgents$outboundSchema, Metrics$inboundSchema, Metrics$outboundSchema, CreateAgentRequestKnowledgeBases$inboundSchema, CreateAgentRequestKnowledgeBases$outboundSchema, CreateAgentRequestSource$inboundSchema, CreateAgentRequestSource$outboundSchema, CreateAgentRequestResponseBody$inboundSchema, CreateAgentRequestResponseBody$outboundSchema;
|
|
58667
58667
|
var init_createagentrequest = __esm(() => {
|
|
58668
58668
|
init_esm();
|
|
58669
58669
|
init_primitives();
|
|
@@ -58761,9 +58761,12 @@ var init_createagentrequest = __esm(() => {
|
|
|
58761
58761
|
RespectTool: "respect_tool",
|
|
58762
58762
|
None: "none"
|
|
58763
58763
|
};
|
|
58764
|
-
|
|
58764
|
+
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type = {
|
|
58765
58765
|
Mcp: "mcp"
|
|
58766
58766
|
};
|
|
58767
|
+
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type = {
|
|
58768
|
+
JsonSchema: "json_schema"
|
|
58769
|
+
};
|
|
58767
58770
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type = {
|
|
58768
58771
|
Function: "function"
|
|
58769
58772
|
};
|
|
@@ -59470,10 +59473,10 @@ var init_createagentrequest = __esm(() => {
|
|
|
59470
59473
|
]);
|
|
59471
59474
|
ToolApprovalRequired$inboundSchema2 = nativeEnumType(ToolApprovalRequired2);
|
|
59472
59475
|
ToolApprovalRequired$outboundSchema2 = ToolApprovalRequired$inboundSchema2;
|
|
59473
|
-
|
|
59474
|
-
|
|
59476
|
+
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema = nativeEnumType(CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type);
|
|
59477
|
+
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema = CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema;
|
|
59475
59478
|
MCPTool$inboundSchema = objectType({
|
|
59476
|
-
type:
|
|
59479
|
+
type: CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema.default("mcp"),
|
|
59477
59480
|
key: stringType().optional(),
|
|
59478
59481
|
id: stringType().optional(),
|
|
59479
59482
|
tool_id: stringType(),
|
|
@@ -59485,7 +59488,7 @@ var init_createagentrequest = __esm(() => {
|
|
|
59485
59488
|
});
|
|
59486
59489
|
});
|
|
59487
59490
|
MCPTool$outboundSchema = objectType({
|
|
59488
|
-
type:
|
|
59491
|
+
type: CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema.default("mcp"),
|
|
59489
59492
|
key: stringType().optional(),
|
|
59490
59493
|
id: stringType().optional(),
|
|
59491
59494
|
toolId: stringType(),
|
|
@@ -59496,6 +59499,28 @@ var init_createagentrequest = __esm(() => {
|
|
|
59496
59499
|
requiresApproval: "requires_approval"
|
|
59497
59500
|
});
|
|
59498
59501
|
});
|
|
59502
|
+
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema = nativeEnumType(CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type);
|
|
59503
|
+
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema = CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema;
|
|
59504
|
+
JSONSchemaTool$inboundSchema = objectType({
|
|
59505
|
+
type: CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema.default("json_schema"),
|
|
59506
|
+
key: stringType().optional(),
|
|
59507
|
+
id: stringType().optional(),
|
|
59508
|
+
requires_approval: booleanType().default(false)
|
|
59509
|
+
}).transform((v2) => {
|
|
59510
|
+
return remap(v2, {
|
|
59511
|
+
requires_approval: "requiresApproval"
|
|
59512
|
+
});
|
|
59513
|
+
});
|
|
59514
|
+
JSONSchemaTool$outboundSchema = objectType({
|
|
59515
|
+
type: CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema.default("json_schema"),
|
|
59516
|
+
key: stringType().optional(),
|
|
59517
|
+
id: stringType().optional(),
|
|
59518
|
+
requiresApproval: booleanType().default(false)
|
|
59519
|
+
}).transform((v2) => {
|
|
59520
|
+
return remap(v2, {
|
|
59521
|
+
requiresApproval: "requires_approval"
|
|
59522
|
+
});
|
|
59523
|
+
});
|
|
59499
59524
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema = nativeEnumType(CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type);
|
|
59500
59525
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema = CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema;
|
|
59501
59526
|
FunctionTool$inboundSchema = objectType({
|
|
@@ -59775,7 +59800,8 @@ var init_createagentrequest = __esm(() => {
|
|
|
59775
59800
|
lazyType(() => MCPTool$inboundSchema),
|
|
59776
59801
|
lazyType(() => HTTPTool$inboundSchema),
|
|
59777
59802
|
lazyType(() => CodeExecutionTool$inboundSchema),
|
|
59778
|
-
lazyType(() => FunctionTool$inboundSchema)
|
|
59803
|
+
lazyType(() => FunctionTool$inboundSchema),
|
|
59804
|
+
lazyType(() => JSONSchemaTool$inboundSchema)
|
|
59779
59805
|
]);
|
|
59780
59806
|
AgentToolInputCRUD$outboundSchema = unionType([
|
|
59781
59807
|
lazyType(() => GoogleSearchTool$outboundSchema),
|
|
@@ -59792,7 +59818,8 @@ var init_createagentrequest = __esm(() => {
|
|
|
59792
59818
|
lazyType(() => MCPTool$outboundSchema),
|
|
59793
59819
|
lazyType(() => HTTPTool$outboundSchema),
|
|
59794
59820
|
lazyType(() => CodeExecutionTool$outboundSchema),
|
|
59795
|
-
lazyType(() => FunctionTool$outboundSchema)
|
|
59821
|
+
lazyType(() => FunctionTool$outboundSchema),
|
|
59822
|
+
lazyType(() => JSONSchemaTool$outboundSchema)
|
|
59796
59823
|
]);
|
|
59797
59824
|
CreateAgentRequestExecuteOn$inboundSchema = nativeEnumType(CreateAgentRequestExecuteOn);
|
|
59798
59825
|
CreateAgentRequestExecuteOn$outboundSchema = CreateAgentRequestExecuteOn$inboundSchema;
|
|
@@ -59857,7 +59884,8 @@ var init_createagentrequest = __esm(() => {
|
|
|
59857
59884
|
lazyType(() => MCPTool$inboundSchema),
|
|
59858
59885
|
lazyType(() => HTTPTool$inboundSchema),
|
|
59859
59886
|
lazyType(() => CodeExecutionTool$inboundSchema),
|
|
59860
|
-
lazyType(() => FunctionTool$inboundSchema)
|
|
59887
|
+
lazyType(() => FunctionTool$inboundSchema),
|
|
59888
|
+
lazyType(() => JSONSchemaTool$inboundSchema)
|
|
59861
59889
|
])).optional(),
|
|
59862
59890
|
evaluators: arrayType(lazyType(() => Evaluators$inboundSchema2)).optional(),
|
|
59863
59891
|
guardrails: arrayType(lazyType(() => CreateAgentRequestGuardrails$inboundSchema)).optional()
|
|
@@ -59887,7 +59915,8 @@ var init_createagentrequest = __esm(() => {
|
|
|
59887
59915
|
lazyType(() => MCPTool$outboundSchema),
|
|
59888
59916
|
lazyType(() => HTTPTool$outboundSchema),
|
|
59889
59917
|
lazyType(() => CodeExecutionTool$outboundSchema),
|
|
59890
|
-
lazyType(() => FunctionTool$outboundSchema)
|
|
59918
|
+
lazyType(() => FunctionTool$outboundSchema),
|
|
59919
|
+
lazyType(() => JSONSchemaTool$outboundSchema)
|
|
59891
59920
|
])).optional(),
|
|
59892
59921
|
evaluators: arrayType(lazyType(() => Evaluators$outboundSchema2)).optional(),
|
|
59893
59922
|
guardrails: arrayType(lazyType(() => CreateAgentRequestGuardrails$outboundSchema)).optional()
|
|
@@ -63189,7 +63218,7 @@ var init_createcontact = __esm(() => {
|
|
|
63189
63218
|
tags: arrayType(stringType()).optional(),
|
|
63190
63219
|
metadata: recordType(anyType()).optional(),
|
|
63191
63220
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63192
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
63221
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
63193
63222
|
}).transform((v2) => {
|
|
63194
63223
|
return remap(v2, {
|
|
63195
63224
|
_id: "id",
|
|
@@ -63209,7 +63238,7 @@ var init_createcontact = __esm(() => {
|
|
|
63209
63238
|
tags: arrayType(stringType()).optional(),
|
|
63210
63239
|
metadata: recordType(anyType()).optional(),
|
|
63211
63240
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63212
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
63241
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
63213
63242
|
}).transform((v2) => {
|
|
63214
63243
|
return remap(v2, {
|
|
63215
63244
|
id: "_id",
|
|
@@ -63262,7 +63291,7 @@ var init_createconversation = __esm(() => {
|
|
|
63262
63291
|
model: nullableType(stringType()).optional()
|
|
63263
63292
|
});
|
|
63264
63293
|
CreateConversationResponseBody$inboundSchema = objectType({
|
|
63265
|
-
_id: stringType().default("
|
|
63294
|
+
_id: stringType().default("conv_01keyb6f8c1s6q7ydp8t32zbqa"),
|
|
63266
63295
|
kind: CreateConversationKind$inboundSchema,
|
|
63267
63296
|
displayName: stringType(),
|
|
63268
63297
|
createdAt: numberType(),
|
|
@@ -63276,7 +63305,7 @@ var init_createconversation = __esm(() => {
|
|
|
63276
63305
|
});
|
|
63277
63306
|
});
|
|
63278
63307
|
CreateConversationResponseBody$outboundSchema = objectType({
|
|
63279
|
-
id: stringType().default("
|
|
63308
|
+
id: stringType().default("conv_01keyb6f8c1s6q7ydp8t32zbqa"),
|
|
63280
63309
|
kind: CreateConversationKind$outboundSchema,
|
|
63281
63310
|
displayName: stringType(),
|
|
63282
63311
|
createdAt: numberType(),
|
|
@@ -63352,7 +63381,7 @@ var init_createconversationresponse = __esm(() => {
|
|
|
63352
63381
|
PartKind$inboundSchema2 = nativeEnumType(PartKind2);
|
|
63353
63382
|
PartKind$outboundSchema2 = PartKind$inboundSchema2;
|
|
63354
63383
|
PartReasoningPart$inboundSchema2 = objectType({
|
|
63355
|
-
_id: stringType().default("
|
|
63384
|
+
_id: stringType().default("reasoning_01keyb6f90ywd3v4z9cnjy470w"),
|
|
63356
63385
|
metadata: recordType(anyType()).optional(),
|
|
63357
63386
|
kind: PartKind$inboundSchema2,
|
|
63358
63387
|
reasoning: stringType(),
|
|
@@ -63363,7 +63392,7 @@ var init_createconversationresponse = __esm(() => {
|
|
|
63363
63392
|
});
|
|
63364
63393
|
});
|
|
63365
63394
|
PartReasoningPart$outboundSchema2 = objectType({
|
|
63366
|
-
id: stringType().default("
|
|
63395
|
+
id: stringType().default("reasoning_01keyb6f90ywd3v4z9cnjy470w"),
|
|
63367
63396
|
metadata: recordType(anyType()).optional(),
|
|
63368
63397
|
kind: PartKind$outboundSchema2,
|
|
63369
63398
|
reasoning: stringType(),
|
|
@@ -63396,7 +63425,7 @@ var init_createconversationresponse = __esm(() => {
|
|
|
63396
63425
|
DeltaKind$inboundSchema = nativeEnumType(DeltaKind);
|
|
63397
63426
|
DeltaKind$outboundSchema = DeltaKind$inboundSchema;
|
|
63398
63427
|
ReasoningPart$inboundSchema2 = objectType({
|
|
63399
|
-
_id: stringType().default("
|
|
63428
|
+
_id: stringType().default("reasoning_01keyb6f8w7mnyenkngdj0wy4x"),
|
|
63400
63429
|
metadata: recordType(anyType()).optional(),
|
|
63401
63430
|
kind: DeltaKind$inboundSchema,
|
|
63402
63431
|
reasoning: stringType(),
|
|
@@ -63407,7 +63436,7 @@ var init_createconversationresponse = __esm(() => {
|
|
|
63407
63436
|
});
|
|
63408
63437
|
});
|
|
63409
63438
|
ReasoningPart$outboundSchema2 = objectType({
|
|
63410
|
-
id: stringType().default("
|
|
63439
|
+
id: stringType().default("reasoning_01keyb6f8w7mnyenkngdj0wy4x"),
|
|
63411
63440
|
metadata: recordType(anyType()).optional(),
|
|
63412
63441
|
kind: DeltaKind$outboundSchema,
|
|
63413
63442
|
reasoning: stringType(),
|
|
@@ -63546,7 +63575,7 @@ var init_createdataset = __esm(() => {
|
|
|
63546
63575
|
created_by_id: stringType().optional(),
|
|
63547
63576
|
updated_by_id: stringType().optional(),
|
|
63548
63577
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63549
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
63578
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
63550
63579
|
}).transform((v2) => {
|
|
63551
63580
|
return remap(v2, {
|
|
63552
63581
|
_id: "id",
|
|
@@ -63566,7 +63595,7 @@ var init_createdataset = __esm(() => {
|
|
|
63566
63595
|
createdById: stringType().optional(),
|
|
63567
63596
|
updatedById: stringType().optional(),
|
|
63568
63597
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63569
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
63598
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
63570
63599
|
}).transform((v2) => {
|
|
63571
63600
|
return remap(v2, {
|
|
63572
63601
|
id: "_id",
|
|
@@ -64302,7 +64331,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64302
64331
|
human_review_id: stringType(),
|
|
64303
64332
|
source: CreateDatasetItemEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
64304
64333
|
reviewed_by_id: stringType(),
|
|
64305
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64334
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.702Z").transform((v2) => new Date(v2)),
|
|
64306
64335
|
type: literalType("string_array"),
|
|
64307
64336
|
values: arrayType(stringType())
|
|
64308
64337
|
}).transform((v2) => {
|
|
@@ -64319,7 +64348,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64319
64348
|
humanReviewId: stringType(),
|
|
64320
64349
|
source: CreateDatasetItemEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
64321
64350
|
reviewedById: stringType(),
|
|
64322
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64351
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.702Z")).transform((v2) => v2.toISOString()),
|
|
64323
64352
|
type: literalType("string_array"),
|
|
64324
64353
|
values: arrayType(stringType())
|
|
64325
64354
|
}).transform((v2) => {
|
|
@@ -64340,7 +64369,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64340
64369
|
human_review_id: stringType(),
|
|
64341
64370
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
64342
64371
|
reviewed_by_id: stringType(),
|
|
64343
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64372
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.701Z").transform((v2) => new Date(v2)),
|
|
64344
64373
|
type: literalType("number"),
|
|
64345
64374
|
value: numberType()
|
|
64346
64375
|
}).transform((v2) => {
|
|
@@ -64357,7 +64386,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64357
64386
|
humanReviewId: stringType(),
|
|
64358
64387
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
64359
64388
|
reviewedById: stringType(),
|
|
64360
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64389
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.701Z")).transform((v2) => v2.toISOString()),
|
|
64361
64390
|
type: literalType("number"),
|
|
64362
64391
|
value: numberType()
|
|
64363
64392
|
}).transform((v2) => {
|
|
@@ -64378,7 +64407,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64378
64407
|
human_review_id: stringType(),
|
|
64379
64408
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
64380
64409
|
reviewed_by_id: stringType(),
|
|
64381
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
64410
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.699Z").transform((v2) => new Date(v2)),
|
|
64382
64411
|
type: literalType("string"),
|
|
64383
64412
|
value: stringType()
|
|
64384
64413
|
}).transform((v2) => {
|
|
@@ -64395,7 +64424,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64395
64424
|
humanReviewId: stringType(),
|
|
64396
64425
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
64397
64426
|
reviewedById: stringType(),
|
|
64398
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
64427
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.699Z")).transform((v2) => v2.toISOString()),
|
|
64399
64428
|
type: literalType("string"),
|
|
64400
64429
|
value: stringType()
|
|
64401
64430
|
}).transform((v2) => {
|
|
@@ -64438,7 +64467,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64438
64467
|
created_by_id: stringType().optional(),
|
|
64439
64468
|
updated_by_id: stringType().optional(),
|
|
64440
64469
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64441
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
64470
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
64442
64471
|
}).transform((v2) => {
|
|
64443
64472
|
return remap(v2, {
|
|
64444
64473
|
_id: "id",
|
|
@@ -64472,7 +64501,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
64472
64501
|
createdById: stringType().optional(),
|
|
64473
64502
|
updatedById: stringType().optional(),
|
|
64474
64503
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64475
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
64504
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
64476
64505
|
}).transform((v2) => {
|
|
64477
64506
|
return remap(v2, {
|
|
64478
64507
|
id: "_id",
|
|
@@ -64641,7 +64670,7 @@ var init_createdatasource = __esm(() => {
|
|
|
64641
64670
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
64642
64671
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
64643
64672
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
64644
|
-
_id: stringType().default("
|
|
64673
|
+
_id: stringType().default("01KEYB6FPGSY3YW5WKHD441P8E"),
|
|
64645
64674
|
display_name: stringType(),
|
|
64646
64675
|
description: stringType().optional(),
|
|
64647
64676
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -64664,7 +64693,7 @@ var init_createdatasource = __esm(() => {
|
|
|
64664
64693
|
});
|
|
64665
64694
|
});
|
|
64666
64695
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
64667
|
-
id: stringType().default("
|
|
64696
|
+
id: stringType().default("01KEYB6FPGSY3YW5WKHD441P8E"),
|
|
64668
64697
|
displayName: stringType(),
|
|
64669
64698
|
description: stringType().optional(),
|
|
64670
64699
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -65251,8 +65280,8 @@ var init_createeval = __esm(() => {
|
|
|
65251
65280
|
Typescript$inboundSchema = objectType({
|
|
65252
65281
|
_id: stringType(),
|
|
65253
65282
|
description: stringType(),
|
|
65254
|
-
created: stringType().default("2026-01-
|
|
65255
|
-
updated: stringType().default("2026-01-
|
|
65283
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65284
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65256
65285
|
guardrail_config: unionType([
|
|
65257
65286
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
65258
65287
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -65269,8 +65298,8 @@ var init_createeval = __esm(() => {
|
|
|
65269
65298
|
Typescript$outboundSchema = objectType({
|
|
65270
65299
|
id: stringType(),
|
|
65271
65300
|
description: stringType(),
|
|
65272
|
-
created: stringType().default("2026-01-
|
|
65273
|
-
updated: stringType().default("2026-01-
|
|
65301
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65302
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65274
65303
|
guardrailConfig: unionType([
|
|
65275
65304
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
65276
65305
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -65341,8 +65370,8 @@ var init_createeval = __esm(() => {
|
|
|
65341
65370
|
Ragas$inboundSchema = objectType({
|
|
65342
65371
|
_id: stringType(),
|
|
65343
65372
|
description: stringType(),
|
|
65344
|
-
created: stringType().default("2026-01-
|
|
65345
|
-
updated: stringType().default("2026-01-
|
|
65373
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65374
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65346
65375
|
guardrail_config: unionType([
|
|
65347
65376
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
65348
65377
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -65361,8 +65390,8 @@ var init_createeval = __esm(() => {
|
|
|
65361
65390
|
Ragas$outboundSchema = objectType({
|
|
65362
65391
|
id: stringType(),
|
|
65363
65392
|
description: stringType(),
|
|
65364
|
-
created: stringType().default("2026-01-
|
|
65365
|
-
updated: stringType().default("2026-01-
|
|
65393
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65394
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65366
65395
|
guardrailConfig: unionType([
|
|
65367
65396
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
65368
65397
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -65717,8 +65746,8 @@ var init_createeval = __esm(() => {
|
|
|
65717
65746
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
65718
65747
|
_id: stringType(),
|
|
65719
65748
|
description: stringType(),
|
|
65720
|
-
created: stringType().default("2026-01-
|
|
65721
|
-
updated: stringType().default("2026-01-
|
|
65749
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65750
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65722
65751
|
guardrail_config: unionType([
|
|
65723
65752
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
65724
65753
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -65769,8 +65798,8 @@ var init_createeval = __esm(() => {
|
|
|
65769
65798
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
65770
65799
|
id: stringType(),
|
|
65771
65800
|
description: stringType(),
|
|
65772
|
-
created: stringType().default("2026-01-
|
|
65773
|
-
updated: stringType().default("2026-01-
|
|
65801
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65802
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65774
65803
|
guardrailConfig: unionType([
|
|
65775
65804
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
65776
65805
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -65873,8 +65902,8 @@ var init_createeval = __esm(() => {
|
|
|
65873
65902
|
ResponseBodyPython$inboundSchema = objectType({
|
|
65874
65903
|
_id: stringType(),
|
|
65875
65904
|
description: stringType(),
|
|
65876
|
-
created: stringType().default("2026-01-
|
|
65877
|
-
updated: stringType().default("2026-01-
|
|
65905
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65906
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65878
65907
|
guardrail_config: unionType([
|
|
65879
65908
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
65880
65909
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -65891,8 +65920,8 @@ var init_createeval = __esm(() => {
|
|
|
65891
65920
|
ResponseBodyPython$outboundSchema = objectType({
|
|
65892
65921
|
id: stringType(),
|
|
65893
65922
|
description: stringType(),
|
|
65894
|
-
created: stringType().default("2026-01-
|
|
65895
|
-
updated: stringType().default("2026-01-
|
|
65923
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65924
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65896
65925
|
guardrailConfig: unionType([
|
|
65897
65926
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
65898
65927
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -65963,8 +65992,8 @@ var init_createeval = __esm(() => {
|
|
|
65963
65992
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
65964
65993
|
_id: stringType(),
|
|
65965
65994
|
description: stringType(),
|
|
65966
|
-
created: stringType().default("2026-01-
|
|
65967
|
-
updated: stringType().default("2026-01-
|
|
65995
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65996
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65968
65997
|
guardrail_config: unionType([
|
|
65969
65998
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
65970
65999
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -65984,8 +66013,8 @@ var init_createeval = __esm(() => {
|
|
|
65984
66013
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
65985
66014
|
id: stringType(),
|
|
65986
66015
|
description: stringType(),
|
|
65987
|
-
created: stringType().default("2026-01-
|
|
65988
|
-
updated: stringType().default("2026-01-
|
|
66016
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66017
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
65989
66018
|
guardrailConfig: unionType([
|
|
65990
66019
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
65991
66020
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -66057,8 +66086,8 @@ var init_createeval = __esm(() => {
|
|
|
66057
66086
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
66058
66087
|
_id: stringType(),
|
|
66059
66088
|
description: stringType(),
|
|
66060
|
-
created: stringType().default("2026-01-
|
|
66061
|
-
updated: stringType().default("2026-01-
|
|
66089
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66090
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66062
66091
|
guardrail_config: unionType([
|
|
66063
66092
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
66064
66093
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -66075,8 +66104,8 @@ var init_createeval = __esm(() => {
|
|
|
66075
66104
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
66076
66105
|
id: stringType(),
|
|
66077
66106
|
description: stringType(),
|
|
66078
|
-
created: stringType().default("2026-01-
|
|
66079
|
-
updated: stringType().default("2026-01-
|
|
66107
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66108
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66080
66109
|
guardrailConfig: unionType([
|
|
66081
66110
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
66082
66111
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -66145,8 +66174,8 @@ var init_createeval = __esm(() => {
|
|
|
66145
66174
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
66146
66175
|
_id: stringType(),
|
|
66147
66176
|
description: stringType(),
|
|
66148
|
-
created: stringType().default("2026-01-
|
|
66149
|
-
updated: stringType().default("2026-01-
|
|
66177
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66178
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66150
66179
|
guardrail_config: unionType([
|
|
66151
66180
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
66152
66181
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -66164,8 +66193,8 @@ var init_createeval = __esm(() => {
|
|
|
66164
66193
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
66165
66194
|
id: stringType(),
|
|
66166
66195
|
description: stringType(),
|
|
66167
|
-
created: stringType().default("2026-01-
|
|
66168
|
-
updated: stringType().default("2026-01-
|
|
66196
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66197
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
66169
66198
|
guardrailConfig: unionType([
|
|
66170
66199
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
66171
66200
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -68569,7 +68598,7 @@ var init_createprompt = __esm(() => {
|
|
|
68569
68598
|
});
|
|
68570
68599
|
|
|
68571
68600
|
// src/models/operations/createtool.ts
|
|
68572
|
-
var CreateToolRequestBodyToolsRequestStatus, CreateToolRequestBodyToolsRequest5CodeToolType, RequestBodyLanguage, CreateToolRequestBodyToolsStatus, RequestBodyConnectionType, CreateToolRequestBodyStatus, CreateToolRequestBodyMethod, CreateToolRequestBodyToolsRequest3Type, RequestBodyStatus, CreateToolRequestBodyToolsRequest1Status, CreateToolRequestBodyToolsRequest1Type, CreateToolResponseBodyToolsResponse200Status, CreateToolResponseBodyToolsResponse200ApplicationJson5Type, ResponseBodyLanguage, CreateToolResponseBodyToolsResponseStatus, CreateToolResponseBodyToolsResponse200ApplicationJson4Type, ResponseBodyConnectionType, CreateToolResponseBodyToolsStatus, CreateToolResponseBodyMethod, CreateToolResponseBodyToolsResponse200ApplicationJson3Type, CreateToolResponseBodyStatus, ResponseBodyStatus, CreateToolResponseBodyToolsResponse200ApplicationJson1Type, CreateToolRequestBodyToolsRequestStatus$inboundSchema, CreateToolRequestBodyToolsRequestStatus$outboundSchema, CreateToolRequestBodyToolsRequest5CodeToolType$inboundSchema, CreateToolRequestBodyToolsRequest5CodeToolType$outboundSchema, CreateToolRequestBodyParameters$inboundSchema, CreateToolRequestBodyParameters$outboundSchema, RequestBodyLanguage$inboundSchema, RequestBodyLanguage$outboundSchema, RequestBodyCodeTool$inboundSchema, RequestBodyCodeTool$outboundSchema, RequestBodyCodeExecutionTool$inboundSchema, RequestBodyCodeExecutionTool$outboundSchema, CreateToolRequestBodyToolsStatus$inboundSchema, CreateToolRequestBodyToolsStatus$outboundSchema, RequestBodyHeaders$inboundSchema, RequestBodyHeaders$outboundSchema, RequestBodyConnectionType$inboundSchema, RequestBodyConnectionType$outboundSchema, RequestBodyMcp$inboundSchema, RequestBodyMcp$outboundSchema, RequestBodyMCPTool$inboundSchema, RequestBodyMCPTool$outboundSchema, CreateToolRequestBodyStatus$inboundSchema, CreateToolRequestBodyStatus$outboundSchema, CreateToolRequestBodyMethod$inboundSchema, CreateToolRequestBodyMethod$outboundSchema, CreateToolHeaders2$inboundSchema, CreateToolHeaders2$outboundSchema, CreateToolRequestBodyHeaders$inboundSchema, CreateToolRequestBodyHeaders$outboundSchema, RequestBodyBlueprint$inboundSchema, RequestBodyBlueprint$outboundSchema, CreateToolRequestBodyToolsRequest3Type$inboundSchema, CreateToolRequestBodyToolsRequest3Type$outboundSchema, RequestBodyDefaultValue$inboundSchema, RequestBodyDefaultValue$outboundSchema, RequestBodyArguments$inboundSchema, RequestBodyArguments$outboundSchema, CreateToolRequestBodyHttp$inboundSchema, CreateToolRequestBodyHttp$outboundSchema, RequestBodyHTTPTool$inboundSchema, RequestBodyHTTPTool$outboundSchema, RequestBodyStatus$inboundSchema, RequestBodyStatus$outboundSchema, RequestBodySchema$inboundSchema, RequestBodySchema$outboundSchema, RequestBodyJsonSchema$inboundSchema, RequestBodyJsonSchema$outboundSchema,
|
|
68601
|
+
var CreateToolRequestBodyToolsRequestStatus, CreateToolRequestBodyToolsRequest5CodeToolType, RequestBodyLanguage, CreateToolRequestBodyToolsStatus, RequestBodyConnectionType, CreateToolRequestBodyStatus, CreateToolRequestBodyMethod, CreateToolRequestBodyToolsRequest3Type, RequestBodyStatus, CreateToolRequestBodyToolsRequest1Status, CreateToolRequestBodyToolsRequest1Type, CreateToolResponseBodyToolsResponse200Status, CreateToolResponseBodyToolsResponse200ApplicationJson5Type, ResponseBodyLanguage, CreateToolResponseBodyToolsResponseStatus, CreateToolResponseBodyToolsResponse200ApplicationJson4Type, ResponseBodyConnectionType, CreateToolResponseBodyToolsStatus, CreateToolResponseBodyMethod, CreateToolResponseBodyToolsResponse200ApplicationJson3Type, CreateToolResponseBodyStatus, ResponseBodyStatus, CreateToolResponseBodyToolsResponse200ApplicationJson1Type, CreateToolRequestBodyToolsRequestStatus$inboundSchema, CreateToolRequestBodyToolsRequestStatus$outboundSchema, CreateToolRequestBodyToolsRequest5CodeToolType$inboundSchema, CreateToolRequestBodyToolsRequest5CodeToolType$outboundSchema, CreateToolRequestBodyParameters$inboundSchema, CreateToolRequestBodyParameters$outboundSchema, RequestBodyLanguage$inboundSchema, RequestBodyLanguage$outboundSchema, RequestBodyCodeTool$inboundSchema, RequestBodyCodeTool$outboundSchema, RequestBodyCodeExecutionTool$inboundSchema, RequestBodyCodeExecutionTool$outboundSchema, CreateToolRequestBodyToolsStatus$inboundSchema, CreateToolRequestBodyToolsStatus$outboundSchema, RequestBodyHeaders$inboundSchema, RequestBodyHeaders$outboundSchema, RequestBodyConnectionType$inboundSchema, RequestBodyConnectionType$outboundSchema, RequestBodyMcp$inboundSchema, RequestBodyMcp$outboundSchema, RequestBodyMCPTool$inboundSchema, RequestBodyMCPTool$outboundSchema, CreateToolRequestBodyStatus$inboundSchema, CreateToolRequestBodyStatus$outboundSchema, CreateToolRequestBodyMethod$inboundSchema, CreateToolRequestBodyMethod$outboundSchema, CreateToolHeaders2$inboundSchema, CreateToolHeaders2$outboundSchema, CreateToolRequestBodyHeaders$inboundSchema, CreateToolRequestBodyHeaders$outboundSchema, RequestBodyBlueprint$inboundSchema, RequestBodyBlueprint$outboundSchema, CreateToolRequestBodyToolsRequest3Type$inboundSchema, CreateToolRequestBodyToolsRequest3Type$outboundSchema, RequestBodyDefaultValue$inboundSchema, RequestBodyDefaultValue$outboundSchema, RequestBodyArguments$inboundSchema, RequestBodyArguments$outboundSchema, CreateToolRequestBodyHttp$inboundSchema, CreateToolRequestBodyHttp$outboundSchema, RequestBodyHTTPTool$inboundSchema, RequestBodyHTTPTool$outboundSchema, RequestBodyStatus$inboundSchema, RequestBodyStatus$outboundSchema, RequestBodySchema$inboundSchema, RequestBodySchema$outboundSchema, RequestBodyJsonSchema$inboundSchema, RequestBodyJsonSchema$outboundSchema, RequestBodyJSONSchemaTool$inboundSchema, RequestBodyJSONSchemaTool$outboundSchema, CreateToolRequestBodyToolsRequest1Status$inboundSchema, CreateToolRequestBodyToolsRequest1Status$outboundSchema, CreateToolRequestBodyToolsRequest1Type$inboundSchema, CreateToolRequestBodyToolsRequest1Type$outboundSchema, RequestBodyParameters$inboundSchema, RequestBodyParameters$outboundSchema, RequestBodyFunction$inboundSchema, RequestBodyFunction$outboundSchema, RequestBodyFunctionTool$inboundSchema, RequestBodyFunctionTool$outboundSchema, CreateToolRequestBody$inboundSchema, CreateToolRequestBody$outboundSchema, CreateToolResponseBodyToolsResponse200Status$inboundSchema, CreateToolResponseBodyToolsResponse200Status$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson5Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson5Type$outboundSchema, CreateToolResponseBodyParameters$inboundSchema, CreateToolResponseBodyParameters$outboundSchema, ResponseBodyLanguage$inboundSchema, ResponseBodyLanguage$outboundSchema, ResponseBodyCodeTool$inboundSchema, ResponseBodyCodeTool$outboundSchema, ResponseBodyCodeExecutionTool$inboundSchema, ResponseBodyCodeExecutionTool$outboundSchema, CreateToolResponseBodyToolsResponseStatus$inboundSchema, CreateToolResponseBodyToolsResponseStatus$outboundSchema, ResponseBodyHeaders$inboundSchema, ResponseBodyHeaders$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson4Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson4Type$outboundSchema, CreateToolResponseBodySchema$inboundSchema, CreateToolResponseBodySchema$outboundSchema, ResponseBodyTools$inboundSchema, ResponseBodyTools$outboundSchema, ResponseBodyConnectionType$inboundSchema, ResponseBodyConnectionType$outboundSchema, ResponseBodyMcp$inboundSchema, ResponseBodyMcp$outboundSchema, ResponseBodyMCPTool$inboundSchema, ResponseBodyMCPTool$outboundSchema, CreateToolResponseBodyToolsStatus$inboundSchema, CreateToolResponseBodyToolsStatus$outboundSchema, CreateToolResponseBodyMethod$inboundSchema, CreateToolResponseBodyMethod$outboundSchema, CreateToolHeadersTools2$inboundSchema, CreateToolHeadersTools2$outboundSchema, CreateToolResponseBodyHeaders$inboundSchema, CreateToolResponseBodyHeaders$outboundSchema, ResponseBodyBlueprint$inboundSchema, ResponseBodyBlueprint$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson3Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson3Type$outboundSchema, ResponseBodyDefaultValue$inboundSchema, ResponseBodyDefaultValue$outboundSchema, ResponseBodyArguments$inboundSchema, ResponseBodyArguments$outboundSchema, CreateToolResponseBodyHttp$inboundSchema, CreateToolResponseBodyHttp$outboundSchema, ResponseBodyHTTPTool$inboundSchema, ResponseBodyHTTPTool$outboundSchema, CreateToolResponseBodyStatus$inboundSchema, CreateToolResponseBodyStatus$outboundSchema, ResponseBodySchema$inboundSchema, ResponseBodySchema$outboundSchema, ResponseBodyJsonSchema$inboundSchema, ResponseBodyJsonSchema$outboundSchema, ResponseBodyJSONSchemaTool$inboundSchema, ResponseBodyJSONSchemaTool$outboundSchema, ResponseBodyStatus$inboundSchema, ResponseBodyStatus$outboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson1Type$inboundSchema, CreateToolResponseBodyToolsResponse200ApplicationJson1Type$outboundSchema, ResponseBodyParameters$inboundSchema, ResponseBodyParameters$outboundSchema, CreateToolResponseBodyFunction$inboundSchema, CreateToolResponseBodyFunction$outboundSchema, ResponseBodyFunctionTool$inboundSchema, ResponseBodyFunctionTool$outboundSchema, CreateToolResponseBody$inboundSchema, CreateToolResponseBody$outboundSchema;
|
|
68573
68602
|
var init_createtool = __esm(() => {
|
|
68574
68603
|
init_esm();
|
|
68575
68604
|
init_primitives();
|
|
@@ -68923,7 +68952,7 @@ var init_createtool = __esm(() => {
|
|
|
68923
68952
|
schema: lazyType(() => RequestBodySchema$outboundSchema),
|
|
68924
68953
|
strict: booleanType().optional()
|
|
68925
68954
|
});
|
|
68926
|
-
|
|
68955
|
+
RequestBodyJSONSchemaTool$inboundSchema = objectType({
|
|
68927
68956
|
path: stringType(),
|
|
68928
68957
|
key: stringType(),
|
|
68929
68958
|
display_name: stringType().optional(),
|
|
@@ -68937,7 +68966,7 @@ var init_createtool = __esm(() => {
|
|
|
68937
68966
|
json_schema: "jsonSchema"
|
|
68938
68967
|
});
|
|
68939
68968
|
});
|
|
68940
|
-
|
|
68969
|
+
RequestBodyJSONSchemaTool$outboundSchema = objectType({
|
|
68941
68970
|
path: stringType(),
|
|
68942
68971
|
key: stringType(),
|
|
68943
68972
|
displayName: stringType().optional(),
|
|
@@ -69013,14 +69042,14 @@ var init_createtool = __esm(() => {
|
|
|
69013
69042
|
});
|
|
69014
69043
|
CreateToolRequestBody$inboundSchema = unionType([
|
|
69015
69044
|
lazyType(() => RequestBodyFunctionTool$inboundSchema),
|
|
69016
|
-
lazyType(() =>
|
|
69045
|
+
lazyType(() => RequestBodyJSONSchemaTool$inboundSchema),
|
|
69017
69046
|
lazyType(() => RequestBodyHTTPTool$inboundSchema),
|
|
69018
69047
|
lazyType(() => RequestBodyMCPTool$inboundSchema),
|
|
69019
69048
|
lazyType(() => RequestBodyCodeExecutionTool$inboundSchema)
|
|
69020
69049
|
]);
|
|
69021
69050
|
CreateToolRequestBody$outboundSchema = unionType([
|
|
69022
69051
|
lazyType(() => RequestBodyFunctionTool$outboundSchema),
|
|
69023
|
-
lazyType(() =>
|
|
69052
|
+
lazyType(() => RequestBodyJSONSchemaTool$outboundSchema),
|
|
69024
69053
|
lazyType(() => RequestBodyHTTPTool$outboundSchema),
|
|
69025
69054
|
lazyType(() => RequestBodyMCPTool$outboundSchema),
|
|
69026
69055
|
lazyType(() => RequestBodyCodeExecutionTool$outboundSchema)
|
|
@@ -69060,7 +69089,7 @@ var init_createtool = __esm(() => {
|
|
|
69060
69089
|
code: stringType()
|
|
69061
69090
|
});
|
|
69062
69091
|
ResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
69063
|
-
_id: stringType().default("
|
|
69092
|
+
_id: stringType().default("tool_01KEYB6FGNRJR4TWEZE1R92H2A"),
|
|
69064
69093
|
path: stringType(),
|
|
69065
69094
|
key: stringType(),
|
|
69066
69095
|
display_name: stringType().optional(),
|
|
@@ -69088,7 +69117,7 @@ var init_createtool = __esm(() => {
|
|
|
69088
69117
|
});
|
|
69089
69118
|
});
|
|
69090
69119
|
ResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
69091
|
-
id: stringType().default("
|
|
69120
|
+
id: stringType().default("tool_01KEYB6FGNRJR4TWEZE1R92H2A"),
|
|
69092
69121
|
path: stringType(),
|
|
69093
69122
|
key: stringType(),
|
|
69094
69123
|
displayName: stringType().optional(),
|
|
@@ -69138,13 +69167,13 @@ var init_createtool = __esm(() => {
|
|
|
69138
69167
|
required: arrayType(stringType()).optional()
|
|
69139
69168
|
});
|
|
69140
69169
|
ResponseBodyTools$inboundSchema = objectType({
|
|
69141
|
-
id: stringType().default("
|
|
69170
|
+
id: stringType().default("01KEYB6FGMQMM6H7MCX4T5HRDC"),
|
|
69142
69171
|
name: stringType(),
|
|
69143
69172
|
description: stringType().optional(),
|
|
69144
69173
|
schema: lazyType(() => CreateToolResponseBodySchema$inboundSchema)
|
|
69145
69174
|
});
|
|
69146
69175
|
ResponseBodyTools$outboundSchema = objectType({
|
|
69147
|
-
id: stringType().default("
|
|
69176
|
+
id: stringType().default("01KEYB6FGMQMM6H7MCX4T5HRDC"),
|
|
69148
69177
|
name: stringType(),
|
|
69149
69178
|
description: stringType().optional(),
|
|
69150
69179
|
schema: lazyType(() => CreateToolResponseBodySchema$outboundSchema)
|
|
@@ -69174,7 +69203,7 @@ var init_createtool = __esm(() => {
|
|
|
69174
69203
|
});
|
|
69175
69204
|
});
|
|
69176
69205
|
ResponseBodyMCPTool$inboundSchema = objectType({
|
|
69177
|
-
_id: stringType().default("
|
|
69206
|
+
_id: stringType().default("tool_01KEYB6FGA4RMX3SE4SZ3RH74X"),
|
|
69178
69207
|
path: stringType(),
|
|
69179
69208
|
key: stringType(),
|
|
69180
69209
|
display_name: stringType().optional(),
|
|
@@ -69201,7 +69230,7 @@ var init_createtool = __esm(() => {
|
|
|
69201
69230
|
});
|
|
69202
69231
|
});
|
|
69203
69232
|
ResponseBodyMCPTool$outboundSchema = objectType({
|
|
69204
|
-
id: stringType().default("
|
|
69233
|
+
id: stringType().default("tool_01KEYB6FGA4RMX3SE4SZ3RH74X"),
|
|
69205
69234
|
path: stringType(),
|
|
69206
69235
|
key: stringType(),
|
|
69207
69236
|
displayName: stringType().optional(),
|
|
@@ -69288,7 +69317,7 @@ var init_createtool = __esm(() => {
|
|
|
69288
69317
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
69289
69318
|
});
|
|
69290
69319
|
ResponseBodyHTTPTool$inboundSchema = objectType({
|
|
69291
|
-
_id: stringType().default("
|
|
69320
|
+
_id: stringType().default("tool_01KEYB6FG81QQJ7R7EH3VVEB2B"),
|
|
69292
69321
|
path: stringType(),
|
|
69293
69322
|
key: stringType(),
|
|
69294
69323
|
display_name: stringType().optional(),
|
|
@@ -69315,7 +69344,7 @@ var init_createtool = __esm(() => {
|
|
|
69315
69344
|
});
|
|
69316
69345
|
});
|
|
69317
69346
|
ResponseBodyHTTPTool$outboundSchema = objectType({
|
|
69318
|
-
id: stringType().default("
|
|
69347
|
+
id: stringType().default("tool_01KEYB6FG81QQJ7R7EH3VVEB2B"),
|
|
69319
69348
|
path: stringType(),
|
|
69320
69349
|
key: stringType(),
|
|
69321
69350
|
displayName: stringType().optional(),
|
|
@@ -69374,7 +69403,7 @@ var init_createtool = __esm(() => {
|
|
|
69374
69403
|
strict: booleanType().optional()
|
|
69375
69404
|
});
|
|
69376
69405
|
ResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
69377
|
-
_id: stringType().default("
|
|
69406
|
+
_id: stringType().default("tool_01KEYB6FG7WN4F8YGYSFSRG4G8"),
|
|
69378
69407
|
path: stringType(),
|
|
69379
69408
|
key: stringType(),
|
|
69380
69409
|
display_name: stringType().optional(),
|
|
@@ -69402,7 +69431,7 @@ var init_createtool = __esm(() => {
|
|
|
69402
69431
|
});
|
|
69403
69432
|
});
|
|
69404
69433
|
ResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
69405
|
-
id: stringType().default("
|
|
69434
|
+
id: stringType().default("tool_01KEYB6FG7WN4F8YGYSFSRG4G8"),
|
|
69406
69435
|
path: stringType(),
|
|
69407
69436
|
key: stringType(),
|
|
69408
69437
|
displayName: stringType().optional(),
|
|
@@ -69464,7 +69493,7 @@ var init_createtool = __esm(() => {
|
|
|
69464
69493
|
parameters: lazyType(() => ResponseBodyParameters$outboundSchema).optional()
|
|
69465
69494
|
});
|
|
69466
69495
|
ResponseBodyFunctionTool$inboundSchema = objectType({
|
|
69467
|
-
_id: stringType().default("
|
|
69496
|
+
_id: stringType().default("tool_01KEYB6FG6D0BW3PGZ7A5C63VV"),
|
|
69468
69497
|
path: stringType(),
|
|
69469
69498
|
key: stringType(),
|
|
69470
69499
|
display_name: stringType().optional(),
|
|
@@ -69491,7 +69520,7 @@ var init_createtool = __esm(() => {
|
|
|
69491
69520
|
});
|
|
69492
69521
|
});
|
|
69493
69522
|
ResponseBodyFunctionTool$outboundSchema = objectType({
|
|
69494
|
-
id: stringType().default("
|
|
69523
|
+
id: stringType().default("tool_01KEYB6FG6D0BW3PGZ7A5C63VV"),
|
|
69495
69524
|
path: stringType(),
|
|
69496
69525
|
key: stringType(),
|
|
69497
69526
|
displayName: stringType().optional(),
|
|
@@ -74676,7 +74705,7 @@ var init_fileget = __esm(() => {
|
|
|
74676
74705
|
bytes: numberType(),
|
|
74677
74706
|
file_name: stringType(),
|
|
74678
74707
|
workspace_id: stringType(),
|
|
74679
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74708
|
+
created: stringType().datetime({ offset: true }).default("2026-01-14T13:30:12.726Z").transform((v2) => new Date(v2))
|
|
74680
74709
|
}).transform((v2) => {
|
|
74681
74710
|
return remap(v2, {
|
|
74682
74711
|
_id: "id",
|
|
@@ -74692,7 +74721,7 @@ var init_fileget = __esm(() => {
|
|
|
74692
74721
|
bytes: numberType(),
|
|
74693
74722
|
fileName: stringType(),
|
|
74694
74723
|
workspaceId: stringType(),
|
|
74695
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74724
|
+
created: dateType().default(() => new Date("2026-01-14T13:30:12.726Z")).transform((v2) => v2.toISOString())
|
|
74696
74725
|
}).transform((v2) => {
|
|
74697
74726
|
return remap(v2, {
|
|
74698
74727
|
id: "_id",
|
|
@@ -74747,7 +74776,7 @@ var init_filelist = __esm(() => {
|
|
|
74747
74776
|
bytes: numberType(),
|
|
74748
74777
|
file_name: stringType(),
|
|
74749
74778
|
workspace_id: stringType(),
|
|
74750
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74779
|
+
created: stringType().datetime({ offset: true }).default("2026-01-14T13:30:12.726Z").transform((v2) => new Date(v2))
|
|
74751
74780
|
}).transform((v2) => {
|
|
74752
74781
|
return remap(v2, {
|
|
74753
74782
|
_id: "id",
|
|
@@ -74763,7 +74792,7 @@ var init_filelist = __esm(() => {
|
|
|
74763
74792
|
bytes: numberType(),
|
|
74764
74793
|
fileName: stringType(),
|
|
74765
74794
|
workspaceId: stringType(),
|
|
74766
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74795
|
+
created: dateType().default(() => new Date("2026-01-14T13:30:12.726Z")).transform((v2) => v2.toISOString())
|
|
74767
74796
|
}).transform((v2) => {
|
|
74768
74797
|
return remap(v2, {
|
|
74769
74798
|
id: "_id",
|
|
@@ -74871,7 +74900,7 @@ var init_fileupload = __esm(() => {
|
|
|
74871
74900
|
bytes: numberType(),
|
|
74872
74901
|
file_name: stringType(),
|
|
74873
74902
|
workspace_id: stringType(),
|
|
74874
|
-
created: stringType().datetime({ offset: true }).default("2026-01-
|
|
74903
|
+
created: stringType().datetime({ offset: true }).default("2026-01-14T13:30:12.726Z").transform((v2) => new Date(v2))
|
|
74875
74904
|
}).transform((v2) => {
|
|
74876
74905
|
return remap(v2, {
|
|
74877
74906
|
_id: "id",
|
|
@@ -74887,7 +74916,7 @@ var init_fileupload = __esm(() => {
|
|
|
74887
74916
|
bytes: numberType(),
|
|
74888
74917
|
fileName: stringType(),
|
|
74889
74918
|
workspaceId: stringType(),
|
|
74890
|
-
created: dateType().default(() => new Date("2026-01-
|
|
74919
|
+
created: dateType().default(() => new Date("2026-01-14T13:30:12.726Z")).transform((v2) => v2.toISOString())
|
|
74891
74920
|
}).transform((v2) => {
|
|
74892
74921
|
return remap(v2, {
|
|
74893
74922
|
id: "_id",
|
|
@@ -74943,7 +74972,7 @@ var init_generateconversationname = __esm(() => {
|
|
|
74943
74972
|
model: nullableType(stringType()).optional()
|
|
74944
74973
|
});
|
|
74945
74974
|
GenerateConversationNameResponseBody$inboundSchema = objectType({
|
|
74946
|
-
_id: stringType().default("
|
|
74975
|
+
_id: stringType().default("conv_01keyb6f8d4t37mtjaqk8dqtdf"),
|
|
74947
74976
|
kind: GenerateConversationNameKind$inboundSchema,
|
|
74948
74977
|
displayName: stringType(),
|
|
74949
74978
|
createdAt: numberType(),
|
|
@@ -74957,7 +74986,7 @@ var init_generateconversationname = __esm(() => {
|
|
|
74957
74986
|
});
|
|
74958
74987
|
});
|
|
74959
74988
|
GenerateConversationNameResponseBody$outboundSchema = objectType({
|
|
74960
|
-
id: stringType().default("
|
|
74989
|
+
id: stringType().default("conv_01keyb6f8d4t37mtjaqk8dqtdf"),
|
|
74961
74990
|
kind: GenerateConversationNameKind$outboundSchema,
|
|
74962
74991
|
displayName: stringType(),
|
|
74963
74992
|
createdAt: numberType(),
|
|
@@ -75992,7 +76021,7 @@ var init_getalltools = __esm(() => {
|
|
|
75992
76021
|
code: stringType()
|
|
75993
76022
|
});
|
|
75994
76023
|
DataCodeExecutionTool$inboundSchema = objectType({
|
|
75995
|
-
_id: stringType().default("
|
|
76024
|
+
_id: stringType().default("tool_01KEYB6FFRZD0RKCPPBQM3QTJQ"),
|
|
75996
76025
|
path: stringType(),
|
|
75997
76026
|
key: stringType(),
|
|
75998
76027
|
display_name: stringType().optional(),
|
|
@@ -76020,7 +76049,7 @@ var init_getalltools = __esm(() => {
|
|
|
76020
76049
|
});
|
|
76021
76050
|
});
|
|
76022
76051
|
DataCodeExecutionTool$outboundSchema = objectType({
|
|
76023
|
-
id: stringType().default("
|
|
76052
|
+
id: stringType().default("tool_01KEYB6FFRZD0RKCPPBQM3QTJQ"),
|
|
76024
76053
|
path: stringType(),
|
|
76025
76054
|
key: stringType(),
|
|
76026
76055
|
displayName: stringType().optional(),
|
|
@@ -76070,13 +76099,13 @@ var init_getalltools = __esm(() => {
|
|
|
76070
76099
|
required: arrayType(stringType()).optional()
|
|
76071
76100
|
});
|
|
76072
76101
|
DataTools$inboundSchema = objectType({
|
|
76073
|
-
id: stringType().default("
|
|
76102
|
+
id: stringType().default("01KEYB6FFP67NV0N869449Z70V"),
|
|
76074
76103
|
name: stringType(),
|
|
76075
76104
|
description: stringType().optional(),
|
|
76076
76105
|
schema: lazyType(() => GetAllToolsDataSchema$inboundSchema)
|
|
76077
76106
|
});
|
|
76078
76107
|
DataTools$outboundSchema = objectType({
|
|
76079
|
-
id: stringType().default("
|
|
76108
|
+
id: stringType().default("01KEYB6FFP67NV0N869449Z70V"),
|
|
76080
76109
|
name: stringType(),
|
|
76081
76110
|
description: stringType().optional(),
|
|
76082
76111
|
schema: lazyType(() => GetAllToolsDataSchema$outboundSchema)
|
|
@@ -76106,7 +76135,7 @@ var init_getalltools = __esm(() => {
|
|
|
76106
76135
|
});
|
|
76107
76136
|
});
|
|
76108
76137
|
DataMCPTool$inboundSchema = objectType({
|
|
76109
|
-
_id: stringType().default("
|
|
76138
|
+
_id: stringType().default("tool_01KEYB6FFM7VXCHM74EGHV093D"),
|
|
76110
76139
|
path: stringType(),
|
|
76111
76140
|
key: stringType(),
|
|
76112
76141
|
display_name: stringType().optional(),
|
|
@@ -76133,7 +76162,7 @@ var init_getalltools = __esm(() => {
|
|
|
76133
76162
|
});
|
|
76134
76163
|
});
|
|
76135
76164
|
DataMCPTool$outboundSchema = objectType({
|
|
76136
|
-
id: stringType().default("
|
|
76165
|
+
id: stringType().default("tool_01KEYB6FFM7VXCHM74EGHV093D"),
|
|
76137
76166
|
path: stringType(),
|
|
76138
76167
|
key: stringType(),
|
|
76139
76168
|
displayName: stringType().optional(),
|
|
@@ -76220,7 +76249,7 @@ var init_getalltools = __esm(() => {
|
|
|
76220
76249
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
76221
76250
|
});
|
|
76222
76251
|
DataHTTPTool$inboundSchema = objectType({
|
|
76223
|
-
_id: stringType().default("
|
|
76252
|
+
_id: stringType().default("tool_01KEYB6FFH79CJJ9A66VXTF91B"),
|
|
76224
76253
|
path: stringType(),
|
|
76225
76254
|
key: stringType(),
|
|
76226
76255
|
display_name: stringType().optional(),
|
|
@@ -76247,7 +76276,7 @@ var init_getalltools = __esm(() => {
|
|
|
76247
76276
|
});
|
|
76248
76277
|
});
|
|
76249
76278
|
DataHTTPTool$outboundSchema = objectType({
|
|
76250
|
-
id: stringType().default("
|
|
76279
|
+
id: stringType().default("tool_01KEYB6FFH79CJJ9A66VXTF91B"),
|
|
76251
76280
|
path: stringType(),
|
|
76252
76281
|
key: stringType(),
|
|
76253
76282
|
displayName: stringType().optional(),
|
|
@@ -76306,7 +76335,7 @@ var init_getalltools = __esm(() => {
|
|
|
76306
76335
|
strict: booleanType().optional()
|
|
76307
76336
|
});
|
|
76308
76337
|
DataJSONSchemaTool$inboundSchema = objectType({
|
|
76309
|
-
_id: stringType().default("
|
|
76338
|
+
_id: stringType().default("tool_01KEYB6FFF6HK6XBY6QKJ74QF5"),
|
|
76310
76339
|
path: stringType(),
|
|
76311
76340
|
key: stringType(),
|
|
76312
76341
|
display_name: stringType().optional(),
|
|
@@ -76334,7 +76363,7 @@ var init_getalltools = __esm(() => {
|
|
|
76334
76363
|
});
|
|
76335
76364
|
});
|
|
76336
76365
|
DataJSONSchemaTool$outboundSchema = objectType({
|
|
76337
|
-
id: stringType().default("
|
|
76366
|
+
id: stringType().default("tool_01KEYB6FFF6HK6XBY6QKJ74QF5"),
|
|
76338
76367
|
path: stringType(),
|
|
76339
76368
|
key: stringType(),
|
|
76340
76369
|
displayName: stringType().optional(),
|
|
@@ -76396,7 +76425,7 @@ var init_getalltools = __esm(() => {
|
|
|
76396
76425
|
parameters: lazyType(() => DataParameters$outboundSchema).optional()
|
|
76397
76426
|
});
|
|
76398
76427
|
DataFunctionTool$inboundSchema = objectType({
|
|
76399
|
-
_id: stringType().default("
|
|
76428
|
+
_id: stringType().default("tool_01KEYB6FFCKTM67GTGNTMZ70ZQ"),
|
|
76400
76429
|
path: stringType(),
|
|
76401
76430
|
key: stringType(),
|
|
76402
76431
|
display_name: stringType().optional(),
|
|
@@ -76423,7 +76452,7 @@ var init_getalltools = __esm(() => {
|
|
|
76423
76452
|
});
|
|
76424
76453
|
});
|
|
76425
76454
|
DataFunctionTool$outboundSchema = objectType({
|
|
76426
|
-
id: stringType().default("
|
|
76455
|
+
id: stringType().default("tool_01KEYB6FFCKTM67GTGNTMZ70ZQ"),
|
|
76427
76456
|
path: stringType(),
|
|
76428
76457
|
key: stringType(),
|
|
76429
76458
|
displayName: stringType().optional(),
|
|
@@ -76699,8 +76728,8 @@ var init_getevals = __esm(() => {
|
|
|
76699
76728
|
DataTypescript$inboundSchema = objectType({
|
|
76700
76729
|
_id: stringType(),
|
|
76701
76730
|
description: stringType(),
|
|
76702
|
-
created: stringType().default("2026-01-
|
|
76703
|
-
updated: stringType().default("2026-01-
|
|
76731
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
76732
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
76704
76733
|
guardrail_config: unionType([
|
|
76705
76734
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
76706
76735
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -76717,8 +76746,8 @@ var init_getevals = __esm(() => {
|
|
|
76717
76746
|
DataTypescript$outboundSchema = objectType({
|
|
76718
76747
|
id: stringType(),
|
|
76719
76748
|
description: stringType(),
|
|
76720
|
-
created: stringType().default("2026-01-
|
|
76721
|
-
updated: stringType().default("2026-01-
|
|
76749
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
76750
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
76722
76751
|
guardrailConfig: unionType([
|
|
76723
76752
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
76724
76753
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -76789,8 +76818,8 @@ var init_getevals = __esm(() => {
|
|
|
76789
76818
|
DataRagas$inboundSchema = objectType({
|
|
76790
76819
|
_id: stringType(),
|
|
76791
76820
|
description: stringType(),
|
|
76792
|
-
created: stringType().default("2026-01-
|
|
76793
|
-
updated: stringType().default("2026-01-
|
|
76821
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
76822
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
76794
76823
|
guardrail_config: unionType([
|
|
76795
76824
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
76796
76825
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -76809,8 +76838,8 @@ var init_getevals = __esm(() => {
|
|
|
76809
76838
|
DataRagas$outboundSchema = objectType({
|
|
76810
76839
|
id: stringType(),
|
|
76811
76840
|
description: stringType(),
|
|
76812
|
-
created: stringType().default("2026-01-
|
|
76813
|
-
updated: stringType().default("2026-01-
|
|
76841
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
76842
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
76814
76843
|
guardrailConfig: unionType([
|
|
76815
76844
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
76816
76845
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -77165,8 +77194,8 @@ var init_getevals = __esm(() => {
|
|
|
77165
77194
|
DataFunction$inboundSchema = objectType({
|
|
77166
77195
|
_id: stringType(),
|
|
77167
77196
|
description: stringType(),
|
|
77168
|
-
created: stringType().default("2026-01-
|
|
77169
|
-
updated: stringType().default("2026-01-
|
|
77197
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77198
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77170
77199
|
guardrail_config: unionType([
|
|
77171
77200
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
77172
77201
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -77217,8 +77246,8 @@ var init_getevals = __esm(() => {
|
|
|
77217
77246
|
DataFunction$outboundSchema = objectType({
|
|
77218
77247
|
id: stringType(),
|
|
77219
77248
|
description: stringType(),
|
|
77220
|
-
created: stringType().default("2026-01-
|
|
77221
|
-
updated: stringType().default("2026-01-
|
|
77249
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77250
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77222
77251
|
guardrailConfig: unionType([
|
|
77223
77252
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
77224
77253
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -77321,8 +77350,8 @@ var init_getevals = __esm(() => {
|
|
|
77321
77350
|
DataPython$inboundSchema = objectType({
|
|
77322
77351
|
_id: stringType(),
|
|
77323
77352
|
description: stringType(),
|
|
77324
|
-
created: stringType().default("2026-01-
|
|
77325
|
-
updated: stringType().default("2026-01-
|
|
77353
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77354
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77326
77355
|
guardrail_config: unionType([
|
|
77327
77356
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
77328
77357
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema)
|
|
@@ -77339,8 +77368,8 @@ var init_getevals = __esm(() => {
|
|
|
77339
77368
|
DataPython$outboundSchema = objectType({
|
|
77340
77369
|
id: stringType(),
|
|
77341
77370
|
description: stringType(),
|
|
77342
|
-
created: stringType().default("2026-01-
|
|
77343
|
-
updated: stringType().default("2026-01-
|
|
77371
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77372
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77344
77373
|
guardrailConfig: unionType([
|
|
77345
77374
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
77346
77375
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema)
|
|
@@ -77411,8 +77440,8 @@ var init_getevals = __esm(() => {
|
|
|
77411
77440
|
DataHTTP$inboundSchema = objectType({
|
|
77412
77441
|
_id: stringType(),
|
|
77413
77442
|
description: stringType(),
|
|
77414
|
-
created: stringType().default("2026-01-
|
|
77415
|
-
updated: stringType().default("2026-01-
|
|
77443
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77444
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77416
77445
|
guardrail_config: unionType([
|
|
77417
77446
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
77418
77447
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema)
|
|
@@ -77432,8 +77461,8 @@ var init_getevals = __esm(() => {
|
|
|
77432
77461
|
DataHTTP$outboundSchema = objectType({
|
|
77433
77462
|
id: stringType(),
|
|
77434
77463
|
description: stringType(),
|
|
77435
|
-
created: stringType().default("2026-01-
|
|
77436
|
-
updated: stringType().default("2026-01-
|
|
77464
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77465
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77437
77466
|
guardrailConfig: unionType([
|
|
77438
77467
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
77439
77468
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema)
|
|
@@ -77505,8 +77534,8 @@ var init_getevals = __esm(() => {
|
|
|
77505
77534
|
DataJSON$inboundSchema = objectType({
|
|
77506
77535
|
_id: stringType(),
|
|
77507
77536
|
description: stringType(),
|
|
77508
|
-
created: stringType().default("2026-01-
|
|
77509
|
-
updated: stringType().default("2026-01-
|
|
77537
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77538
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77510
77539
|
guardrail_config: unionType([
|
|
77511
77540
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
77512
77541
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema)
|
|
@@ -77523,8 +77552,8 @@ var init_getevals = __esm(() => {
|
|
|
77523
77552
|
DataJSON$outboundSchema = objectType({
|
|
77524
77553
|
id: stringType(),
|
|
77525
77554
|
description: stringType(),
|
|
77526
|
-
created: stringType().default("2026-01-
|
|
77527
|
-
updated: stringType().default("2026-01-
|
|
77555
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77556
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77528
77557
|
guardrailConfig: unionType([
|
|
77529
77558
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
77530
77559
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema)
|
|
@@ -77593,8 +77622,8 @@ var init_getevals = __esm(() => {
|
|
|
77593
77622
|
DataLLM$inboundSchema = objectType({
|
|
77594
77623
|
_id: stringType(),
|
|
77595
77624
|
description: stringType(),
|
|
77596
|
-
created: stringType().default("2026-01-
|
|
77597
|
-
updated: stringType().default("2026-01-
|
|
77625
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77626
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77598
77627
|
guardrail_config: unionType([
|
|
77599
77628
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
77600
77629
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -77612,8 +77641,8 @@ var init_getevals = __esm(() => {
|
|
|
77612
77641
|
DataLLM$outboundSchema = objectType({
|
|
77613
77642
|
id: stringType(),
|
|
77614
77643
|
description: stringType(),
|
|
77615
|
-
created: stringType().default("2026-01-
|
|
77616
|
-
updated: stringType().default("2026-01-
|
|
77644
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77645
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
77617
77646
|
guardrailConfig: unionType([
|
|
77618
77647
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
77619
77648
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -81382,7 +81411,7 @@ var init_listcontacts = __esm(() => {
|
|
|
81382
81411
|
tags: arrayType(stringType()).optional(),
|
|
81383
81412
|
metadata: recordType(anyType()).optional(),
|
|
81384
81413
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
81385
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
81414
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2)),
|
|
81386
81415
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
81387
81416
|
}).transform((v2) => {
|
|
81388
81417
|
return remap(v2, {
|
|
@@ -81401,7 +81430,7 @@ var init_listcontacts = __esm(() => {
|
|
|
81401
81430
|
tags: arrayType(stringType()).optional(),
|
|
81402
81431
|
metadata: recordType(anyType()).optional(),
|
|
81403
81432
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
81404
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
81433
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString()),
|
|
81405
81434
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
81406
81435
|
}).transform((v2) => {
|
|
81407
81436
|
return remap(v2, {
|
|
@@ -81859,7 +81888,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81859
81888
|
human_review_id: stringType(),
|
|
81860
81889
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
81861
81890
|
reviewed_by_id: stringType(),
|
|
81862
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81891
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.591Z").transform((v2) => new Date(v2)),
|
|
81863
81892
|
type: literalType("string_array"),
|
|
81864
81893
|
values: arrayType(stringType())
|
|
81865
81894
|
}).transform((v2) => {
|
|
@@ -81876,7 +81905,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81876
81905
|
humanReviewId: stringType(),
|
|
81877
81906
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
81878
81907
|
reviewedById: stringType(),
|
|
81879
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81908
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.591Z")).transform((v2) => v2.toISOString()),
|
|
81880
81909
|
type: literalType("string_array"),
|
|
81881
81910
|
values: arrayType(stringType())
|
|
81882
81911
|
}).transform((v2) => {
|
|
@@ -81897,7 +81926,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81897
81926
|
human_review_id: stringType(),
|
|
81898
81927
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
81899
81928
|
reviewed_by_id: stringType(),
|
|
81900
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81929
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.587Z").transform((v2) => new Date(v2)),
|
|
81901
81930
|
type: literalType("number"),
|
|
81902
81931
|
value: numberType()
|
|
81903
81932
|
}).transform((v2) => {
|
|
@@ -81914,7 +81943,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81914
81943
|
humanReviewId: stringType(),
|
|
81915
81944
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
81916
81945
|
reviewedById: stringType(),
|
|
81917
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81946
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.587Z")).transform((v2) => v2.toISOString()),
|
|
81918
81947
|
type: literalType("number"),
|
|
81919
81948
|
value: numberType()
|
|
81920
81949
|
}).transform((v2) => {
|
|
@@ -81935,7 +81964,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81935
81964
|
human_review_id: stringType(),
|
|
81936
81965
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
81937
81966
|
reviewed_by_id: stringType(),
|
|
81938
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
81967
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.582Z").transform((v2) => new Date(v2)),
|
|
81939
81968
|
type: literalType("string"),
|
|
81940
81969
|
value: stringType()
|
|
81941
81970
|
}).transform((v2) => {
|
|
@@ -81952,7 +81981,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81952
81981
|
humanReviewId: stringType(),
|
|
81953
81982
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
81954
81983
|
reviewedById: stringType(),
|
|
81955
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
81984
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.582Z")).transform((v2) => v2.toISOString()),
|
|
81956
81985
|
type: literalType("string"),
|
|
81957
81986
|
value: stringType()
|
|
81958
81987
|
}).transform((v2) => {
|
|
@@ -81995,7 +82024,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
81995
82024
|
created_by_id: stringType().optional(),
|
|
81996
82025
|
updated_by_id: stringType().optional(),
|
|
81997
82026
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
81998
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
82027
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
81999
82028
|
}).transform((v2) => {
|
|
82000
82029
|
return remap(v2, {
|
|
82001
82030
|
_id: "id",
|
|
@@ -82029,7 +82058,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
82029
82058
|
createdById: stringType().optional(),
|
|
82030
82059
|
updatedById: stringType().optional(),
|
|
82031
82060
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
82032
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
82061
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
82033
82062
|
}).transform((v2) => {
|
|
82034
82063
|
return remap(v2, {
|
|
82035
82064
|
id: "_id",
|
|
@@ -82118,7 +82147,7 @@ var init_listdatasets = __esm(() => {
|
|
|
82118
82147
|
created_by_id: stringType().optional(),
|
|
82119
82148
|
updated_by_id: stringType().optional(),
|
|
82120
82149
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
82121
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
82150
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
82122
82151
|
}).transform((v2) => {
|
|
82123
82152
|
return remap(v2, {
|
|
82124
82153
|
_id: "id",
|
|
@@ -82138,7 +82167,7 @@ var init_listdatasets = __esm(() => {
|
|
|
82138
82167
|
createdById: stringType().optional(),
|
|
82139
82168
|
updatedById: stringType().optional(),
|
|
82140
82169
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
82141
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
82170
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
82142
82171
|
}).transform((v2) => {
|
|
82143
82172
|
return remap(v2, {
|
|
82144
82173
|
id: "_id",
|
|
@@ -82219,7 +82248,7 @@ var init_listdatasources = __esm(() => {
|
|
|
82219
82248
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
82220
82249
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
82221
82250
|
ListDatasourcesData$inboundSchema = objectType({
|
|
82222
|
-
_id: stringType().default("
|
|
82251
|
+
_id: stringType().default("01KEYB6FPAYQMZ6EWRP57N6CMK"),
|
|
82223
82252
|
display_name: stringType(),
|
|
82224
82253
|
description: stringType().optional(),
|
|
82225
82254
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -82242,7 +82271,7 @@ var init_listdatasources = __esm(() => {
|
|
|
82242
82271
|
});
|
|
82243
82272
|
});
|
|
82244
82273
|
ListDatasourcesData$outboundSchema = objectType({
|
|
82245
|
-
id: stringType().default("
|
|
82274
|
+
id: stringType().default("01KEYB6FPAYQMZ6EWRP57N6CMK"),
|
|
82246
82275
|
displayName: stringType(),
|
|
82247
82276
|
description: stringType().optional(),
|
|
82248
82277
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -84527,7 +84556,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
84527
84556
|
tags: arrayType(stringType()).optional(),
|
|
84528
84557
|
metadata: recordType(anyType()).optional(),
|
|
84529
84558
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
84530
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
84559
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
84531
84560
|
}).transform((v2) => {
|
|
84532
84561
|
return remap(v2, {
|
|
84533
84562
|
_id: "id",
|
|
@@ -84545,7 +84574,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
84545
84574
|
tags: arrayType(stringType()).optional(),
|
|
84546
84575
|
metadata: recordType(anyType()).optional(),
|
|
84547
84576
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
84548
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
84577
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
84549
84578
|
}).transform((v2) => {
|
|
84550
84579
|
return remap(v2, {
|
|
84551
84580
|
id: "_id",
|
|
@@ -84951,7 +84980,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84951
84980
|
human_review_id: stringType(),
|
|
84952
84981
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
84953
84982
|
reviewed_by_id: stringType(),
|
|
84954
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
84983
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.662Z").transform((v2) => new Date(v2)),
|
|
84955
84984
|
type: literalType("string_array"),
|
|
84956
84985
|
values: arrayType(stringType())
|
|
84957
84986
|
}).transform((v2) => {
|
|
@@ -84968,7 +84997,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84968
84997
|
humanReviewId: stringType(),
|
|
84969
84998
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
84970
84999
|
reviewedById: stringType(),
|
|
84971
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
85000
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.662Z")).transform((v2) => v2.toISOString()),
|
|
84972
85001
|
type: literalType("string_array"),
|
|
84973
85002
|
values: arrayType(stringType())
|
|
84974
85003
|
}).transform((v2) => {
|
|
@@ -84989,7 +85018,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
84989
85018
|
human_review_id: stringType(),
|
|
84990
85019
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
84991
85020
|
reviewed_by_id: stringType(),
|
|
84992
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
85021
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.660Z").transform((v2) => new Date(v2)),
|
|
84993
85022
|
type: literalType("number"),
|
|
84994
85023
|
value: numberType()
|
|
84995
85024
|
}).transform((v2) => {
|
|
@@ -85006,7 +85035,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
85006
85035
|
humanReviewId: stringType(),
|
|
85007
85036
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
85008
85037
|
reviewedById: stringType(),
|
|
85009
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
85038
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.660Z")).transform((v2) => v2.toISOString()),
|
|
85010
85039
|
type: literalType("number"),
|
|
85011
85040
|
value: numberType()
|
|
85012
85041
|
}).transform((v2) => {
|
|
@@ -85027,7 +85056,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
85027
85056
|
human_review_id: stringType(),
|
|
85028
85057
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
85029
85058
|
reviewed_by_id: stringType(),
|
|
85030
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
85059
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.655Z").transform((v2) => new Date(v2)),
|
|
85031
85060
|
type: literalType("string"),
|
|
85032
85061
|
value: stringType()
|
|
85033
85062
|
}).transform((v2) => {
|
|
@@ -85044,7 +85073,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
85044
85073
|
humanReviewId: stringType(),
|
|
85045
85074
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
85046
85075
|
reviewedById: stringType(),
|
|
85047
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
85076
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.655Z")).transform((v2) => v2.toISOString()),
|
|
85048
85077
|
type: literalType("string"),
|
|
85049
85078
|
value: stringType()
|
|
85050
85079
|
}).transform((v2) => {
|
|
@@ -85087,7 +85116,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
85087
85116
|
created_by_id: stringType().optional(),
|
|
85088
85117
|
updated_by_id: stringType().optional(),
|
|
85089
85118
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
85090
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
85119
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
85091
85120
|
}).transform((v2) => {
|
|
85092
85121
|
return remap(v2, {
|
|
85093
85122
|
_id: "id",
|
|
@@ -85121,7 +85150,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
85121
85150
|
createdById: stringType().optional(),
|
|
85122
85151
|
updatedById: stringType().optional(),
|
|
85123
85152
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
85124
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
85153
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
85125
85154
|
}).transform((v2) => {
|
|
85126
85155
|
return remap(v2, {
|
|
85127
85156
|
id: "_id",
|
|
@@ -85181,7 +85210,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
85181
85210
|
created_by_id: stringType().optional(),
|
|
85182
85211
|
updated_by_id: stringType().optional(),
|
|
85183
85212
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
85184
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
85213
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
85185
85214
|
}).transform((v2) => {
|
|
85186
85215
|
return remap(v2, {
|
|
85187
85216
|
_id: "id",
|
|
@@ -85201,7 +85230,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
85201
85230
|
createdById: stringType().optional(),
|
|
85202
85231
|
updatedById: stringType().optional(),
|
|
85203
85232
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
85204
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
85233
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
85205
85234
|
}).transform((v2) => {
|
|
85206
85235
|
return remap(v2, {
|
|
85207
85236
|
id: "_id",
|
|
@@ -85247,7 +85276,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
85247
85276
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
85248
85277
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
85249
85278
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
85250
|
-
_id: stringType().default("
|
|
85279
|
+
_id: stringType().default("01KEYB6FPEFR0VY2NTH5C1QNJS"),
|
|
85251
85280
|
display_name: stringType(),
|
|
85252
85281
|
description: stringType().optional(),
|
|
85253
85282
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -85270,7 +85299,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
85270
85299
|
});
|
|
85271
85300
|
});
|
|
85272
85301
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
85273
|
-
id: stringType().default("
|
|
85302
|
+
id: stringType().default("01KEYB6FPEFR0VY2NTH5C1QNJS"),
|
|
85274
85303
|
displayName: stringType(),
|
|
85275
85304
|
description: stringType().optional(),
|
|
85276
85305
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -85607,7 +85636,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85607
85636
|
code: stringType()
|
|
85608
85637
|
});
|
|
85609
85638
|
RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
85610
|
-
_id: stringType().default("
|
|
85639
|
+
_id: stringType().default("tool_01KEYB6FJBEYWZD6KPYW5V8SWJ"),
|
|
85611
85640
|
path: stringType(),
|
|
85612
85641
|
key: stringType(),
|
|
85613
85642
|
display_name: stringType().optional(),
|
|
@@ -85635,7 +85664,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85635
85664
|
});
|
|
85636
85665
|
});
|
|
85637
85666
|
RetrieveToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
85638
|
-
id: stringType().default("
|
|
85667
|
+
id: stringType().default("tool_01KEYB6FJBEYWZD6KPYW5V8SWJ"),
|
|
85639
85668
|
path: stringType(),
|
|
85640
85669
|
key: stringType(),
|
|
85641
85670
|
displayName: stringType().optional(),
|
|
@@ -85685,13 +85714,13 @@ var init_retrievetool = __esm(() => {
|
|
|
85685
85714
|
required: arrayType(stringType()).optional()
|
|
85686
85715
|
});
|
|
85687
85716
|
RetrieveToolResponseBodyTools$inboundSchema = objectType({
|
|
85688
|
-
id: stringType().default("
|
|
85717
|
+
id: stringType().default("01KEYB6FJADTPMVFVG6HTG6SRS"),
|
|
85689
85718
|
name: stringType(),
|
|
85690
85719
|
description: stringType().optional(),
|
|
85691
85720
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$inboundSchema)
|
|
85692
85721
|
});
|
|
85693
85722
|
RetrieveToolResponseBodyTools$outboundSchema = objectType({
|
|
85694
|
-
id: stringType().default("
|
|
85723
|
+
id: stringType().default("01KEYB6FJADTPMVFVG6HTG6SRS"),
|
|
85695
85724
|
name: stringType(),
|
|
85696
85725
|
description: stringType().optional(),
|
|
85697
85726
|
schema: lazyType(() => RetrieveToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -85721,7 +85750,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85721
85750
|
});
|
|
85722
85751
|
});
|
|
85723
85752
|
RetrieveToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
85724
|
-
_id: stringType().default("
|
|
85753
|
+
_id: stringType().default("tool_01KEYB6FJ18GZ1EFAG8AZPMAH8"),
|
|
85725
85754
|
path: stringType(),
|
|
85726
85755
|
key: stringType(),
|
|
85727
85756
|
display_name: stringType().optional(),
|
|
@@ -85748,7 +85777,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85748
85777
|
});
|
|
85749
85778
|
});
|
|
85750
85779
|
RetrieveToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
85751
|
-
id: stringType().default("
|
|
85780
|
+
id: stringType().default("tool_01KEYB6FJ18GZ1EFAG8AZPMAH8"),
|
|
85752
85781
|
path: stringType(),
|
|
85753
85782
|
key: stringType(),
|
|
85754
85783
|
displayName: stringType().optional(),
|
|
@@ -85835,7 +85864,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85835
85864
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
85836
85865
|
});
|
|
85837
85866
|
RetrieveToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
85838
|
-
_id: stringType().default("
|
|
85867
|
+
_id: stringType().default("tool_01KEYB6FHZ748DMV14AX404BNE"),
|
|
85839
85868
|
path: stringType(),
|
|
85840
85869
|
key: stringType(),
|
|
85841
85870
|
display_name: stringType().optional(),
|
|
@@ -85862,7 +85891,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85862
85891
|
});
|
|
85863
85892
|
});
|
|
85864
85893
|
RetrieveToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
85865
|
-
id: stringType().default("
|
|
85894
|
+
id: stringType().default("tool_01KEYB6FHZ748DMV14AX404BNE"),
|
|
85866
85895
|
path: stringType(),
|
|
85867
85896
|
key: stringType(),
|
|
85868
85897
|
displayName: stringType().optional(),
|
|
@@ -85921,7 +85950,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85921
85950
|
strict: booleanType().optional()
|
|
85922
85951
|
});
|
|
85923
85952
|
RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
85924
|
-
_id: stringType().default("
|
|
85953
|
+
_id: stringType().default("tool_01KEYB6FHYMA1C9JJT7R65EG5R"),
|
|
85925
85954
|
path: stringType(),
|
|
85926
85955
|
key: stringType(),
|
|
85927
85956
|
display_name: stringType().optional(),
|
|
@@ -85949,7 +85978,7 @@ var init_retrievetool = __esm(() => {
|
|
|
85949
85978
|
});
|
|
85950
85979
|
});
|
|
85951
85980
|
RetrieveToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
85952
|
-
id: stringType().default("
|
|
85981
|
+
id: stringType().default("tool_01KEYB6FHYMA1C9JJT7R65EG5R"),
|
|
85953
85982
|
path: stringType(),
|
|
85954
85983
|
key: stringType(),
|
|
85955
85984
|
displayName: stringType().optional(),
|
|
@@ -86011,7 +86040,7 @@ var init_retrievetool = __esm(() => {
|
|
|
86011
86040
|
parameters: lazyType(() => RetrieveToolResponseBodyParameters$outboundSchema).optional()
|
|
86012
86041
|
});
|
|
86013
86042
|
RetrieveToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
86014
|
-
_id: stringType().default("
|
|
86043
|
+
_id: stringType().default("tool_01KEYB6FHXBW5MR9WF1D9P621N"),
|
|
86015
86044
|
path: stringType(),
|
|
86016
86045
|
key: stringType(),
|
|
86017
86046
|
display_name: stringType().optional(),
|
|
@@ -86038,7 +86067,7 @@ var init_retrievetool = __esm(() => {
|
|
|
86038
86067
|
});
|
|
86039
86068
|
});
|
|
86040
86069
|
RetrieveToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
86041
|
-
id: stringType().default("
|
|
86070
|
+
id: stringType().default("tool_01KEYB6FHXBW5MR9WF1D9P621N"),
|
|
86042
86071
|
path: stringType(),
|
|
86043
86072
|
key: stringType(),
|
|
86044
86073
|
displayName: stringType().optional(),
|
|
@@ -86081,7 +86110,7 @@ var init_retrievetool = __esm(() => {
|
|
|
86081
86110
|
});
|
|
86082
86111
|
|
|
86083
86112
|
// src/models/operations/runagent.ts
|
|
86084
|
-
var RunAgentModelConfigurationVoice, RunAgentModelConfigurationFormat, RunAgentModelConfigurationReasoningEffort, RunAgentToolChoiceType, RunAgentToolChoice1, RunAgentModelConfigurationModalities, RunAgentId1, RunAgentModelConfigurationExecuteOn, RunAgentFallbackModelConfigurationVoice, RunAgentFallbackModelConfigurationFormat, RunAgentFallbackModelConfigurationReasoningEffort, RunAgentToolChoiceAgentsType, RunAgentToolChoiceAgents1, RunAgentFallbackModelConfigurationModalities, RunAgentIdAgents1, RunAgentFallbackModelConfigurationExecuteOn, RunAgentRoleToolMessage, RunAgentRoleUserMessage, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType, ConnectionType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType, Language, Method, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, RunAgentToolApprovalRequired, RunAgentExecuteOn, RunAgentAgentsExecuteOn, RunAgentKind, RunAgentTaskState, RunAgentAgentsKind, RunAgentExtendedMessageRole, RunAgentModelConfigurationVoice$inboundSchema, RunAgentModelConfigurationVoice$outboundSchema, RunAgentModelConfigurationFormat$inboundSchema, RunAgentModelConfigurationFormat$outboundSchema, RunAgentModelConfigurationAudio$inboundSchema, RunAgentModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsJsonSchema$inboundSchema, RunAgentResponseFormatAgentsJsonSchema$outboundSchema, RunAgentResponseFormatJSONSchema$inboundSchema, RunAgentResponseFormatJSONSchema$outboundSchema, RunAgentResponseFormatJSONObject$inboundSchema, RunAgentResponseFormatJSONObject$outboundSchema, RunAgentResponseFormatText$inboundSchema, RunAgentResponseFormatText$outboundSchema, RunAgentModelConfigurationResponseFormat$inboundSchema, RunAgentModelConfigurationResponseFormat$outboundSchema, RunAgentModelConfigurationReasoningEffort$inboundSchema, RunAgentModelConfigurationReasoningEffort$outboundSchema, RunAgentModelConfigurationStop$inboundSchema, RunAgentModelConfigurationStop$outboundSchema, RunAgentModelConfigurationStreamOptions$inboundSchema, RunAgentModelConfigurationStreamOptions$outboundSchema, RunAgentModelConfigurationThinking$inboundSchema, RunAgentModelConfigurationThinking$outboundSchema, RunAgentToolChoiceType$inboundSchema, RunAgentToolChoiceType$outboundSchema, RunAgentToolChoiceFunction$inboundSchema, RunAgentToolChoiceFunction$outboundSchema, RunAgentToolChoice2$inboundSchema, RunAgentToolChoice2$outboundSchema, RunAgentToolChoice1$inboundSchema, RunAgentToolChoice1$outboundSchema, RunAgentModelConfigurationToolChoice$inboundSchema, RunAgentModelConfigurationToolChoice$outboundSchema, RunAgentModelConfigurationModalities$inboundSchema, RunAgentModelConfigurationModalities$outboundSchema, RunAgentId1$inboundSchema, RunAgentId1$outboundSchema, RunAgentModelConfigurationId$inboundSchema, RunAgentModelConfigurationId$outboundSchema, RunAgentModelConfigurationExecuteOn$inboundSchema, RunAgentModelConfigurationExecuteOn$outboundSchema, RunAgentModelConfigurationGuardrails$inboundSchema, RunAgentModelConfigurationGuardrails$outboundSchema, RunAgentModelConfigurationParameters$inboundSchema, RunAgentModelConfigurationParameters$outboundSchema, RunAgentModelConfigurationRetry$inboundSchema, RunAgentModelConfigurationRetry$outboundSchema, RunAgentModelConfiguration2$inboundSchema, RunAgentModelConfiguration2$outboundSchema, RunAgentModelConfiguration$inboundSchema, RunAgentModelConfiguration$outboundSchema, RunAgentFallbackModelConfigurationVoice$inboundSchema, RunAgentFallbackModelConfigurationVoice$outboundSchema, RunAgentFallbackModelConfigurationFormat$inboundSchema, RunAgentFallbackModelConfigurationFormat$outboundSchema, RunAgentFallbackModelConfigurationAudio$inboundSchema, RunAgentFallbackModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, RunAgentResponseFormatAgentsJSONObject$inboundSchema, RunAgentResponseFormatAgentsJSONObject$outboundSchema, RunAgentResponseFormatAgentsText$inboundSchema, RunAgentResponseFormatAgentsText$outboundSchema, RunAgentFallbackModelConfigurationResponseFormat$inboundSchema, RunAgentFallbackModelConfigurationResponseFormat$outboundSchema, RunAgentFallbackModelConfigurationReasoningEffort$inboundSchema, RunAgentFallbackModelConfigurationReasoningEffort$outboundSchema, RunAgentFallbackModelConfigurationStop$inboundSchema, RunAgentFallbackModelConfigurationStop$outboundSchema, RunAgentFallbackModelConfigurationStreamOptions$inboundSchema, RunAgentFallbackModelConfigurationStreamOptions$outboundSchema, RunAgentFallbackModelConfigurationThinking$inboundSchema, RunAgentFallbackModelConfigurationThinking$outboundSchema, RunAgentToolChoiceAgentsType$inboundSchema, RunAgentToolChoiceAgentsType$outboundSchema, RunAgentToolChoiceAgentsFunction$inboundSchema, RunAgentToolChoiceAgentsFunction$outboundSchema, RunAgentToolChoiceAgents2$inboundSchema, RunAgentToolChoiceAgents2$outboundSchema, RunAgentToolChoiceAgents1$inboundSchema, RunAgentToolChoiceAgents1$outboundSchema, RunAgentFallbackModelConfigurationToolChoice$inboundSchema, RunAgentFallbackModelConfigurationToolChoice$outboundSchema, RunAgentFallbackModelConfigurationModalities$inboundSchema, RunAgentFallbackModelConfigurationModalities$outboundSchema, RunAgentIdAgents1$inboundSchema, RunAgentIdAgents1$outboundSchema, RunAgentFallbackModelConfigurationId$inboundSchema, RunAgentFallbackModelConfigurationId$outboundSchema, RunAgentFallbackModelConfigurationExecuteOn$inboundSchema, RunAgentFallbackModelConfigurationExecuteOn$outboundSchema, RunAgentFallbackModelConfigurationGuardrails$inboundSchema, RunAgentFallbackModelConfigurationGuardrails$outboundSchema, RunAgentFallbackModelConfigurationParameters$inboundSchema, RunAgentFallbackModelConfigurationParameters$outboundSchema, RunAgentFallbackModelConfigurationRetry$inboundSchema, RunAgentFallbackModelConfigurationRetry$outboundSchema, RunAgentFallbackModelConfiguration2$inboundSchema, RunAgentFallbackModelConfiguration2$outboundSchema, RunAgentFallbackModelConfiguration$inboundSchema, RunAgentFallbackModelConfiguration$outboundSchema, RunAgentRoleToolMessage$inboundSchema, RunAgentRoleToolMessage$outboundSchema, RunAgentRoleUserMessage$inboundSchema, RunAgentRoleUserMessage$outboundSchema, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentPublicMessagePart$inboundSchema, RunAgentPublicMessagePart$outboundSchema, RunAgentA2AMessage$inboundSchema, RunAgentA2AMessage$outboundSchema, RunAgentIdentity$inboundSchema, RunAgentIdentity$outboundSchema, RunAgentContact$inboundSchema, RunAgentContact$outboundSchema, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentMemory$inboundSchema, RunAgentMemory$outboundSchema, RunAgentKnowledgeBases$inboundSchema, RunAgentKnowledgeBases$outboundSchema, RunAgentTeamOfAgents$inboundSchema, RunAgentTeamOfAgents$outboundSchema, AgentToolInputRunHeaders$inboundSchema, AgentToolInputRunHeaders$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$outboundSchema, Schema$inboundSchema, Schema$outboundSchema, Tools$inboundSchema2, Tools$outboundSchema2, ConnectionType$inboundSchema, ConnectionType$outboundSchema, Mcp$inboundSchema, Mcp$outboundSchema, MCPToolRun$inboundSchema, MCPToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema, RunAgentAgentToolInputRunParameters$inboundSchema, RunAgentAgentToolInputRunParameters$outboundSchema, AgentToolInputRunFunction$inboundSchema, AgentToolInputRunFunction$outboundSchema, FunctionToolRun$inboundSchema, FunctionToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$outboundSchema, AgentToolInputRunParameters$inboundSchema, AgentToolInputRunParameters$outboundSchema, Language$inboundSchema, Language$outboundSchema, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeToolRun$inboundSchema, CodeToolRun$outboundSchema, Method$inboundSchema, Method$outboundSchema, Headers2$inboundSchema, Headers2$outboundSchema, Headers$inboundSchema, Headers$outboundSchema, Blueprint$inboundSchema, Blueprint$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, DefaultValue$inboundSchema, DefaultValue$outboundSchema, Arguments$inboundSchema, Arguments$outboundSchema, Http$inboundSchema, Http$outboundSchema, HTTPToolRun$inboundSchema, HTTPToolRun$outboundSchema, AgentToolInputRunCurrentDateTool$inboundSchema, AgentToolInputRunCurrentDateTool$outboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, AgentToolInputRunWriteMemoryStoreTool$inboundSchema, AgentToolInputRunWriteMemoryStoreTool$outboundSchema, AgentToolInputRunQueryMemoryStoreTool$inboundSchema, AgentToolInputRunQueryMemoryStoreTool$outboundSchema, AgentToolInputRunRetrieveAgentsTool$inboundSchema, AgentToolInputRunRetrieveAgentsTool$outboundSchema, AgentToolInputRunCallSubAgentTool$inboundSchema, AgentToolInputRunCallSubAgentTool$outboundSchema, AgentToolInputRunWebScraperTool$inboundSchema, AgentToolInputRunWebScraperTool$outboundSchema, AgentToolInputRunGoogleSearchTool$inboundSchema, AgentToolInputRunGoogleSearchTool$outboundSchema, AgentToolInputRun$inboundSchema, AgentToolInputRun$outboundSchema, RunAgentToolApprovalRequired$inboundSchema, RunAgentToolApprovalRequired$outboundSchema, RunAgentExecuteOn$inboundSchema, RunAgentExecuteOn$outboundSchema, RunAgentEvaluators$inboundSchema, RunAgentEvaluators$outboundSchema, RunAgentAgentsExecuteOn$inboundSchema, RunAgentAgentsExecuteOn$outboundSchema, RunAgentGuardrails$inboundSchema, RunAgentGuardrails$outboundSchema, RunAgentSettings$inboundSchema, RunAgentSettings$outboundSchema, RunAgentRequestBody$inboundSchema, RunAgentRequestBody$outboundSchema, RunAgentKind$inboundSchema, RunAgentKind$outboundSchema, RunAgentTaskState$inboundSchema, RunAgentTaskState$outboundSchema, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentExtendedMessageRole$inboundSchema, RunAgentExtendedMessageRole$outboundSchema, RunAgentParts$inboundSchema, RunAgentParts$outboundSchema, RunAgentTaskStatusMessage$inboundSchema, RunAgentTaskStatusMessage$outboundSchema, RunAgentTaskStatus$inboundSchema, RunAgentTaskStatus$outboundSchema, RunAgentA2ATaskResponse$inboundSchema, RunAgentA2ATaskResponse$outboundSchema;
|
|
86113
|
+
var RunAgentModelConfigurationVoice, RunAgentModelConfigurationFormat, RunAgentModelConfigurationReasoningEffort, RunAgentToolChoiceType, RunAgentToolChoice1, RunAgentModelConfigurationModalities, RunAgentId1, RunAgentModelConfigurationExecuteOn, RunAgentFallbackModelConfigurationVoice, RunAgentFallbackModelConfigurationFormat, RunAgentFallbackModelConfigurationReasoningEffort, RunAgentToolChoiceAgentsType, RunAgentToolChoiceAgents1, RunAgentFallbackModelConfigurationModalities, RunAgentIdAgents1, RunAgentFallbackModelConfigurationExecuteOn, RunAgentRoleToolMessage, RunAgentRoleUserMessage, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType, ConnectionType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType, Language, Method, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, RunAgentToolApprovalRequired, RunAgentExecuteOn, RunAgentAgentsExecuteOn, RunAgentKind, RunAgentTaskState, RunAgentAgentsKind, RunAgentExtendedMessageRole, RunAgentModelConfigurationVoice$inboundSchema, RunAgentModelConfigurationVoice$outboundSchema, RunAgentModelConfigurationFormat$inboundSchema, RunAgentModelConfigurationFormat$outboundSchema, RunAgentModelConfigurationAudio$inboundSchema, RunAgentModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsJsonSchema$inboundSchema, RunAgentResponseFormatAgentsJsonSchema$outboundSchema, RunAgentResponseFormatJSONSchema$inboundSchema, RunAgentResponseFormatJSONSchema$outboundSchema, RunAgentResponseFormatJSONObject$inboundSchema, RunAgentResponseFormatJSONObject$outboundSchema, RunAgentResponseFormatText$inboundSchema, RunAgentResponseFormatText$outboundSchema, RunAgentModelConfigurationResponseFormat$inboundSchema, RunAgentModelConfigurationResponseFormat$outboundSchema, RunAgentModelConfigurationReasoningEffort$inboundSchema, RunAgentModelConfigurationReasoningEffort$outboundSchema, RunAgentModelConfigurationStop$inboundSchema, RunAgentModelConfigurationStop$outboundSchema, RunAgentModelConfigurationStreamOptions$inboundSchema, RunAgentModelConfigurationStreamOptions$outboundSchema, RunAgentModelConfigurationThinking$inboundSchema, RunAgentModelConfigurationThinking$outboundSchema, RunAgentToolChoiceType$inboundSchema, RunAgentToolChoiceType$outboundSchema, RunAgentToolChoiceFunction$inboundSchema, RunAgentToolChoiceFunction$outboundSchema, RunAgentToolChoice2$inboundSchema, RunAgentToolChoice2$outboundSchema, RunAgentToolChoice1$inboundSchema, RunAgentToolChoice1$outboundSchema, RunAgentModelConfigurationToolChoice$inboundSchema, RunAgentModelConfigurationToolChoice$outboundSchema, RunAgentModelConfigurationModalities$inboundSchema, RunAgentModelConfigurationModalities$outboundSchema, RunAgentId1$inboundSchema, RunAgentId1$outboundSchema, RunAgentModelConfigurationId$inboundSchema, RunAgentModelConfigurationId$outboundSchema, RunAgentModelConfigurationExecuteOn$inboundSchema, RunAgentModelConfigurationExecuteOn$outboundSchema, RunAgentModelConfigurationGuardrails$inboundSchema, RunAgentModelConfigurationGuardrails$outboundSchema, RunAgentModelConfigurationParameters$inboundSchema, RunAgentModelConfigurationParameters$outboundSchema, RunAgentModelConfigurationRetry$inboundSchema, RunAgentModelConfigurationRetry$outboundSchema, RunAgentModelConfiguration2$inboundSchema, RunAgentModelConfiguration2$outboundSchema, RunAgentModelConfiguration$inboundSchema, RunAgentModelConfiguration$outboundSchema, RunAgentFallbackModelConfigurationVoice$inboundSchema, RunAgentFallbackModelConfigurationVoice$outboundSchema, RunAgentFallbackModelConfigurationFormat$inboundSchema, RunAgentFallbackModelConfigurationFormat$outboundSchema, RunAgentFallbackModelConfigurationAudio$inboundSchema, RunAgentFallbackModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, RunAgentResponseFormatAgentsJSONObject$inboundSchema, RunAgentResponseFormatAgentsJSONObject$outboundSchema, RunAgentResponseFormatAgentsText$inboundSchema, RunAgentResponseFormatAgentsText$outboundSchema, RunAgentFallbackModelConfigurationResponseFormat$inboundSchema, RunAgentFallbackModelConfigurationResponseFormat$outboundSchema, RunAgentFallbackModelConfigurationReasoningEffort$inboundSchema, RunAgentFallbackModelConfigurationReasoningEffort$outboundSchema, RunAgentFallbackModelConfigurationStop$inboundSchema, RunAgentFallbackModelConfigurationStop$outboundSchema, RunAgentFallbackModelConfigurationStreamOptions$inboundSchema, RunAgentFallbackModelConfigurationStreamOptions$outboundSchema, RunAgentFallbackModelConfigurationThinking$inboundSchema, RunAgentFallbackModelConfigurationThinking$outboundSchema, RunAgentToolChoiceAgentsType$inboundSchema, RunAgentToolChoiceAgentsType$outboundSchema, RunAgentToolChoiceAgentsFunction$inboundSchema, RunAgentToolChoiceAgentsFunction$outboundSchema, RunAgentToolChoiceAgents2$inboundSchema, RunAgentToolChoiceAgents2$outboundSchema, RunAgentToolChoiceAgents1$inboundSchema, RunAgentToolChoiceAgents1$outboundSchema, RunAgentFallbackModelConfigurationToolChoice$inboundSchema, RunAgentFallbackModelConfigurationToolChoice$outboundSchema, RunAgentFallbackModelConfigurationModalities$inboundSchema, RunAgentFallbackModelConfigurationModalities$outboundSchema, RunAgentIdAgents1$inboundSchema, RunAgentIdAgents1$outboundSchema, RunAgentFallbackModelConfigurationId$inboundSchema, RunAgentFallbackModelConfigurationId$outboundSchema, RunAgentFallbackModelConfigurationExecuteOn$inboundSchema, RunAgentFallbackModelConfigurationExecuteOn$outboundSchema, RunAgentFallbackModelConfigurationGuardrails$inboundSchema, RunAgentFallbackModelConfigurationGuardrails$outboundSchema, RunAgentFallbackModelConfigurationParameters$inboundSchema, RunAgentFallbackModelConfigurationParameters$outboundSchema, RunAgentFallbackModelConfigurationRetry$inboundSchema, RunAgentFallbackModelConfigurationRetry$outboundSchema, RunAgentFallbackModelConfiguration2$inboundSchema, RunAgentFallbackModelConfiguration2$outboundSchema, RunAgentFallbackModelConfiguration$inboundSchema, RunAgentFallbackModelConfiguration$outboundSchema, RunAgentRoleToolMessage$inboundSchema, RunAgentRoleToolMessage$outboundSchema, RunAgentRoleUserMessage$inboundSchema, RunAgentRoleUserMessage$outboundSchema, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentPublicMessagePart$inboundSchema, RunAgentPublicMessagePart$outboundSchema, RunAgentA2AMessage$inboundSchema, RunAgentA2AMessage$outboundSchema, RunAgentIdentity$inboundSchema, RunAgentIdentity$outboundSchema, RunAgentContact$inboundSchema, RunAgentContact$outboundSchema, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentMemory$inboundSchema, RunAgentMemory$outboundSchema, RunAgentKnowledgeBases$inboundSchema, RunAgentKnowledgeBases$outboundSchema, RunAgentTeamOfAgents$inboundSchema, RunAgentTeamOfAgents$outboundSchema, AgentToolInputRunHeaders$inboundSchema, AgentToolInputRunHeaders$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$outboundSchema, AgentToolInputRunSchema$inboundSchema, AgentToolInputRunSchema$outboundSchema, Tools$inboundSchema2, Tools$outboundSchema2, ConnectionType$inboundSchema, ConnectionType$outboundSchema, Mcp$inboundSchema, Mcp$outboundSchema, MCPToolRun$inboundSchema, MCPToolRun$outboundSchema, Schema$inboundSchema, Schema$outboundSchema, AgentToolInputRunJsonSchema$inboundSchema, AgentToolInputRunJsonSchema$outboundSchema, JSONSchemaToolRun$inboundSchema, JSONSchemaToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema, RunAgentAgentToolInputRunParameters$inboundSchema, RunAgentAgentToolInputRunParameters$outboundSchema, AgentToolInputRunFunction$inboundSchema, AgentToolInputRunFunction$outboundSchema, FunctionToolRun$inboundSchema, FunctionToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$outboundSchema, AgentToolInputRunParameters$inboundSchema, AgentToolInputRunParameters$outboundSchema, Language$inboundSchema, Language$outboundSchema, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeToolRun$inboundSchema, CodeToolRun$outboundSchema, Method$inboundSchema, Method$outboundSchema, Headers2$inboundSchema, Headers2$outboundSchema, Headers$inboundSchema, Headers$outboundSchema, Blueprint$inboundSchema, Blueprint$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, DefaultValue$inboundSchema, DefaultValue$outboundSchema, Arguments$inboundSchema, Arguments$outboundSchema, Http$inboundSchema, Http$outboundSchema, HTTPToolRun$inboundSchema, HTTPToolRun$outboundSchema, AgentToolInputRunCurrentDateTool$inboundSchema, AgentToolInputRunCurrentDateTool$outboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, AgentToolInputRunWriteMemoryStoreTool$inboundSchema, AgentToolInputRunWriteMemoryStoreTool$outboundSchema, AgentToolInputRunQueryMemoryStoreTool$inboundSchema, AgentToolInputRunQueryMemoryStoreTool$outboundSchema, AgentToolInputRunRetrieveAgentsTool$inboundSchema, AgentToolInputRunRetrieveAgentsTool$outboundSchema, AgentToolInputRunCallSubAgentTool$inboundSchema, AgentToolInputRunCallSubAgentTool$outboundSchema, AgentToolInputRunWebScraperTool$inboundSchema, AgentToolInputRunWebScraperTool$outboundSchema, AgentToolInputRunGoogleSearchTool$inboundSchema, AgentToolInputRunGoogleSearchTool$outboundSchema, AgentToolInputRun$inboundSchema, AgentToolInputRun$outboundSchema, RunAgentToolApprovalRequired$inboundSchema, RunAgentToolApprovalRequired$outboundSchema, RunAgentExecuteOn$inboundSchema, RunAgentExecuteOn$outboundSchema, RunAgentEvaluators$inboundSchema, RunAgentEvaluators$outboundSchema, RunAgentAgentsExecuteOn$inboundSchema, RunAgentAgentsExecuteOn$outboundSchema, RunAgentGuardrails$inboundSchema, RunAgentGuardrails$outboundSchema, RunAgentSettings$inboundSchema, RunAgentSettings$outboundSchema, RunAgentRequestBody$inboundSchema, RunAgentRequestBody$outboundSchema, RunAgentKind$inboundSchema, RunAgentKind$outboundSchema, RunAgentTaskState$inboundSchema, RunAgentTaskState$outboundSchema, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentExtendedMessageRole$inboundSchema, RunAgentExtendedMessageRole$outboundSchema, RunAgentParts$inboundSchema, RunAgentParts$outboundSchema, RunAgentTaskStatusMessage$inboundSchema, RunAgentTaskStatusMessage$outboundSchema, RunAgentTaskStatus$inboundSchema, RunAgentTaskStatus$outboundSchema, RunAgentA2ATaskResponse$inboundSchema, RunAgentA2ATaskResponse$outboundSchema;
|
|
86085
86114
|
var init_runagent = __esm(() => {
|
|
86086
86115
|
init_esm();
|
|
86087
86116
|
init_primitives();
|
|
@@ -86181,7 +86210,7 @@ var init_runagent = __esm(() => {
|
|
|
86181
86210
|
RunAgentRoleUserMessage = {
|
|
86182
86211
|
User: "user"
|
|
86183
86212
|
};
|
|
86184
|
-
|
|
86213
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType = {
|
|
86185
86214
|
Object: "object"
|
|
86186
86215
|
};
|
|
86187
86216
|
ConnectionType = {
|
|
@@ -86937,29 +86966,29 @@ var init_runagent = __esm(() => {
|
|
|
86937
86966
|
value: stringType(),
|
|
86938
86967
|
encrypted: booleanType().default(false)
|
|
86939
86968
|
});
|
|
86940
|
-
|
|
86941
|
-
|
|
86942
|
-
|
|
86943
|
-
type:
|
|
86969
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$inboundSchema = nativeEnumType(RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType);
|
|
86970
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$inboundSchema;
|
|
86971
|
+
AgentToolInputRunSchema$inboundSchema = objectType({
|
|
86972
|
+
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$inboundSchema,
|
|
86944
86973
|
properties: recordType(anyType()).optional(),
|
|
86945
86974
|
required: arrayType(stringType()).optional()
|
|
86946
86975
|
});
|
|
86947
|
-
|
|
86948
|
-
type:
|
|
86976
|
+
AgentToolInputRunSchema$outboundSchema = objectType({
|
|
86977
|
+
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$outboundSchema,
|
|
86949
86978
|
properties: recordType(anyType()).optional(),
|
|
86950
86979
|
required: arrayType(stringType()).optional()
|
|
86951
86980
|
});
|
|
86952
86981
|
Tools$inboundSchema2 = objectType({
|
|
86953
|
-
id: stringType().default("
|
|
86982
|
+
id: stringType().default("01KEYB6F3GH4FMYVD3Y08AGCJP"),
|
|
86954
86983
|
name: stringType(),
|
|
86955
86984
|
description: stringType().optional(),
|
|
86956
|
-
schema: lazyType(() =>
|
|
86985
|
+
schema: lazyType(() => AgentToolInputRunSchema$inboundSchema)
|
|
86957
86986
|
});
|
|
86958
86987
|
Tools$outboundSchema2 = objectType({
|
|
86959
|
-
id: stringType().default("
|
|
86988
|
+
id: stringType().default("01KEYB6F3GH4FMYVD3Y08AGCJP"),
|
|
86960
86989
|
name: stringType(),
|
|
86961
86990
|
description: stringType().optional(),
|
|
86962
|
-
schema: lazyType(() =>
|
|
86991
|
+
schema: lazyType(() => AgentToolInputRunSchema$outboundSchema)
|
|
86963
86992
|
});
|
|
86964
86993
|
ConnectionType$inboundSchema = nativeEnumType(ConnectionType);
|
|
86965
86994
|
ConnectionType$outboundSchema = ConnectionType$inboundSchema;
|
|
@@ -87015,6 +87044,68 @@ var init_runagent = __esm(() => {
|
|
|
87015
87044
|
requiresApproval: "requires_approval"
|
|
87016
87045
|
});
|
|
87017
87046
|
});
|
|
87047
|
+
Schema$inboundSchema = collectExtraKeys(objectType({
|
|
87048
|
+
type: stringType(),
|
|
87049
|
+
properties: recordType(anyType()),
|
|
87050
|
+
required: arrayType(stringType())
|
|
87051
|
+
}).catchall(anyType()), "additionalProperties", true);
|
|
87052
|
+
Schema$outboundSchema = objectType({
|
|
87053
|
+
type: stringType(),
|
|
87054
|
+
properties: recordType(anyType()),
|
|
87055
|
+
required: arrayType(stringType()),
|
|
87056
|
+
additionalProperties: recordType(anyType()).optional()
|
|
87057
|
+
}).transform((v2) => {
|
|
87058
|
+
return {
|
|
87059
|
+
...v2.additionalProperties,
|
|
87060
|
+
...remap(v2, {
|
|
87061
|
+
additionalProperties: null
|
|
87062
|
+
})
|
|
87063
|
+
};
|
|
87064
|
+
});
|
|
87065
|
+
AgentToolInputRunJsonSchema$inboundSchema = objectType({
|
|
87066
|
+
name: stringType(),
|
|
87067
|
+
description: stringType(),
|
|
87068
|
+
schema: lazyType(() => Schema$inboundSchema),
|
|
87069
|
+
strict: booleanType().optional()
|
|
87070
|
+
});
|
|
87071
|
+
AgentToolInputRunJsonSchema$outboundSchema = objectType({
|
|
87072
|
+
name: stringType(),
|
|
87073
|
+
description: stringType(),
|
|
87074
|
+
schema: lazyType(() => Schema$outboundSchema),
|
|
87075
|
+
strict: booleanType().optional()
|
|
87076
|
+
});
|
|
87077
|
+
JSONSchemaToolRun$inboundSchema = objectType({
|
|
87078
|
+
type: literalType("json_schema"),
|
|
87079
|
+
key: stringType(),
|
|
87080
|
+
_id: stringType().optional(),
|
|
87081
|
+
display_name: stringType().optional(),
|
|
87082
|
+
description: stringType(),
|
|
87083
|
+
json_schema: lazyType(() => AgentToolInputRunJsonSchema$inboundSchema),
|
|
87084
|
+
requires_approval: booleanType().default(false)
|
|
87085
|
+
}).transform((v2) => {
|
|
87086
|
+
return remap(v2, {
|
|
87087
|
+
_id: "id",
|
|
87088
|
+
display_name: "displayName",
|
|
87089
|
+
json_schema: "jsonSchema",
|
|
87090
|
+
requires_approval: "requiresApproval"
|
|
87091
|
+
});
|
|
87092
|
+
});
|
|
87093
|
+
JSONSchemaToolRun$outboundSchema = objectType({
|
|
87094
|
+
type: literalType("json_schema"),
|
|
87095
|
+
key: stringType(),
|
|
87096
|
+
id: stringType().optional(),
|
|
87097
|
+
displayName: stringType().optional(),
|
|
87098
|
+
description: stringType(),
|
|
87099
|
+
jsonSchema: lazyType(() => AgentToolInputRunJsonSchema$outboundSchema),
|
|
87100
|
+
requiresApproval: booleanType().default(false)
|
|
87101
|
+
}).transform((v2) => {
|
|
87102
|
+
return remap(v2, {
|
|
87103
|
+
id: "_id",
|
|
87104
|
+
displayName: "display_name",
|
|
87105
|
+
jsonSchema: "json_schema",
|
|
87106
|
+
requiresApproval: "requires_approval"
|
|
87107
|
+
});
|
|
87108
|
+
});
|
|
87018
87109
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema = nativeEnumType(RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType);
|
|
87019
87110
|
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema = RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema;
|
|
87020
87111
|
RunAgentAgentToolInputRunParameters$inboundSchema = collectExtraKeys(objectType({
|
|
@@ -87420,6 +87511,7 @@ var init_runagent = __esm(() => {
|
|
|
87420
87511
|
lazyType(() => HTTPToolRun$inboundSchema),
|
|
87421
87512
|
lazyType(() => CodeToolRun$inboundSchema),
|
|
87422
87513
|
lazyType(() => FunctionToolRun$inboundSchema),
|
|
87514
|
+
lazyType(() => JSONSchemaToolRun$inboundSchema),
|
|
87423
87515
|
lazyType(() => MCPToolRun$inboundSchema)
|
|
87424
87516
|
]);
|
|
87425
87517
|
AgentToolInputRun$outboundSchema = unionType([
|
|
@@ -87437,6 +87529,7 @@ var init_runagent = __esm(() => {
|
|
|
87437
87529
|
lazyType(() => HTTPToolRun$outboundSchema),
|
|
87438
87530
|
lazyType(() => CodeToolRun$outboundSchema),
|
|
87439
87531
|
lazyType(() => FunctionToolRun$outboundSchema),
|
|
87532
|
+
lazyType(() => JSONSchemaToolRun$outboundSchema),
|
|
87440
87533
|
lazyType(() => MCPToolRun$outboundSchema)
|
|
87441
87534
|
]);
|
|
87442
87535
|
RunAgentToolApprovalRequired$inboundSchema = nativeEnumType(RunAgentToolApprovalRequired);
|
|
@@ -87501,6 +87594,7 @@ var init_runagent = __esm(() => {
|
|
|
87501
87594
|
lazyType(() => HTTPToolRun$inboundSchema),
|
|
87502
87595
|
lazyType(() => CodeToolRun$inboundSchema),
|
|
87503
87596
|
lazyType(() => FunctionToolRun$inboundSchema),
|
|
87597
|
+
lazyType(() => JSONSchemaToolRun$inboundSchema),
|
|
87504
87598
|
lazyType(() => MCPToolRun$inboundSchema)
|
|
87505
87599
|
])).optional(),
|
|
87506
87600
|
tool_approval_required: RunAgentToolApprovalRequired$inboundSchema.default("none"),
|
|
@@ -87531,6 +87625,7 @@ var init_runagent = __esm(() => {
|
|
|
87531
87625
|
lazyType(() => HTTPToolRun$outboundSchema),
|
|
87532
87626
|
lazyType(() => CodeToolRun$outboundSchema),
|
|
87533
87627
|
lazyType(() => FunctionToolRun$outboundSchema),
|
|
87628
|
+
lazyType(() => JSONSchemaToolRun$outboundSchema),
|
|
87534
87629
|
lazyType(() => MCPToolRun$outboundSchema)
|
|
87535
87630
|
])).optional(),
|
|
87536
87631
|
toolApprovalRequired: RunAgentToolApprovalRequired$outboundSchema.default("none"),
|
|
@@ -88485,7 +88580,7 @@ var init_streamagent = __esm(() => {
|
|
|
88485
88580
|
});
|
|
88486
88581
|
|
|
88487
88582
|
// src/models/operations/streamrunagent.ts
|
|
88488
|
-
var StreamRunAgentModelConfigurationVoice, StreamRunAgentModelConfigurationFormat, StreamRunAgentModelConfigurationReasoningEffort, StreamRunAgentToolChoiceType, StreamRunAgentToolChoice1, StreamRunAgentModelConfigurationModalities, StreamRunAgentId1, StreamRunAgentModelConfigurationExecuteOn, StreamRunAgentFallbackModelConfigurationVoice, StreamRunAgentFallbackModelConfigurationFormat, StreamRunAgentFallbackModelConfigurationReasoningEffort, StreamRunAgentToolChoiceAgentsType, StreamRunAgentToolChoiceAgents1, StreamRunAgentFallbackModelConfigurationModalities, StreamRunAgentIdAgents1, StreamRunAgentFallbackModelConfigurationExecuteOn, StreamRunAgentRoleToolMessage, StreamRunAgentRoleUserMessage, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType, AgentToolInputRunConnectionType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType, AgentToolInputRunLanguage, AgentToolInputRunMethod, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, StreamRunAgentToolApprovalRequired, StreamRunAgentExecuteOn, StreamRunAgentAgentsExecuteOn, StreamRunAgentModelConfigurationVoice$inboundSchema, StreamRunAgentModelConfigurationVoice$outboundSchema, StreamRunAgentModelConfigurationFormat$inboundSchema, StreamRunAgentModelConfigurationFormat$outboundSchema, StreamRunAgentModelConfigurationAudio$inboundSchema, StreamRunAgentModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema, StreamRunAgentResponseFormatJSONSchema$inboundSchema, StreamRunAgentResponseFormatJSONSchema$outboundSchema, StreamRunAgentResponseFormatJSONObject$inboundSchema, StreamRunAgentResponseFormatJSONObject$outboundSchema, StreamRunAgentResponseFormatText$inboundSchema, StreamRunAgentResponseFormatText$outboundSchema, StreamRunAgentModelConfigurationResponseFormat$inboundSchema, StreamRunAgentModelConfigurationResponseFormat$outboundSchema, StreamRunAgentModelConfigurationReasoningEffort$inboundSchema, StreamRunAgentModelConfigurationReasoningEffort$outboundSchema, StreamRunAgentModelConfigurationStop$inboundSchema, StreamRunAgentModelConfigurationStop$outboundSchema, StreamRunAgentModelConfigurationStreamOptions$inboundSchema, StreamRunAgentModelConfigurationStreamOptions$outboundSchema, StreamRunAgentModelConfigurationThinking$inboundSchema, StreamRunAgentModelConfigurationThinking$outboundSchema, StreamRunAgentToolChoiceType$inboundSchema, StreamRunAgentToolChoiceType$outboundSchema, StreamRunAgentToolChoiceFunction$inboundSchema, StreamRunAgentToolChoiceFunction$outboundSchema, StreamRunAgentToolChoice2$inboundSchema, StreamRunAgentToolChoice2$outboundSchema, StreamRunAgentToolChoice1$inboundSchema, StreamRunAgentToolChoice1$outboundSchema, StreamRunAgentModelConfigurationToolChoice$inboundSchema, StreamRunAgentModelConfigurationToolChoice$outboundSchema, StreamRunAgentModelConfigurationModalities$inboundSchema, StreamRunAgentModelConfigurationModalities$outboundSchema, StreamRunAgentId1$inboundSchema, StreamRunAgentId1$outboundSchema, StreamRunAgentModelConfigurationId$inboundSchema, StreamRunAgentModelConfigurationId$outboundSchema, StreamRunAgentModelConfigurationExecuteOn$inboundSchema, StreamRunAgentModelConfigurationExecuteOn$outboundSchema, StreamRunAgentModelConfigurationGuardrails$inboundSchema, StreamRunAgentModelConfigurationGuardrails$outboundSchema, StreamRunAgentModelConfigurationParameters$inboundSchema, StreamRunAgentModelConfigurationParameters$outboundSchema, StreamRunAgentModelConfigurationRetry$inboundSchema, StreamRunAgentModelConfigurationRetry$outboundSchema, StreamRunAgentModelConfiguration2$inboundSchema, StreamRunAgentModelConfiguration2$outboundSchema, StreamRunAgentModelConfiguration$inboundSchema, StreamRunAgentModelConfiguration$outboundSchema, StreamRunAgentFallbackModelConfigurationVoice$inboundSchema, StreamRunAgentFallbackModelConfigurationVoice$outboundSchema, StreamRunAgentFallbackModelConfigurationFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationAudio$inboundSchema, StreamRunAgentFallbackModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$inboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$outboundSchema, StreamRunAgentResponseFormatAgentsText$inboundSchema, StreamRunAgentResponseFormatAgentsText$outboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationReasoningEffort$inboundSchema, StreamRunAgentFallbackModelConfigurationReasoningEffort$outboundSchema, StreamRunAgentFallbackModelConfigurationStop$inboundSchema, StreamRunAgentFallbackModelConfigurationStop$outboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$inboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$outboundSchema, StreamRunAgentFallbackModelConfigurationThinking$inboundSchema, StreamRunAgentFallbackModelConfigurationThinking$outboundSchema, StreamRunAgentToolChoiceAgentsType$inboundSchema, StreamRunAgentToolChoiceAgentsType$outboundSchema, StreamRunAgentToolChoiceAgentsFunction$inboundSchema, StreamRunAgentToolChoiceAgentsFunction$outboundSchema, StreamRunAgentToolChoiceAgents2$inboundSchema, StreamRunAgentToolChoiceAgents2$outboundSchema, StreamRunAgentToolChoiceAgents1$inboundSchema, StreamRunAgentToolChoiceAgents1$outboundSchema, StreamRunAgentFallbackModelConfigurationToolChoice$inboundSchema, StreamRunAgentFallbackModelConfigurationToolChoice$outboundSchema, StreamRunAgentFallbackModelConfigurationModalities$inboundSchema, StreamRunAgentFallbackModelConfigurationModalities$outboundSchema, StreamRunAgentIdAgents1$inboundSchema, StreamRunAgentIdAgents1$outboundSchema, StreamRunAgentFallbackModelConfigurationId$inboundSchema, StreamRunAgentFallbackModelConfigurationId$outboundSchema, StreamRunAgentFallbackModelConfigurationExecuteOn$inboundSchema, StreamRunAgentFallbackModelConfigurationExecuteOn$outboundSchema, StreamRunAgentFallbackModelConfigurationGuardrails$inboundSchema, StreamRunAgentFallbackModelConfigurationGuardrails$outboundSchema, StreamRunAgentFallbackModelConfigurationParameters$inboundSchema, StreamRunAgentFallbackModelConfigurationParameters$outboundSchema, StreamRunAgentFallbackModelConfigurationRetry$inboundSchema, StreamRunAgentFallbackModelConfigurationRetry$outboundSchema, StreamRunAgentFallbackModelConfiguration2$inboundSchema, StreamRunAgentFallbackModelConfiguration2$outboundSchema, StreamRunAgentFallbackModelConfiguration$inboundSchema, StreamRunAgentFallbackModelConfiguration$outboundSchema, StreamRunAgentRoleToolMessage$inboundSchema, StreamRunAgentRoleToolMessage$outboundSchema, StreamRunAgentRoleUserMessage$inboundSchema, StreamRunAgentRoleUserMessage$outboundSchema, StreamRunAgentRole$inboundSchema, StreamRunAgentRole$outboundSchema, StreamRunAgentPublicMessagePart$inboundSchema, StreamRunAgentPublicMessagePart$outboundSchema, StreamRunAgentA2AMessage$inboundSchema, StreamRunAgentA2AMessage$outboundSchema, StreamRunAgentIdentity$inboundSchema, StreamRunAgentIdentity$outboundSchema, StreamRunAgentContact$inboundSchema, StreamRunAgentContact$outboundSchema, StreamRunAgentThread$inboundSchema, StreamRunAgentThread$outboundSchema, StreamRunAgentMemory$inboundSchema, StreamRunAgentMemory$outboundSchema, StreamRunAgentKnowledgeBases$inboundSchema, StreamRunAgentKnowledgeBases$outboundSchema, StreamRunAgentTeamOfAgents$inboundSchema, StreamRunAgentTeamOfAgents$outboundSchema, StreamRunAgentAgentToolInputRunAgentsHeaders$inboundSchema, StreamRunAgentAgentToolInputRunAgentsHeaders$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15McpType$outboundSchema, AgentToolInputRunSchema$inboundSchema, AgentToolInputRunSchema$outboundSchema, AgentToolInputRunTools$inboundSchema, AgentToolInputRunTools$outboundSchema, AgentToolInputRunConnectionType$inboundSchema, AgentToolInputRunConnectionType$outboundSchema, AgentToolInputRunMcp$inboundSchema, AgentToolInputRunMcp$outboundSchema, AgentToolInputRunMCPToolRun$inboundSchema, AgentToolInputRunMCPToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema, StreamRunAgentAgentToolInputRunAgentsParameters$inboundSchema, StreamRunAgentAgentToolInputRunAgentsParameters$outboundSchema, StreamRunAgentAgentToolInputRunFunction$inboundSchema, StreamRunAgentAgentToolInputRunFunction$outboundSchema, AgentToolInputRunFunctionToolRun$inboundSchema, AgentToolInputRunFunctionToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$outboundSchema, StreamRunAgentAgentToolInputRunParameters$inboundSchema, StreamRunAgentAgentToolInputRunParameters$outboundSchema, AgentToolInputRunLanguage$inboundSchema, AgentToolInputRunLanguage$outboundSchema, AgentToolInputRunCodeTool$inboundSchema, AgentToolInputRunCodeTool$outboundSchema, AgentToolInputRunCodeToolRun$inboundSchema, AgentToolInputRunCodeToolRun$outboundSchema, AgentToolInputRunMethod$inboundSchema, AgentToolInputRunMethod$outboundSchema, StreamRunAgentHeaders2$inboundSchema, StreamRunAgentHeaders2$outboundSchema, StreamRunAgentAgentToolInputRunHeaders$inboundSchema, StreamRunAgentAgentToolInputRunHeaders$outboundSchema, AgentToolInputRunBlueprint$inboundSchema, AgentToolInputRunBlueprint$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, AgentToolInputRunDefaultValue$inboundSchema, AgentToolInputRunDefaultValue$outboundSchema, AgentToolInputRunArguments$inboundSchema, AgentToolInputRunArguments$outboundSchema, AgentToolInputRunHttp$inboundSchema, AgentToolInputRunHttp$outboundSchema, AgentToolInputRunHTTPToolRun$inboundSchema, AgentToolInputRunHTTPToolRun$outboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema, StreamRunAgentAgentToolInputRun$inboundSchema, StreamRunAgentAgentToolInputRun$outboundSchema, StreamRunAgentToolApprovalRequired$inboundSchema, StreamRunAgentToolApprovalRequired$outboundSchema, StreamRunAgentExecuteOn$inboundSchema, StreamRunAgentExecuteOn$outboundSchema, StreamRunAgentEvaluators$inboundSchema, StreamRunAgentEvaluators$outboundSchema, StreamRunAgentAgentsExecuteOn$inboundSchema, StreamRunAgentAgentsExecuteOn$outboundSchema, StreamRunAgentGuardrails$inboundSchema, StreamRunAgentGuardrails$outboundSchema, StreamRunAgentSettings$inboundSchema, StreamRunAgentSettings$outboundSchema, StreamRunAgentRequestBody$inboundSchema, StreamRunAgentRequestBody$outboundSchema, StreamRunAgentData$inboundSchema, StreamRunAgentData$outboundSchema, StreamRunAgentResponseBody$inboundSchema, StreamRunAgentResponseBody$outboundSchema;
|
|
88583
|
+
var StreamRunAgentModelConfigurationVoice, StreamRunAgentModelConfigurationFormat, StreamRunAgentModelConfigurationReasoningEffort, StreamRunAgentToolChoiceType, StreamRunAgentToolChoice1, StreamRunAgentModelConfigurationModalities, StreamRunAgentId1, StreamRunAgentModelConfigurationExecuteOn, StreamRunAgentFallbackModelConfigurationVoice, StreamRunAgentFallbackModelConfigurationFormat, StreamRunAgentFallbackModelConfigurationReasoningEffort, StreamRunAgentToolChoiceAgentsType, StreamRunAgentToolChoiceAgents1, StreamRunAgentFallbackModelConfigurationModalities, StreamRunAgentIdAgents1, StreamRunAgentFallbackModelConfigurationExecuteOn, StreamRunAgentRoleToolMessage, StreamRunAgentRoleUserMessage, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType, AgentToolInputRunConnectionType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType, AgentToolInputRunLanguage, AgentToolInputRunMethod, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, StreamRunAgentToolApprovalRequired, StreamRunAgentExecuteOn, StreamRunAgentAgentsExecuteOn, StreamRunAgentModelConfigurationVoice$inboundSchema, StreamRunAgentModelConfigurationVoice$outboundSchema, StreamRunAgentModelConfigurationFormat$inboundSchema, StreamRunAgentModelConfigurationFormat$outboundSchema, StreamRunAgentModelConfigurationAudio$inboundSchema, StreamRunAgentModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema, StreamRunAgentResponseFormatJSONSchema$inboundSchema, StreamRunAgentResponseFormatJSONSchema$outboundSchema, StreamRunAgentResponseFormatJSONObject$inboundSchema, StreamRunAgentResponseFormatJSONObject$outboundSchema, StreamRunAgentResponseFormatText$inboundSchema, StreamRunAgentResponseFormatText$outboundSchema, StreamRunAgentModelConfigurationResponseFormat$inboundSchema, StreamRunAgentModelConfigurationResponseFormat$outboundSchema, StreamRunAgentModelConfigurationReasoningEffort$inboundSchema, StreamRunAgentModelConfigurationReasoningEffort$outboundSchema, StreamRunAgentModelConfigurationStop$inboundSchema, StreamRunAgentModelConfigurationStop$outboundSchema, StreamRunAgentModelConfigurationStreamOptions$inboundSchema, StreamRunAgentModelConfigurationStreamOptions$outboundSchema, StreamRunAgentModelConfigurationThinking$inboundSchema, StreamRunAgentModelConfigurationThinking$outboundSchema, StreamRunAgentToolChoiceType$inboundSchema, StreamRunAgentToolChoiceType$outboundSchema, StreamRunAgentToolChoiceFunction$inboundSchema, StreamRunAgentToolChoiceFunction$outboundSchema, StreamRunAgentToolChoice2$inboundSchema, StreamRunAgentToolChoice2$outboundSchema, StreamRunAgentToolChoice1$inboundSchema, StreamRunAgentToolChoice1$outboundSchema, StreamRunAgentModelConfigurationToolChoice$inboundSchema, StreamRunAgentModelConfigurationToolChoice$outboundSchema, StreamRunAgentModelConfigurationModalities$inboundSchema, StreamRunAgentModelConfigurationModalities$outboundSchema, StreamRunAgentId1$inboundSchema, StreamRunAgentId1$outboundSchema, StreamRunAgentModelConfigurationId$inboundSchema, StreamRunAgentModelConfigurationId$outboundSchema, StreamRunAgentModelConfigurationExecuteOn$inboundSchema, StreamRunAgentModelConfigurationExecuteOn$outboundSchema, StreamRunAgentModelConfigurationGuardrails$inboundSchema, StreamRunAgentModelConfigurationGuardrails$outboundSchema, StreamRunAgentModelConfigurationParameters$inboundSchema, StreamRunAgentModelConfigurationParameters$outboundSchema, StreamRunAgentModelConfigurationRetry$inboundSchema, StreamRunAgentModelConfigurationRetry$outboundSchema, StreamRunAgentModelConfiguration2$inboundSchema, StreamRunAgentModelConfiguration2$outboundSchema, StreamRunAgentModelConfiguration$inboundSchema, StreamRunAgentModelConfiguration$outboundSchema, StreamRunAgentFallbackModelConfigurationVoice$inboundSchema, StreamRunAgentFallbackModelConfigurationVoice$outboundSchema, StreamRunAgentFallbackModelConfigurationFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationAudio$inboundSchema, StreamRunAgentFallbackModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$inboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$outboundSchema, StreamRunAgentResponseFormatAgentsText$inboundSchema, StreamRunAgentResponseFormatAgentsText$outboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationReasoningEffort$inboundSchema, StreamRunAgentFallbackModelConfigurationReasoningEffort$outboundSchema, StreamRunAgentFallbackModelConfigurationStop$inboundSchema, StreamRunAgentFallbackModelConfigurationStop$outboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$inboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$outboundSchema, StreamRunAgentFallbackModelConfigurationThinking$inboundSchema, StreamRunAgentFallbackModelConfigurationThinking$outboundSchema, StreamRunAgentToolChoiceAgentsType$inboundSchema, StreamRunAgentToolChoiceAgentsType$outboundSchema, StreamRunAgentToolChoiceAgentsFunction$inboundSchema, StreamRunAgentToolChoiceAgentsFunction$outboundSchema, StreamRunAgentToolChoiceAgents2$inboundSchema, StreamRunAgentToolChoiceAgents2$outboundSchema, StreamRunAgentToolChoiceAgents1$inboundSchema, StreamRunAgentToolChoiceAgents1$outboundSchema, StreamRunAgentFallbackModelConfigurationToolChoice$inboundSchema, StreamRunAgentFallbackModelConfigurationToolChoice$outboundSchema, StreamRunAgentFallbackModelConfigurationModalities$inboundSchema, StreamRunAgentFallbackModelConfigurationModalities$outboundSchema, StreamRunAgentIdAgents1$inboundSchema, StreamRunAgentIdAgents1$outboundSchema, StreamRunAgentFallbackModelConfigurationId$inboundSchema, StreamRunAgentFallbackModelConfigurationId$outboundSchema, StreamRunAgentFallbackModelConfigurationExecuteOn$inboundSchema, StreamRunAgentFallbackModelConfigurationExecuteOn$outboundSchema, StreamRunAgentFallbackModelConfigurationGuardrails$inboundSchema, StreamRunAgentFallbackModelConfigurationGuardrails$outboundSchema, StreamRunAgentFallbackModelConfigurationParameters$inboundSchema, StreamRunAgentFallbackModelConfigurationParameters$outboundSchema, StreamRunAgentFallbackModelConfigurationRetry$inboundSchema, StreamRunAgentFallbackModelConfigurationRetry$outboundSchema, StreamRunAgentFallbackModelConfiguration2$inboundSchema, StreamRunAgentFallbackModelConfiguration2$outboundSchema, StreamRunAgentFallbackModelConfiguration$inboundSchema, StreamRunAgentFallbackModelConfiguration$outboundSchema, StreamRunAgentRoleToolMessage$inboundSchema, StreamRunAgentRoleToolMessage$outboundSchema, StreamRunAgentRoleUserMessage$inboundSchema, StreamRunAgentRoleUserMessage$outboundSchema, StreamRunAgentRole$inboundSchema, StreamRunAgentRole$outboundSchema, StreamRunAgentPublicMessagePart$inboundSchema, StreamRunAgentPublicMessagePart$outboundSchema, StreamRunAgentA2AMessage$inboundSchema, StreamRunAgentA2AMessage$outboundSchema, StreamRunAgentIdentity$inboundSchema, StreamRunAgentIdentity$outboundSchema, StreamRunAgentContact$inboundSchema, StreamRunAgentContact$outboundSchema, StreamRunAgentThread$inboundSchema, StreamRunAgentThread$outboundSchema, StreamRunAgentMemory$inboundSchema, StreamRunAgentMemory$outboundSchema, StreamRunAgentKnowledgeBases$inboundSchema, StreamRunAgentKnowledgeBases$outboundSchema, StreamRunAgentTeamOfAgents$inboundSchema, StreamRunAgentTeamOfAgents$outboundSchema, StreamRunAgentAgentToolInputRunAgentsHeaders$inboundSchema, StreamRunAgentAgentToolInputRunAgentsHeaders$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$outboundSchema, StreamRunAgentAgentToolInputRunAgentsSchema$inboundSchema, StreamRunAgentAgentToolInputRunAgentsSchema$outboundSchema, AgentToolInputRunTools$inboundSchema, AgentToolInputRunTools$outboundSchema, AgentToolInputRunConnectionType$inboundSchema, AgentToolInputRunConnectionType$outboundSchema, AgentToolInputRunMcp$inboundSchema, AgentToolInputRunMcp$outboundSchema, AgentToolInputRunMCPToolRun$inboundSchema, AgentToolInputRunMCPToolRun$outboundSchema, StreamRunAgentAgentToolInputRunSchema$inboundSchema, StreamRunAgentAgentToolInputRunSchema$outboundSchema, StreamRunAgentAgentToolInputRunJsonSchema$inboundSchema, StreamRunAgentAgentToolInputRunJsonSchema$outboundSchema, AgentToolInputRunJSONSchemaToolRun$inboundSchema, AgentToolInputRunJSONSchemaToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema, StreamRunAgentAgentToolInputRunAgentsParameters$inboundSchema, StreamRunAgentAgentToolInputRunAgentsParameters$outboundSchema, StreamRunAgentAgentToolInputRunFunction$inboundSchema, StreamRunAgentAgentToolInputRunFunction$outboundSchema, AgentToolInputRunFunctionToolRun$inboundSchema, AgentToolInputRunFunctionToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13CodeToolType$outboundSchema, StreamRunAgentAgentToolInputRunParameters$inboundSchema, StreamRunAgentAgentToolInputRunParameters$outboundSchema, AgentToolInputRunLanguage$inboundSchema, AgentToolInputRunLanguage$outboundSchema, AgentToolInputRunCodeTool$inboundSchema, AgentToolInputRunCodeTool$outboundSchema, AgentToolInputRunCodeToolRun$inboundSchema, AgentToolInputRunCodeToolRun$outboundSchema, AgentToolInputRunMethod$inboundSchema, AgentToolInputRunMethod$outboundSchema, StreamRunAgentHeaders2$inboundSchema, StreamRunAgentHeaders2$outboundSchema, StreamRunAgentAgentToolInputRunHeaders$inboundSchema, StreamRunAgentAgentToolInputRunHeaders$outboundSchema, AgentToolInputRunBlueprint$inboundSchema, AgentToolInputRunBlueprint$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType$outboundSchema, AgentToolInputRunDefaultValue$inboundSchema, AgentToolInputRunDefaultValue$outboundSchema, AgentToolInputRunArguments$inboundSchema, AgentToolInputRunArguments$outboundSchema, AgentToolInputRunHttp$inboundSchema, AgentToolInputRunHttp$outboundSchema, AgentToolInputRunHTTPToolRun$inboundSchema, AgentToolInputRunHTTPToolRun$outboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema, StreamRunAgentAgentToolInputRun$inboundSchema, StreamRunAgentAgentToolInputRun$outboundSchema, StreamRunAgentToolApprovalRequired$inboundSchema, StreamRunAgentToolApprovalRequired$outboundSchema, StreamRunAgentExecuteOn$inboundSchema, StreamRunAgentExecuteOn$outboundSchema, StreamRunAgentEvaluators$inboundSchema, StreamRunAgentEvaluators$outboundSchema, StreamRunAgentAgentsExecuteOn$inboundSchema, StreamRunAgentAgentsExecuteOn$outboundSchema, StreamRunAgentGuardrails$inboundSchema, StreamRunAgentGuardrails$outboundSchema, StreamRunAgentSettings$inboundSchema, StreamRunAgentSettings$outboundSchema, StreamRunAgentRequestBody$inboundSchema, StreamRunAgentRequestBody$outboundSchema, StreamRunAgentData$inboundSchema, StreamRunAgentData$outboundSchema, StreamRunAgentResponseBody$inboundSchema, StreamRunAgentResponseBody$outboundSchema;
|
|
88489
88584
|
var init_streamrunagent = __esm(() => {
|
|
88490
88585
|
init_esm();
|
|
88491
88586
|
init_primitives();
|
|
@@ -88585,7 +88680,7 @@ var init_streamrunagent = __esm(() => {
|
|
|
88585
88680
|
StreamRunAgentRoleUserMessage = {
|
|
88586
88681
|
User: "user"
|
|
88587
88682
|
};
|
|
88588
|
-
|
|
88683
|
+
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType = {
|
|
88589
88684
|
Object: "object"
|
|
88590
88685
|
};
|
|
88591
88686
|
AgentToolInputRunConnectionType = {
|
|
@@ -89319,29 +89414,29 @@ var init_streamrunagent = __esm(() => {
|
|
|
89319
89414
|
value: stringType(),
|
|
89320
89415
|
encrypted: booleanType().default(false)
|
|
89321
89416
|
});
|
|
89322
|
-
|
|
89323
|
-
|
|
89324
|
-
|
|
89325
|
-
type:
|
|
89417
|
+
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$inboundSchema = nativeEnumType(StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType);
|
|
89418
|
+
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$inboundSchema;
|
|
89419
|
+
StreamRunAgentAgentToolInputRunAgentsSchema$inboundSchema = objectType({
|
|
89420
|
+
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$inboundSchema,
|
|
89326
89421
|
properties: recordType(anyType()).optional(),
|
|
89327
89422
|
required: arrayType(stringType()).optional()
|
|
89328
89423
|
});
|
|
89329
|
-
|
|
89330
|
-
type:
|
|
89424
|
+
StreamRunAgentAgentToolInputRunAgentsSchema$outboundSchema = objectType({
|
|
89425
|
+
type: StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16McpType$outboundSchema,
|
|
89331
89426
|
properties: recordType(anyType()).optional(),
|
|
89332
89427
|
required: arrayType(stringType()).optional()
|
|
89333
89428
|
});
|
|
89334
89429
|
AgentToolInputRunTools$inboundSchema = objectType({
|
|
89335
|
-
id: stringType().default("
|
|
89430
|
+
id: stringType().default("01KEYB6F5YM71SS1938HYST5P2"),
|
|
89336
89431
|
name: stringType(),
|
|
89337
89432
|
description: stringType().optional(),
|
|
89338
|
-
schema: lazyType(() =>
|
|
89433
|
+
schema: lazyType(() => StreamRunAgentAgentToolInputRunAgentsSchema$inboundSchema)
|
|
89339
89434
|
});
|
|
89340
89435
|
AgentToolInputRunTools$outboundSchema = objectType({
|
|
89341
|
-
id: stringType().default("
|
|
89436
|
+
id: stringType().default("01KEYB6F5YM71SS1938HYST5P2"),
|
|
89342
89437
|
name: stringType(),
|
|
89343
89438
|
description: stringType().optional(),
|
|
89344
|
-
schema: lazyType(() =>
|
|
89439
|
+
schema: lazyType(() => StreamRunAgentAgentToolInputRunAgentsSchema$outboundSchema)
|
|
89345
89440
|
});
|
|
89346
89441
|
AgentToolInputRunConnectionType$inboundSchema = nativeEnumType(AgentToolInputRunConnectionType);
|
|
89347
89442
|
AgentToolInputRunConnectionType$outboundSchema = AgentToolInputRunConnectionType$inboundSchema;
|
|
@@ -89397,6 +89492,68 @@ var init_streamrunagent = __esm(() => {
|
|
|
89397
89492
|
requiresApproval: "requires_approval"
|
|
89398
89493
|
});
|
|
89399
89494
|
});
|
|
89495
|
+
StreamRunAgentAgentToolInputRunSchema$inboundSchema = collectExtraKeys(objectType({
|
|
89496
|
+
type: stringType(),
|
|
89497
|
+
properties: recordType(anyType()),
|
|
89498
|
+
required: arrayType(stringType())
|
|
89499
|
+
}).catchall(anyType()), "additionalProperties", true);
|
|
89500
|
+
StreamRunAgentAgentToolInputRunSchema$outboundSchema = objectType({
|
|
89501
|
+
type: stringType(),
|
|
89502
|
+
properties: recordType(anyType()),
|
|
89503
|
+
required: arrayType(stringType()),
|
|
89504
|
+
additionalProperties: recordType(anyType()).optional()
|
|
89505
|
+
}).transform((v2) => {
|
|
89506
|
+
return {
|
|
89507
|
+
...v2.additionalProperties,
|
|
89508
|
+
...remap(v2, {
|
|
89509
|
+
additionalProperties: null
|
|
89510
|
+
})
|
|
89511
|
+
};
|
|
89512
|
+
});
|
|
89513
|
+
StreamRunAgentAgentToolInputRunJsonSchema$inboundSchema = objectType({
|
|
89514
|
+
name: stringType(),
|
|
89515
|
+
description: stringType(),
|
|
89516
|
+
schema: lazyType(() => StreamRunAgentAgentToolInputRunSchema$inboundSchema),
|
|
89517
|
+
strict: booleanType().optional()
|
|
89518
|
+
});
|
|
89519
|
+
StreamRunAgentAgentToolInputRunJsonSchema$outboundSchema = objectType({
|
|
89520
|
+
name: stringType(),
|
|
89521
|
+
description: stringType(),
|
|
89522
|
+
schema: lazyType(() => StreamRunAgentAgentToolInputRunSchema$outboundSchema),
|
|
89523
|
+
strict: booleanType().optional()
|
|
89524
|
+
});
|
|
89525
|
+
AgentToolInputRunJSONSchemaToolRun$inboundSchema = objectType({
|
|
89526
|
+
type: literalType("json_schema"),
|
|
89527
|
+
key: stringType(),
|
|
89528
|
+
_id: stringType().optional(),
|
|
89529
|
+
display_name: stringType().optional(),
|
|
89530
|
+
description: stringType(),
|
|
89531
|
+
json_schema: lazyType(() => StreamRunAgentAgentToolInputRunJsonSchema$inboundSchema),
|
|
89532
|
+
requires_approval: booleanType().default(false)
|
|
89533
|
+
}).transform((v2) => {
|
|
89534
|
+
return remap(v2, {
|
|
89535
|
+
_id: "id",
|
|
89536
|
+
display_name: "displayName",
|
|
89537
|
+
json_schema: "jsonSchema",
|
|
89538
|
+
requires_approval: "requiresApproval"
|
|
89539
|
+
});
|
|
89540
|
+
});
|
|
89541
|
+
AgentToolInputRunJSONSchemaToolRun$outboundSchema = objectType({
|
|
89542
|
+
type: literalType("json_schema"),
|
|
89543
|
+
key: stringType(),
|
|
89544
|
+
id: stringType().optional(),
|
|
89545
|
+
displayName: stringType().optional(),
|
|
89546
|
+
description: stringType(),
|
|
89547
|
+
jsonSchema: lazyType(() => StreamRunAgentAgentToolInputRunJsonSchema$outboundSchema),
|
|
89548
|
+
requiresApproval: booleanType().default(false)
|
|
89549
|
+
}).transform((v2) => {
|
|
89550
|
+
return remap(v2, {
|
|
89551
|
+
id: "_id",
|
|
89552
|
+
displayName: "display_name",
|
|
89553
|
+
jsonSchema: "json_schema",
|
|
89554
|
+
requiresApproval: "requires_approval"
|
|
89555
|
+
});
|
|
89556
|
+
});
|
|
89400
89557
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema = nativeEnumType(StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType);
|
|
89401
89558
|
StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$outboundSchema = StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14FunctionType$inboundSchema;
|
|
89402
89559
|
StreamRunAgentAgentToolInputRunAgentsParameters$inboundSchema = collectExtraKeys(objectType({
|
|
@@ -89802,6 +89959,7 @@ var init_streamrunagent = __esm(() => {
|
|
|
89802
89959
|
lazyType(() => AgentToolInputRunHTTPToolRun$inboundSchema),
|
|
89803
89960
|
lazyType(() => AgentToolInputRunCodeToolRun$inboundSchema),
|
|
89804
89961
|
lazyType(() => AgentToolInputRunFunctionToolRun$inboundSchema),
|
|
89962
|
+
lazyType(() => AgentToolInputRunJSONSchemaToolRun$inboundSchema),
|
|
89805
89963
|
lazyType(() => AgentToolInputRunMCPToolRun$inboundSchema)
|
|
89806
89964
|
]);
|
|
89807
89965
|
StreamRunAgentAgentToolInputRun$outboundSchema = unionType([
|
|
@@ -89819,6 +89977,7 @@ var init_streamrunagent = __esm(() => {
|
|
|
89819
89977
|
lazyType(() => AgentToolInputRunHTTPToolRun$outboundSchema),
|
|
89820
89978
|
lazyType(() => AgentToolInputRunCodeToolRun$outboundSchema),
|
|
89821
89979
|
lazyType(() => AgentToolInputRunFunctionToolRun$outboundSchema),
|
|
89980
|
+
lazyType(() => AgentToolInputRunJSONSchemaToolRun$outboundSchema),
|
|
89822
89981
|
lazyType(() => AgentToolInputRunMCPToolRun$outboundSchema)
|
|
89823
89982
|
]);
|
|
89824
89983
|
StreamRunAgentToolApprovalRequired$inboundSchema = nativeEnumType(StreamRunAgentToolApprovalRequired);
|
|
@@ -89883,6 +90042,7 @@ var init_streamrunagent = __esm(() => {
|
|
|
89883
90042
|
lazyType(() => AgentToolInputRunHTTPToolRun$inboundSchema),
|
|
89884
90043
|
lazyType(() => AgentToolInputRunCodeToolRun$inboundSchema),
|
|
89885
90044
|
lazyType(() => AgentToolInputRunFunctionToolRun$inboundSchema),
|
|
90045
|
+
lazyType(() => AgentToolInputRunJSONSchemaToolRun$inboundSchema),
|
|
89886
90046
|
lazyType(() => AgentToolInputRunMCPToolRun$inboundSchema)
|
|
89887
90047
|
])).optional(),
|
|
89888
90048
|
tool_approval_required: StreamRunAgentToolApprovalRequired$inboundSchema.default("none"),
|
|
@@ -89913,6 +90073,7 @@ var init_streamrunagent = __esm(() => {
|
|
|
89913
90073
|
lazyType(() => AgentToolInputRunHTTPToolRun$outboundSchema),
|
|
89914
90074
|
lazyType(() => AgentToolInputRunCodeToolRun$outboundSchema),
|
|
89915
90075
|
lazyType(() => AgentToolInputRunFunctionToolRun$outboundSchema),
|
|
90076
|
+
lazyType(() => AgentToolInputRunJSONSchemaToolRun$outboundSchema),
|
|
89916
90077
|
lazyType(() => AgentToolInputRunMCPToolRun$outboundSchema)
|
|
89917
90078
|
])).optional(),
|
|
89918
90079
|
toolApprovalRequired: StreamRunAgentToolApprovalRequired$outboundSchema.default("none"),
|
|
@@ -90095,7 +90256,7 @@ var init_streamrunagent = __esm(() => {
|
|
|
90095
90256
|
});
|
|
90096
90257
|
|
|
90097
90258
|
// src/models/operations/updateagent.ts
|
|
90098
|
-
var ModelConfigurationVoice, ModelConfigurationFormat, ModelConfigurationReasoningEffort, UpdateAgentToolChoiceType, UpdateAgentToolChoice1, ModelConfigurationModalities, UpdateAgentId1, ModelConfigurationExecuteOn, UpdateAgentFallbackModelConfigurationVoice, UpdateAgentFallbackModelConfigurationFormat, UpdateAgentFallbackModelConfigurationReasoningEffort, UpdateAgentToolChoiceAgentsType, UpdateAgentToolChoiceAgents1, UpdateAgentFallbackModelConfigurationModalities, UpdateAgentIdAgents1, UpdateAgentFallbackModelConfigurationExecuteOn, UpdateAgentToolApprovalRequired, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, UpdateAgentAgentToolInputCRUDAgentsRequestType, UpdateAgentAgentToolInputCRUDAgentsType, UpdateAgentAgentToolInputCRUDType, UpdateAgentExecuteOn, UpdateAgentAgentsExecuteOn, UpdateAgentStatus, UpdateAgentAgentsToolApprovalRequired, UpdateAgentAgentsResponseExecuteOn, UpdateAgentAgentsResponse200ExecuteOn, UpdateAgentVoice, UpdateAgentFormat, UpdateAgentReasoningEffort, UpdateAgentToolChoiceAgentsResponseType, UpdateAgentToolChoiceAgentsResponse1, UpdateAgentModalities, UpdateAgentIdAgentsResponse1, UpdateAgentAgentsResponse200ApplicationJSONExecuteOn, UpdateAgentFallbackModelConfigurationAgentsVoice, UpdateAgentFallbackModelConfigurationAgentsFormat, UpdateAgentFallbackModelConfigurationAgentsReasoningEffort, UpdateAgentToolChoiceAgentsResponse200Type, UpdateAgentToolChoiceAgentsResponse2001, UpdateAgentFallbackModelConfigurationAgentsModalities, UpdateAgentIdAgentsResponse2001, UpdateAgentFallbackModelConfigurationAgentsExecuteOn, UpdateAgentSource, ModelConfigurationVoice$inboundSchema, ModelConfigurationVoice$outboundSchema, ModelConfigurationFormat$inboundSchema, ModelConfigurationFormat$outboundSchema, UpdateAgentModelConfigurationAudio$inboundSchema, UpdateAgentModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema, UpdateAgentResponseFormatJSONSchema$inboundSchema, UpdateAgentResponseFormatJSONSchema$outboundSchema, UpdateAgentResponseFormatJSONObject$inboundSchema, UpdateAgentResponseFormatJSONObject$outboundSchema, UpdateAgentResponseFormatText$inboundSchema, UpdateAgentResponseFormatText$outboundSchema, ModelConfigurationResponseFormat$inboundSchema, ModelConfigurationResponseFormat$outboundSchema, ModelConfigurationReasoningEffort$inboundSchema, ModelConfigurationReasoningEffort$outboundSchema, ModelConfigurationStop$inboundSchema, ModelConfigurationStop$outboundSchema, ModelConfigurationStreamOptions$inboundSchema, ModelConfigurationStreamOptions$outboundSchema, ModelConfigurationThinking$inboundSchema, ModelConfigurationThinking$outboundSchema, UpdateAgentToolChoiceType$inboundSchema, UpdateAgentToolChoiceType$outboundSchema, UpdateAgentToolChoiceFunction$inboundSchema, UpdateAgentToolChoiceFunction$outboundSchema, UpdateAgentToolChoice2$inboundSchema, UpdateAgentToolChoice2$outboundSchema, UpdateAgentToolChoice1$inboundSchema, UpdateAgentToolChoice1$outboundSchema, ModelConfigurationToolChoice$inboundSchema, ModelConfigurationToolChoice$outboundSchema, ModelConfigurationModalities$inboundSchema, ModelConfigurationModalities$outboundSchema, UpdateAgentId1$inboundSchema, UpdateAgentId1$outboundSchema, ModelConfigurationId$inboundSchema, ModelConfigurationId$outboundSchema, ModelConfigurationExecuteOn$inboundSchema, ModelConfigurationExecuteOn$outboundSchema, ModelConfigurationGuardrails$inboundSchema, ModelConfigurationGuardrails$outboundSchema, ModelConfigurationParameters$inboundSchema, ModelConfigurationParameters$outboundSchema, ModelConfigurationRetry$inboundSchema, ModelConfigurationRetry$outboundSchema, UpdateAgentModelConfiguration2$inboundSchema, UpdateAgentModelConfiguration2$outboundSchema, UpdateAgentModelConfiguration$inboundSchema, UpdateAgentModelConfiguration$outboundSchema, UpdateAgentFallbackModelConfigurationVoice$inboundSchema, UpdateAgentFallbackModelConfigurationVoice$outboundSchema, UpdateAgentFallbackModelConfigurationFormat$inboundSchema, UpdateAgentFallbackModelConfigurationFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsText$inboundSchema, UpdateAgentResponseFormatAgentsText$outboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationReasoningEffort$inboundSchema, UpdateAgentFallbackModelConfigurationReasoningEffort$outboundSchema, UpdateAgentFallbackModelConfigurationStop$inboundSchema, UpdateAgentFallbackModelConfigurationStop$outboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationThinking$inboundSchema, UpdateAgentFallbackModelConfigurationThinking$outboundSchema, UpdateAgentToolChoiceAgentsType$inboundSchema, UpdateAgentToolChoiceAgentsType$outboundSchema, UpdateAgentToolChoiceAgentsFunction$inboundSchema, UpdateAgentToolChoiceAgentsFunction$outboundSchema, UpdateAgentToolChoiceAgents2$inboundSchema, UpdateAgentToolChoiceAgents2$outboundSchema, UpdateAgentToolChoiceAgents1$inboundSchema, UpdateAgentToolChoiceAgents1$outboundSchema, UpdateAgentFallbackModelConfigurationToolChoice$inboundSchema, UpdateAgentFallbackModelConfigurationToolChoice$outboundSchema, UpdateAgentFallbackModelConfigurationModalities$inboundSchema, UpdateAgentFallbackModelConfigurationModalities$outboundSchema, UpdateAgentIdAgents1$inboundSchema, UpdateAgentIdAgents1$outboundSchema, UpdateAgentFallbackModelConfigurationId$inboundSchema, UpdateAgentFallbackModelConfigurationId$outboundSchema, UpdateAgentFallbackModelConfigurationExecuteOn$inboundSchema, UpdateAgentFallbackModelConfigurationExecuteOn$outboundSchema, UpdateAgentFallbackModelConfigurationGuardrails$inboundSchema, UpdateAgentFallbackModelConfigurationGuardrails$outboundSchema, UpdateAgentFallbackModelConfigurationParameters$inboundSchema, UpdateAgentFallbackModelConfigurationParameters$outboundSchema, UpdateAgentFallbackModelConfigurationRetry$inboundSchema, UpdateAgentFallbackModelConfigurationRetry$outboundSchema, UpdateAgentFallbackModelConfiguration2$inboundSchema, UpdateAgentFallbackModelConfiguration2$outboundSchema, UpdateAgentFallbackModelConfiguration$inboundSchema, UpdateAgentFallbackModelConfiguration$outboundSchema, UpdateAgentToolApprovalRequired$inboundSchema, UpdateAgentToolApprovalRequired$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema, AgentToolInputCRUDMCPTool$inboundSchema, AgentToolInputCRUDMCPTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, AgentToolInputCRUDFunctionTool$inboundSchema, AgentToolInputCRUDFunctionTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, AgentToolInputCRUDCodeExecutionTool$inboundSchema, AgentToolInputCRUDCodeExecutionTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, AgentToolInputCRUDHTTPTool$inboundSchema, AgentToolInputCRUDHTTPTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, AgentToolInputCRUDCurrentDateTool$inboundSchema, AgentToolInputCRUDCurrentDateTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, AgentToolInputCRUDRetrieveAgentsTool$inboundSchema, AgentToolInputCRUDRetrieveAgentsTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, AgentToolInputCRUDCallSubAgentTool$inboundSchema, AgentToolInputCRUDCallSubAgentTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema, AgentToolInputCRUDWebScraperTool$inboundSchema, AgentToolInputCRUDWebScraperTool$outboundSchema, UpdateAgentAgentToolInputCRUDType$inboundSchema, UpdateAgentAgentToolInputCRUDType$outboundSchema, AgentToolInputCRUDGoogleSearchTool$inboundSchema, AgentToolInputCRUDGoogleSearchTool$outboundSchema, UpdateAgentAgentToolInputCRUD$inboundSchema, UpdateAgentAgentToolInputCRUD$outboundSchema, UpdateAgentExecuteOn$inboundSchema, UpdateAgentExecuteOn$outboundSchema, UpdateAgentEvaluators$inboundSchema, UpdateAgentEvaluators$outboundSchema, UpdateAgentAgentsExecuteOn$inboundSchema, UpdateAgentAgentsExecuteOn$outboundSchema, UpdateAgentGuardrails$inboundSchema, UpdateAgentGuardrails$outboundSchema, UpdateAgentSettings$inboundSchema, UpdateAgentSettings$outboundSchema, UpdateAgentKnowledgeBases$inboundSchema, UpdateAgentKnowledgeBases$outboundSchema, UpdateAgentTeamOfAgents$inboundSchema, UpdateAgentTeamOfAgents$outboundSchema, UpdateAgentUpdateAgentRequest$inboundSchema, UpdateAgentUpdateAgentRequest$outboundSchema, UpdateAgentRequest$inboundSchema, UpdateAgentRequest$outboundSchema, UpdateAgentStatus$inboundSchema, UpdateAgentStatus$outboundSchema, UpdateAgentAgentsToolApprovalRequired$inboundSchema, UpdateAgentAgentsToolApprovalRequired$outboundSchema, UpdateAgentConditions$inboundSchema, UpdateAgentConditions$outboundSchema, UpdateAgentTools$inboundSchema, UpdateAgentTools$outboundSchema, UpdateAgentAgentsResponseExecuteOn$inboundSchema, UpdateAgentAgentsResponseExecuteOn$outboundSchema, UpdateAgentAgentsEvaluators$inboundSchema, UpdateAgentAgentsEvaluators$outboundSchema, UpdateAgentAgentsResponse200ExecuteOn$inboundSchema, UpdateAgentAgentsResponse200ExecuteOn$outboundSchema, UpdateAgentAgentsGuardrails$inboundSchema, UpdateAgentAgentsGuardrails$outboundSchema, UpdateAgentAgentsSettings$inboundSchema, UpdateAgentAgentsSettings$outboundSchema, UpdateAgentVoice$inboundSchema, UpdateAgentVoice$outboundSchema, UpdateAgentFormat$inboundSchema, UpdateAgentFormat$outboundSchema, UpdateAgentAudio$inboundSchema, UpdateAgentAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponseText$inboundSchema, UpdateAgentResponseFormatAgentsResponseText$outboundSchema, UpdateAgentResponseFormat$inboundSchema, UpdateAgentResponseFormat$outboundSchema, UpdateAgentReasoningEffort$inboundSchema, UpdateAgentReasoningEffort$outboundSchema, UpdateAgentStop$inboundSchema, UpdateAgentStop$outboundSchema, UpdateAgentStreamOptions$inboundSchema, UpdateAgentStreamOptions$outboundSchema, UpdateAgentThinking$inboundSchema, UpdateAgentThinking$outboundSchema, UpdateAgentToolChoiceAgentsResponseType$inboundSchema, UpdateAgentToolChoiceAgentsResponseType$outboundSchema, UpdateAgentToolChoiceAgentsResponseFunction$inboundSchema, UpdateAgentToolChoiceAgentsResponseFunction$outboundSchema, UpdateAgentToolChoiceAgentsResponse2$inboundSchema, UpdateAgentToolChoiceAgentsResponse2$outboundSchema, UpdateAgentToolChoiceAgentsResponse1$inboundSchema, UpdateAgentToolChoiceAgentsResponse1$outboundSchema, UpdateAgentToolChoice$inboundSchema, UpdateAgentToolChoice$outboundSchema, UpdateAgentModalities$inboundSchema, UpdateAgentModalities$outboundSchema, UpdateAgentIdAgentsResponse1$inboundSchema, UpdateAgentIdAgentsResponse1$outboundSchema, UpdateAgentId$inboundSchema, UpdateAgentId$outboundSchema, UpdateAgentAgentsResponse200ApplicationJSONExecuteOn$inboundSchema, UpdateAgentAgentsResponse200ApplicationJSONExecuteOn$outboundSchema, UpdateAgentAgentsResponseGuardrails$inboundSchema, UpdateAgentAgentsResponseGuardrails$outboundSchema, UpdateAgentParameters$inboundSchema, UpdateAgentParameters$outboundSchema, UpdateAgentRetry$inboundSchema, UpdateAgentRetry$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsReasoningEffort$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsReasoningEffort$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinking$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinking$outboundSchema, UpdateAgentToolChoiceAgentsResponse200Type$inboundSchema, UpdateAgentToolChoiceAgentsResponse200Type$outboundSchema, UpdateAgentToolChoiceAgentsResponse200Function$inboundSchema, UpdateAgentToolChoiceAgentsResponse200Function$outboundSchema, UpdateAgentToolChoiceAgentsResponse2002$inboundSchema, UpdateAgentToolChoiceAgentsResponse2002$outboundSchema, UpdateAgentToolChoiceAgentsResponse2001$inboundSchema, UpdateAgentToolChoiceAgentsResponse2001$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsToolChoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsToolChoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsModalities$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsModalities$outboundSchema, UpdateAgentIdAgentsResponse2001$inboundSchema, UpdateAgentIdAgentsResponse2001$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsId$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsId$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsExecuteOn$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsExecuteOn$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsGuardrails$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsGuardrails$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsRetry$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsRetry$outboundSchema, UpdateAgentFallbackModelConfigurationAgents2$inboundSchema, UpdateAgentFallbackModelConfigurationAgents2$outboundSchema, UpdateAgentAgentsFallbackModelConfiguration$inboundSchema, UpdateAgentAgentsFallbackModelConfiguration$outboundSchema, UpdateAgentModel$inboundSchema, UpdateAgentModel$outboundSchema, UpdateAgentAgentsTeamOfAgents$inboundSchema, UpdateAgentAgentsTeamOfAgents$outboundSchema, UpdateAgentMetrics$inboundSchema, UpdateAgentMetrics$outboundSchema, UpdateAgentAgentsKnowledgeBases$inboundSchema, UpdateAgentAgentsKnowledgeBases$outboundSchema, UpdateAgentSource$inboundSchema, UpdateAgentSource$outboundSchema, UpdateAgentResponseBody$inboundSchema, UpdateAgentResponseBody$outboundSchema;
|
|
90259
|
+
var ModelConfigurationVoice, ModelConfigurationFormat, ModelConfigurationReasoningEffort, UpdateAgentToolChoiceType, UpdateAgentToolChoice1, ModelConfigurationModalities, UpdateAgentId1, ModelConfigurationExecuteOn, UpdateAgentFallbackModelConfigurationVoice, UpdateAgentFallbackModelConfigurationFormat, UpdateAgentFallbackModelConfigurationReasoningEffort, UpdateAgentToolChoiceAgentsType, UpdateAgentToolChoiceAgents1, UpdateAgentFallbackModelConfigurationModalities, UpdateAgentIdAgents1, UpdateAgentFallbackModelConfigurationExecuteOn, UpdateAgentToolApprovalRequired, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, UpdateAgentAgentToolInputCRUDAgentsRequestType, UpdateAgentAgentToolInputCRUDAgentsType, UpdateAgentAgentToolInputCRUDType, UpdateAgentExecuteOn, UpdateAgentAgentsExecuteOn, UpdateAgentStatus, UpdateAgentAgentsToolApprovalRequired, UpdateAgentAgentsResponseExecuteOn, UpdateAgentAgentsResponse200ExecuteOn, UpdateAgentVoice, UpdateAgentFormat, UpdateAgentReasoningEffort, UpdateAgentToolChoiceAgentsResponseType, UpdateAgentToolChoiceAgentsResponse1, UpdateAgentModalities, UpdateAgentIdAgentsResponse1, UpdateAgentAgentsResponse200ApplicationJSONExecuteOn, UpdateAgentFallbackModelConfigurationAgentsVoice, UpdateAgentFallbackModelConfigurationAgentsFormat, UpdateAgentFallbackModelConfigurationAgentsReasoningEffort, UpdateAgentToolChoiceAgentsResponse200Type, UpdateAgentToolChoiceAgentsResponse2001, UpdateAgentFallbackModelConfigurationAgentsModalities, UpdateAgentIdAgentsResponse2001, UpdateAgentFallbackModelConfigurationAgentsExecuteOn, UpdateAgentSource, ModelConfigurationVoice$inboundSchema, ModelConfigurationVoice$outboundSchema, ModelConfigurationFormat$inboundSchema, ModelConfigurationFormat$outboundSchema, UpdateAgentModelConfigurationAudio$inboundSchema, UpdateAgentModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema, UpdateAgentResponseFormatJSONSchema$inboundSchema, UpdateAgentResponseFormatJSONSchema$outboundSchema, UpdateAgentResponseFormatJSONObject$inboundSchema, UpdateAgentResponseFormatJSONObject$outboundSchema, UpdateAgentResponseFormatText$inboundSchema, UpdateAgentResponseFormatText$outboundSchema, ModelConfigurationResponseFormat$inboundSchema, ModelConfigurationResponseFormat$outboundSchema, ModelConfigurationReasoningEffort$inboundSchema, ModelConfigurationReasoningEffort$outboundSchema, ModelConfigurationStop$inboundSchema, ModelConfigurationStop$outboundSchema, ModelConfigurationStreamOptions$inboundSchema, ModelConfigurationStreamOptions$outboundSchema, ModelConfigurationThinking$inboundSchema, ModelConfigurationThinking$outboundSchema, UpdateAgentToolChoiceType$inboundSchema, UpdateAgentToolChoiceType$outboundSchema, UpdateAgentToolChoiceFunction$inboundSchema, UpdateAgentToolChoiceFunction$outboundSchema, UpdateAgentToolChoice2$inboundSchema, UpdateAgentToolChoice2$outboundSchema, UpdateAgentToolChoice1$inboundSchema, UpdateAgentToolChoice1$outboundSchema, ModelConfigurationToolChoice$inboundSchema, ModelConfigurationToolChoice$outboundSchema, ModelConfigurationModalities$inboundSchema, ModelConfigurationModalities$outboundSchema, UpdateAgentId1$inboundSchema, UpdateAgentId1$outboundSchema, ModelConfigurationId$inboundSchema, ModelConfigurationId$outboundSchema, ModelConfigurationExecuteOn$inboundSchema, ModelConfigurationExecuteOn$outboundSchema, ModelConfigurationGuardrails$inboundSchema, ModelConfigurationGuardrails$outboundSchema, ModelConfigurationParameters$inboundSchema, ModelConfigurationParameters$outboundSchema, ModelConfigurationRetry$inboundSchema, ModelConfigurationRetry$outboundSchema, UpdateAgentModelConfiguration2$inboundSchema, UpdateAgentModelConfiguration2$outboundSchema, UpdateAgentModelConfiguration$inboundSchema, UpdateAgentModelConfiguration$outboundSchema, UpdateAgentFallbackModelConfigurationVoice$inboundSchema, UpdateAgentFallbackModelConfigurationVoice$outboundSchema, UpdateAgentFallbackModelConfigurationFormat$inboundSchema, UpdateAgentFallbackModelConfigurationFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsText$inboundSchema, UpdateAgentResponseFormatAgentsText$outboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationReasoningEffort$inboundSchema, UpdateAgentFallbackModelConfigurationReasoningEffort$outboundSchema, UpdateAgentFallbackModelConfigurationStop$inboundSchema, UpdateAgentFallbackModelConfigurationStop$outboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationThinking$inboundSchema, UpdateAgentFallbackModelConfigurationThinking$outboundSchema, UpdateAgentToolChoiceAgentsType$inboundSchema, UpdateAgentToolChoiceAgentsType$outboundSchema, UpdateAgentToolChoiceAgentsFunction$inboundSchema, UpdateAgentToolChoiceAgentsFunction$outboundSchema, UpdateAgentToolChoiceAgents2$inboundSchema, UpdateAgentToolChoiceAgents2$outboundSchema, UpdateAgentToolChoiceAgents1$inboundSchema, UpdateAgentToolChoiceAgents1$outboundSchema, UpdateAgentFallbackModelConfigurationToolChoice$inboundSchema, UpdateAgentFallbackModelConfigurationToolChoice$outboundSchema, UpdateAgentFallbackModelConfigurationModalities$inboundSchema, UpdateAgentFallbackModelConfigurationModalities$outboundSchema, UpdateAgentIdAgents1$inboundSchema, UpdateAgentIdAgents1$outboundSchema, UpdateAgentFallbackModelConfigurationId$inboundSchema, UpdateAgentFallbackModelConfigurationId$outboundSchema, UpdateAgentFallbackModelConfigurationExecuteOn$inboundSchema, UpdateAgentFallbackModelConfigurationExecuteOn$outboundSchema, UpdateAgentFallbackModelConfigurationGuardrails$inboundSchema, UpdateAgentFallbackModelConfigurationGuardrails$outboundSchema, UpdateAgentFallbackModelConfigurationParameters$inboundSchema, UpdateAgentFallbackModelConfigurationParameters$outboundSchema, UpdateAgentFallbackModelConfigurationRetry$inboundSchema, UpdateAgentFallbackModelConfigurationRetry$outboundSchema, UpdateAgentFallbackModelConfiguration2$inboundSchema, UpdateAgentFallbackModelConfiguration2$outboundSchema, UpdateAgentFallbackModelConfiguration$inboundSchema, UpdateAgentFallbackModelConfiguration$outboundSchema, UpdateAgentToolApprovalRequired$inboundSchema, UpdateAgentToolApprovalRequired$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema, AgentToolInputCRUDMCPTool$inboundSchema, AgentToolInputCRUDMCPTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema, AgentToolInputCRUDJSONSchemaTool$inboundSchema, AgentToolInputCRUDJSONSchemaTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, AgentToolInputCRUDFunctionTool$inboundSchema, AgentToolInputCRUDFunctionTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, AgentToolInputCRUDCodeExecutionTool$inboundSchema, AgentToolInputCRUDCodeExecutionTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, AgentToolInputCRUDHTTPTool$inboundSchema, AgentToolInputCRUDHTTPTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, AgentToolInputCRUDCurrentDateTool$inboundSchema, AgentToolInputCRUDCurrentDateTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$inboundSchema, AgentToolInputCRUDQueryKnowledgeBaseTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputCRUDRetrieveKnowledgeBasesTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$inboundSchema, AgentToolInputCRUDDeleteMemoryDocumentTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type$outboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$inboundSchema, AgentToolInputCRUDRetrieveMemoryStoresTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$inboundSchema, AgentToolInputCRUDWriteMemoryStoreTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$inboundSchema, AgentToolInputCRUDQueryMemoryStoreTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, AgentToolInputCRUDRetrieveAgentsTool$inboundSchema, AgentToolInputCRUDRetrieveAgentsTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, AgentToolInputCRUDCallSubAgentTool$inboundSchema, AgentToolInputCRUDCallSubAgentTool$outboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$inboundSchema, UpdateAgentAgentToolInputCRUDAgentsType$outboundSchema, AgentToolInputCRUDWebScraperTool$inboundSchema, AgentToolInputCRUDWebScraperTool$outboundSchema, UpdateAgentAgentToolInputCRUDType$inboundSchema, UpdateAgentAgentToolInputCRUDType$outboundSchema, AgentToolInputCRUDGoogleSearchTool$inboundSchema, AgentToolInputCRUDGoogleSearchTool$outboundSchema, UpdateAgentAgentToolInputCRUD$inboundSchema, UpdateAgentAgentToolInputCRUD$outboundSchema, UpdateAgentExecuteOn$inboundSchema, UpdateAgentExecuteOn$outboundSchema, UpdateAgentEvaluators$inboundSchema, UpdateAgentEvaluators$outboundSchema, UpdateAgentAgentsExecuteOn$inboundSchema, UpdateAgentAgentsExecuteOn$outboundSchema, UpdateAgentGuardrails$inboundSchema, UpdateAgentGuardrails$outboundSchema, UpdateAgentSettings$inboundSchema, UpdateAgentSettings$outboundSchema, UpdateAgentKnowledgeBases$inboundSchema, UpdateAgentKnowledgeBases$outboundSchema, UpdateAgentTeamOfAgents$inboundSchema, UpdateAgentTeamOfAgents$outboundSchema, UpdateAgentUpdateAgentRequest$inboundSchema, UpdateAgentUpdateAgentRequest$outboundSchema, UpdateAgentRequest$inboundSchema, UpdateAgentRequest$outboundSchema, UpdateAgentStatus$inboundSchema, UpdateAgentStatus$outboundSchema, UpdateAgentAgentsToolApprovalRequired$inboundSchema, UpdateAgentAgentsToolApprovalRequired$outboundSchema, UpdateAgentConditions$inboundSchema, UpdateAgentConditions$outboundSchema, UpdateAgentTools$inboundSchema, UpdateAgentTools$outboundSchema, UpdateAgentAgentsResponseExecuteOn$inboundSchema, UpdateAgentAgentsResponseExecuteOn$outboundSchema, UpdateAgentAgentsEvaluators$inboundSchema, UpdateAgentAgentsEvaluators$outboundSchema, UpdateAgentAgentsResponse200ExecuteOn$inboundSchema, UpdateAgentAgentsResponse200ExecuteOn$outboundSchema, UpdateAgentAgentsGuardrails$inboundSchema, UpdateAgentAgentsGuardrails$outboundSchema, UpdateAgentAgentsSettings$inboundSchema, UpdateAgentAgentsSettings$outboundSchema, UpdateAgentVoice$inboundSchema, UpdateAgentVoice$outboundSchema, UpdateAgentFormat$inboundSchema, UpdateAgentFormat$outboundSchema, UpdateAgentAudio$inboundSchema, UpdateAgentAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponseText$inboundSchema, UpdateAgentResponseFormatAgentsResponseText$outboundSchema, UpdateAgentResponseFormat$inboundSchema, UpdateAgentResponseFormat$outboundSchema, UpdateAgentReasoningEffort$inboundSchema, UpdateAgentReasoningEffort$outboundSchema, UpdateAgentStop$inboundSchema, UpdateAgentStop$outboundSchema, UpdateAgentStreamOptions$inboundSchema, UpdateAgentStreamOptions$outboundSchema, UpdateAgentThinking$inboundSchema, UpdateAgentThinking$outboundSchema, UpdateAgentToolChoiceAgentsResponseType$inboundSchema, UpdateAgentToolChoiceAgentsResponseType$outboundSchema, UpdateAgentToolChoiceAgentsResponseFunction$inboundSchema, UpdateAgentToolChoiceAgentsResponseFunction$outboundSchema, UpdateAgentToolChoiceAgentsResponse2$inboundSchema, UpdateAgentToolChoiceAgentsResponse2$outboundSchema, UpdateAgentToolChoiceAgentsResponse1$inboundSchema, UpdateAgentToolChoiceAgentsResponse1$outboundSchema, UpdateAgentToolChoice$inboundSchema, UpdateAgentToolChoice$outboundSchema, UpdateAgentModalities$inboundSchema, UpdateAgentModalities$outboundSchema, UpdateAgentIdAgentsResponse1$inboundSchema, UpdateAgentIdAgentsResponse1$outboundSchema, UpdateAgentId$inboundSchema, UpdateAgentId$outboundSchema, UpdateAgentAgentsResponse200ApplicationJSONExecuteOn$inboundSchema, UpdateAgentAgentsResponse200ApplicationJSONExecuteOn$outboundSchema, UpdateAgentAgentsResponseGuardrails$inboundSchema, UpdateAgentAgentsResponseGuardrails$outboundSchema, UpdateAgentParameters$inboundSchema, UpdateAgentParameters$outboundSchema, UpdateAgentRetry$inboundSchema, UpdateAgentRetry$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsReasoningEffort$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsReasoningEffort$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinking$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsThinking$outboundSchema, UpdateAgentToolChoiceAgentsResponse200Type$inboundSchema, UpdateAgentToolChoiceAgentsResponse200Type$outboundSchema, UpdateAgentToolChoiceAgentsResponse200Function$inboundSchema, UpdateAgentToolChoiceAgentsResponse200Function$outboundSchema, UpdateAgentToolChoiceAgentsResponse2002$inboundSchema, UpdateAgentToolChoiceAgentsResponse2002$outboundSchema, UpdateAgentToolChoiceAgentsResponse2001$inboundSchema, UpdateAgentToolChoiceAgentsResponse2001$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsToolChoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsToolChoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsModalities$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsModalities$outboundSchema, UpdateAgentIdAgentsResponse2001$inboundSchema, UpdateAgentIdAgentsResponse2001$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsId$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsId$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsExecuteOn$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsExecuteOn$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsGuardrails$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsGuardrails$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsRetry$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsRetry$outboundSchema, UpdateAgentFallbackModelConfigurationAgents2$inboundSchema, UpdateAgentFallbackModelConfigurationAgents2$outboundSchema, UpdateAgentAgentsFallbackModelConfiguration$inboundSchema, UpdateAgentAgentsFallbackModelConfiguration$outboundSchema, UpdateAgentModel$inboundSchema, UpdateAgentModel$outboundSchema, UpdateAgentAgentsTeamOfAgents$inboundSchema, UpdateAgentAgentsTeamOfAgents$outboundSchema, UpdateAgentMetrics$inboundSchema, UpdateAgentMetrics$outboundSchema, UpdateAgentAgentsKnowledgeBases$inboundSchema, UpdateAgentAgentsKnowledgeBases$outboundSchema, UpdateAgentSource$inboundSchema, UpdateAgentSource$outboundSchema, UpdateAgentResponseBody$inboundSchema, UpdateAgentResponseBody$outboundSchema;
|
|
90099
90260
|
var init_updateagent = __esm(() => {
|
|
90100
90261
|
init_esm();
|
|
90101
90262
|
init_primitives();
|
|
@@ -90193,9 +90354,12 @@ var init_updateagent = __esm(() => {
|
|
|
90193
90354
|
RespectTool: "respect_tool",
|
|
90194
90355
|
None: "none"
|
|
90195
90356
|
};
|
|
90196
|
-
|
|
90357
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type = {
|
|
90197
90358
|
Mcp: "mcp"
|
|
90198
90359
|
};
|
|
90360
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type = {
|
|
90361
|
+
JsonSchema: "json_schema"
|
|
90362
|
+
};
|
|
90199
90363
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type = {
|
|
90200
90364
|
Function: "function"
|
|
90201
90365
|
};
|
|
@@ -90900,10 +91064,10 @@ var init_updateagent = __esm(() => {
|
|
|
90900
91064
|
]);
|
|
90901
91065
|
UpdateAgentToolApprovalRequired$inboundSchema = nativeEnumType(UpdateAgentToolApprovalRequired);
|
|
90902
91066
|
UpdateAgentToolApprovalRequired$outboundSchema = UpdateAgentToolApprovalRequired$inboundSchema;
|
|
90903
|
-
|
|
90904
|
-
|
|
91067
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema = nativeEnumType(UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type);
|
|
91068
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema;
|
|
90905
91069
|
AgentToolInputCRUDMCPTool$inboundSchema = objectType({
|
|
90906
|
-
type:
|
|
91070
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema.default("mcp"),
|
|
90907
91071
|
key: stringType().optional(),
|
|
90908
91072
|
id: stringType().optional(),
|
|
90909
91073
|
tool_id: stringType(),
|
|
@@ -90915,7 +91079,7 @@ var init_updateagent = __esm(() => {
|
|
|
90915
91079
|
});
|
|
90916
91080
|
});
|
|
90917
91081
|
AgentToolInputCRUDMCPTool$outboundSchema = objectType({
|
|
90918
|
-
type:
|
|
91082
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema.default("mcp"),
|
|
90919
91083
|
key: stringType().optional(),
|
|
90920
91084
|
id: stringType().optional(),
|
|
90921
91085
|
toolId: stringType(),
|
|
@@ -90926,6 +91090,28 @@ var init_updateagent = __esm(() => {
|
|
|
90926
91090
|
requiresApproval: "requires_approval"
|
|
90927
91091
|
});
|
|
90928
91092
|
});
|
|
91093
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema = nativeEnumType(UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type);
|
|
91094
|
+
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema;
|
|
91095
|
+
AgentToolInputCRUDJSONSchemaTool$inboundSchema = objectType({
|
|
91096
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema.default("json_schema"),
|
|
91097
|
+
key: stringType().optional(),
|
|
91098
|
+
id: stringType().optional(),
|
|
91099
|
+
requires_approval: booleanType().default(false)
|
|
91100
|
+
}).transform((v2) => {
|
|
91101
|
+
return remap(v2, {
|
|
91102
|
+
requires_approval: "requiresApproval"
|
|
91103
|
+
});
|
|
91104
|
+
});
|
|
91105
|
+
AgentToolInputCRUDJSONSchemaTool$outboundSchema = objectType({
|
|
91106
|
+
type: UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema.default("json_schema"),
|
|
91107
|
+
key: stringType().optional(),
|
|
91108
|
+
id: stringType().optional(),
|
|
91109
|
+
requiresApproval: booleanType().default(false)
|
|
91110
|
+
}).transform((v2) => {
|
|
91111
|
+
return remap(v2, {
|
|
91112
|
+
requiresApproval: "requires_approval"
|
|
91113
|
+
});
|
|
91114
|
+
});
|
|
90929
91115
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema = nativeEnumType(UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type);
|
|
90930
91116
|
UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema = UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema;
|
|
90931
91117
|
AgentToolInputCRUDFunctionTool$inboundSchema = objectType({
|
|
@@ -91205,7 +91391,8 @@ var init_updateagent = __esm(() => {
|
|
|
91205
91391
|
lazyType(() => AgentToolInputCRUDMCPTool$inboundSchema),
|
|
91206
91392
|
lazyType(() => AgentToolInputCRUDHTTPTool$inboundSchema),
|
|
91207
91393
|
lazyType(() => AgentToolInputCRUDCodeExecutionTool$inboundSchema),
|
|
91208
|
-
lazyType(() => AgentToolInputCRUDFunctionTool$inboundSchema)
|
|
91394
|
+
lazyType(() => AgentToolInputCRUDFunctionTool$inboundSchema),
|
|
91395
|
+
lazyType(() => AgentToolInputCRUDJSONSchemaTool$inboundSchema)
|
|
91209
91396
|
]);
|
|
91210
91397
|
UpdateAgentAgentToolInputCRUD$outboundSchema = unionType([
|
|
91211
91398
|
lazyType(() => AgentToolInputCRUDGoogleSearchTool$outboundSchema),
|
|
@@ -91222,7 +91409,8 @@ var init_updateagent = __esm(() => {
|
|
|
91222
91409
|
lazyType(() => AgentToolInputCRUDMCPTool$outboundSchema),
|
|
91223
91410
|
lazyType(() => AgentToolInputCRUDHTTPTool$outboundSchema),
|
|
91224
91411
|
lazyType(() => AgentToolInputCRUDCodeExecutionTool$outboundSchema),
|
|
91225
|
-
lazyType(() => AgentToolInputCRUDFunctionTool$outboundSchema)
|
|
91412
|
+
lazyType(() => AgentToolInputCRUDFunctionTool$outboundSchema),
|
|
91413
|
+
lazyType(() => AgentToolInputCRUDJSONSchemaTool$outboundSchema)
|
|
91226
91414
|
]);
|
|
91227
91415
|
UpdateAgentExecuteOn$inboundSchema = nativeEnumType(UpdateAgentExecuteOn);
|
|
91228
91416
|
UpdateAgentExecuteOn$outboundSchema = UpdateAgentExecuteOn$inboundSchema;
|
|
@@ -91287,7 +91475,8 @@ var init_updateagent = __esm(() => {
|
|
|
91287
91475
|
lazyType(() => AgentToolInputCRUDMCPTool$inboundSchema),
|
|
91288
91476
|
lazyType(() => AgentToolInputCRUDHTTPTool$inboundSchema),
|
|
91289
91477
|
lazyType(() => AgentToolInputCRUDCodeExecutionTool$inboundSchema),
|
|
91290
|
-
lazyType(() => AgentToolInputCRUDFunctionTool$inboundSchema)
|
|
91478
|
+
lazyType(() => AgentToolInputCRUDFunctionTool$inboundSchema),
|
|
91479
|
+
lazyType(() => AgentToolInputCRUDJSONSchemaTool$inboundSchema)
|
|
91291
91480
|
])).optional(),
|
|
91292
91481
|
evaluators: arrayType(lazyType(() => UpdateAgentEvaluators$inboundSchema)).optional(),
|
|
91293
91482
|
guardrails: arrayType(lazyType(() => UpdateAgentGuardrails$inboundSchema)).optional()
|
|
@@ -91317,7 +91506,8 @@ var init_updateagent = __esm(() => {
|
|
|
91317
91506
|
lazyType(() => AgentToolInputCRUDMCPTool$outboundSchema),
|
|
91318
91507
|
lazyType(() => AgentToolInputCRUDHTTPTool$outboundSchema),
|
|
91319
91508
|
lazyType(() => AgentToolInputCRUDCodeExecutionTool$outboundSchema),
|
|
91320
|
-
lazyType(() => AgentToolInputCRUDFunctionTool$outboundSchema)
|
|
91509
|
+
lazyType(() => AgentToolInputCRUDFunctionTool$outboundSchema),
|
|
91510
|
+
lazyType(() => AgentToolInputCRUDJSONSchemaTool$outboundSchema)
|
|
91321
91511
|
])).optional(),
|
|
91322
91512
|
evaluators: arrayType(lazyType(() => UpdateAgentEvaluators$outboundSchema)).optional(),
|
|
91323
91513
|
guardrails: arrayType(lazyType(() => UpdateAgentGuardrails$outboundSchema)).optional()
|
|
@@ -92372,7 +92562,7 @@ var init_updatecontact = __esm(() => {
|
|
|
92372
92562
|
tags: arrayType(stringType()).optional(),
|
|
92373
92563
|
metadata: recordType(anyType()).optional(),
|
|
92374
92564
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
92375
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
92565
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
92376
92566
|
}).transform((v2) => {
|
|
92377
92567
|
return remap(v2, {
|
|
92378
92568
|
_id: "id",
|
|
@@ -92390,7 +92580,7 @@ var init_updatecontact = __esm(() => {
|
|
|
92390
92580
|
tags: arrayType(stringType()).optional(),
|
|
92391
92581
|
metadata: recordType(anyType()).optional(),
|
|
92392
92582
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
92393
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
92583
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
92394
92584
|
}).transform((v2) => {
|
|
92395
92585
|
return remap(v2, {
|
|
92396
92586
|
id: "_id",
|
|
@@ -92456,7 +92646,7 @@ var init_updateconversation = __esm(() => {
|
|
|
92456
92646
|
model: nullableType(stringType()).optional()
|
|
92457
92647
|
});
|
|
92458
92648
|
UpdateConversationResponseBody$inboundSchema = objectType({
|
|
92459
|
-
_id: stringType().default("
|
|
92649
|
+
_id: stringType().default("conv_01keyb6f8p5c83fettrvexabzy"),
|
|
92460
92650
|
kind: UpdateConversationKind$inboundSchema,
|
|
92461
92651
|
displayName: stringType(),
|
|
92462
92652
|
createdAt: numberType(),
|
|
@@ -92470,7 +92660,7 @@ var init_updateconversation = __esm(() => {
|
|
|
92470
92660
|
});
|
|
92471
92661
|
});
|
|
92472
92662
|
UpdateConversationResponseBody$outboundSchema = objectType({
|
|
92473
|
-
id: stringType().default("
|
|
92663
|
+
id: stringType().default("conv_01keyb6f8p5c83fettrvexabzy"),
|
|
92474
92664
|
kind: UpdateConversationKind$outboundSchema,
|
|
92475
92665
|
displayName: stringType(),
|
|
92476
92666
|
createdAt: numberType(),
|
|
@@ -93212,7 +93402,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93212
93402
|
human_review_id: stringType(),
|
|
93213
93403
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
93214
93404
|
reviewed_by_id: stringType(),
|
|
93215
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
93405
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.738Z").transform((v2) => new Date(v2)),
|
|
93216
93406
|
type: literalType("string_array"),
|
|
93217
93407
|
values: arrayType(stringType())
|
|
93218
93408
|
}).transform((v2) => {
|
|
@@ -93229,7 +93419,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93229
93419
|
humanReviewId: stringType(),
|
|
93230
93420
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
93231
93421
|
reviewedById: stringType(),
|
|
93232
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
93422
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.738Z")).transform((v2) => v2.toISOString()),
|
|
93233
93423
|
type: literalType("string_array"),
|
|
93234
93424
|
values: arrayType(stringType())
|
|
93235
93425
|
}).transform((v2) => {
|
|
@@ -93250,7 +93440,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93250
93440
|
human_review_id: stringType(),
|
|
93251
93441
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
93252
93442
|
reviewed_by_id: stringType(),
|
|
93253
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
93443
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.737Z").transform((v2) => new Date(v2)),
|
|
93254
93444
|
type: literalType("number"),
|
|
93255
93445
|
value: numberType()
|
|
93256
93446
|
}).transform((v2) => {
|
|
@@ -93267,7 +93457,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93267
93457
|
humanReviewId: stringType(),
|
|
93268
93458
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
93269
93459
|
reviewedById: stringType(),
|
|
93270
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
93460
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.737Z")).transform((v2) => v2.toISOString()),
|
|
93271
93461
|
type: literalType("number"),
|
|
93272
93462
|
value: numberType()
|
|
93273
93463
|
}).transform((v2) => {
|
|
@@ -93288,7 +93478,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93288
93478
|
human_review_id: stringType(),
|
|
93289
93479
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
93290
93480
|
reviewed_by_id: stringType(),
|
|
93291
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-
|
|
93481
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2026-01-14T13:30:22.736Z").transform((v2) => new Date(v2)),
|
|
93292
93482
|
type: literalType("string"),
|
|
93293
93483
|
value: stringType()
|
|
93294
93484
|
}).transform((v2) => {
|
|
@@ -93305,7 +93495,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93305
93495
|
humanReviewId: stringType(),
|
|
93306
93496
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
93307
93497
|
reviewedById: stringType(),
|
|
93308
|
-
reviewedAt: dateType().default(() => new Date("2026-01-
|
|
93498
|
+
reviewedAt: dateType().default(() => new Date("2026-01-14T13:30:22.736Z")).transform((v2) => v2.toISOString()),
|
|
93309
93499
|
type: literalType("string"),
|
|
93310
93500
|
value: stringType()
|
|
93311
93501
|
}).transform((v2) => {
|
|
@@ -93348,7 +93538,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93348
93538
|
created_by_id: stringType().optional(),
|
|
93349
93539
|
updated_by_id: stringType().optional(),
|
|
93350
93540
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
93351
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
93541
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
93352
93542
|
}).transform((v2) => {
|
|
93353
93543
|
return remap(v2, {
|
|
93354
93544
|
_id: "id",
|
|
@@ -93382,7 +93572,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
93382
93572
|
createdById: stringType().optional(),
|
|
93383
93573
|
updatedById: stringType().optional(),
|
|
93384
93574
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
93385
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
93575
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
93386
93576
|
}).transform((v2) => {
|
|
93387
93577
|
return remap(v2, {
|
|
93388
93578
|
id: "_id",
|
|
@@ -93466,7 +93656,7 @@ var init_updatedataset = __esm(() => {
|
|
|
93466
93656
|
created_by_id: stringType().optional(),
|
|
93467
93657
|
updated_by_id: stringType().optional(),
|
|
93468
93658
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
93469
|
-
updated: stringType().datetime({ offset: true }).default("2026-01-
|
|
93659
|
+
updated: stringType().datetime({ offset: true }).default("2026-01-14T13:30:08.520Z").transform((v2) => new Date(v2))
|
|
93470
93660
|
}).transform((v2) => {
|
|
93471
93661
|
return remap(v2, {
|
|
93472
93662
|
_id: "id",
|
|
@@ -93486,7 +93676,7 @@ var init_updatedataset = __esm(() => {
|
|
|
93486
93676
|
createdById: stringType().optional(),
|
|
93487
93677
|
updatedById: stringType().optional(),
|
|
93488
93678
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
93489
|
-
updated: dateType().default(() => new Date("2026-01-
|
|
93679
|
+
updated: dateType().default(() => new Date("2026-01-14T13:30:08.520Z")).transform((v2) => v2.toISOString())
|
|
93490
93680
|
}).transform((v2) => {
|
|
93491
93681
|
return remap(v2, {
|
|
93492
93682
|
id: "_id",
|
|
@@ -93550,7 +93740,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
93550
93740
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
93551
93741
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
93552
93742
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
93553
|
-
_id: stringType().default("
|
|
93743
|
+
_id: stringType().default("01KEYB6FQ2DF7JEQNNEVJ5DZ62"),
|
|
93554
93744
|
display_name: stringType(),
|
|
93555
93745
|
description: stringType().optional(),
|
|
93556
93746
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -93573,7 +93763,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
93573
93763
|
});
|
|
93574
93764
|
});
|
|
93575
93765
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
93576
|
-
id: stringType().default("
|
|
93766
|
+
id: stringType().default("01KEYB6FQ2DF7JEQNNEVJ5DZ62"),
|
|
93577
93767
|
displayName: stringType(),
|
|
93578
93768
|
description: stringType().optional(),
|
|
93579
93769
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -94186,8 +94376,8 @@ var init_updateeval = __esm(() => {
|
|
|
94186
94376
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
94187
94377
|
_id: stringType(),
|
|
94188
94378
|
description: stringType(),
|
|
94189
|
-
created: stringType().default("2026-01-
|
|
94190
|
-
updated: stringType().default("2026-01-
|
|
94379
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94380
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94191
94381
|
guardrail_config: unionType([
|
|
94192
94382
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
94193
94383
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema)
|
|
@@ -94204,8 +94394,8 @@ var init_updateeval = __esm(() => {
|
|
|
94204
94394
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
94205
94395
|
id: stringType(),
|
|
94206
94396
|
description: stringType(),
|
|
94207
|
-
created: stringType().default("2026-01-
|
|
94208
|
-
updated: stringType().default("2026-01-
|
|
94397
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94398
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94209
94399
|
guardrailConfig: unionType([
|
|
94210
94400
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema),
|
|
94211
94401
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema)
|
|
@@ -94276,8 +94466,8 @@ var init_updateeval = __esm(() => {
|
|
|
94276
94466
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
94277
94467
|
_id: stringType(),
|
|
94278
94468
|
description: stringType(),
|
|
94279
|
-
created: stringType().default("2026-01-
|
|
94280
|
-
updated: stringType().default("2026-01-
|
|
94469
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94470
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94281
94471
|
guardrail_config: unionType([
|
|
94282
94472
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
94283
94473
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema)
|
|
@@ -94296,8 +94486,8 @@ var init_updateeval = __esm(() => {
|
|
|
94296
94486
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
94297
94487
|
id: stringType(),
|
|
94298
94488
|
description: stringType(),
|
|
94299
|
-
created: stringType().default("2026-01-
|
|
94300
|
-
updated: stringType().default("2026-01-
|
|
94489
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94490
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94301
94491
|
guardrailConfig: unionType([
|
|
94302
94492
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema),
|
|
94303
94493
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema)
|
|
@@ -94652,8 +94842,8 @@ var init_updateeval = __esm(() => {
|
|
|
94652
94842
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
94653
94843
|
_id: stringType(),
|
|
94654
94844
|
description: stringType(),
|
|
94655
|
-
created: stringType().default("2026-01-
|
|
94656
|
-
updated: stringType().default("2026-01-
|
|
94845
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94846
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94657
94847
|
guardrail_config: unionType([
|
|
94658
94848
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
94659
94849
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema)
|
|
@@ -94704,8 +94894,8 @@ var init_updateeval = __esm(() => {
|
|
|
94704
94894
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
94705
94895
|
id: stringType(),
|
|
94706
94896
|
description: stringType(),
|
|
94707
|
-
created: stringType().default("2026-01-
|
|
94708
|
-
updated: stringType().default("2026-01-
|
|
94897
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94898
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94709
94899
|
guardrailConfig: unionType([
|
|
94710
94900
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema),
|
|
94711
94901
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema)
|
|
@@ -94808,8 +94998,8 @@ var init_updateeval = __esm(() => {
|
|
|
94808
94998
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
94809
94999
|
_id: stringType(),
|
|
94810
95000
|
description: stringType(),
|
|
94811
|
-
created: stringType().default("2026-01-
|
|
94812
|
-
updated: stringType().default("2026-01-
|
|
95001
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95002
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94813
95003
|
guardrail_config: unionType([
|
|
94814
95004
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
94815
95005
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema)
|
|
@@ -94826,8 +95016,8 @@ var init_updateeval = __esm(() => {
|
|
|
94826
95016
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
94827
95017
|
id: stringType(),
|
|
94828
95018
|
description: stringType(),
|
|
94829
|
-
created: stringType().default("2026-01-
|
|
94830
|
-
updated: stringType().default("2026-01-
|
|
95019
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95020
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94831
95021
|
guardrailConfig: unionType([
|
|
94832
95022
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
94833
95023
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema)
|
|
@@ -94898,8 +95088,8 @@ var init_updateeval = __esm(() => {
|
|
|
94898
95088
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
94899
95089
|
_id: stringType(),
|
|
94900
95090
|
description: stringType(),
|
|
94901
|
-
created: stringType().default("2026-01-
|
|
94902
|
-
updated: stringType().default("2026-01-
|
|
95091
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95092
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94903
95093
|
guardrail_config: unionType([
|
|
94904
95094
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
94905
95095
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema)
|
|
@@ -94919,8 +95109,8 @@ var init_updateeval = __esm(() => {
|
|
|
94919
95109
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
94920
95110
|
id: stringType(),
|
|
94921
95111
|
description: stringType(),
|
|
94922
|
-
created: stringType().default("2026-01-
|
|
94923
|
-
updated: stringType().default("2026-01-
|
|
95112
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95113
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94924
95114
|
guardrailConfig: unionType([
|
|
94925
95115
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
94926
95116
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema)
|
|
@@ -94992,8 +95182,8 @@ var init_updateeval = __esm(() => {
|
|
|
94992
95182
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
94993
95183
|
_id: stringType(),
|
|
94994
95184
|
description: stringType(),
|
|
94995
|
-
created: stringType().default("2026-01-
|
|
94996
|
-
updated: stringType().default("2026-01-
|
|
95185
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95186
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
94997
95187
|
guardrail_config: unionType([
|
|
94998
95188
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
94999
95189
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema)
|
|
@@ -95010,8 +95200,8 @@ var init_updateeval = __esm(() => {
|
|
|
95010
95200
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
95011
95201
|
id: stringType(),
|
|
95012
95202
|
description: stringType(),
|
|
95013
|
-
created: stringType().default("2026-01-
|
|
95014
|
-
updated: stringType().default("2026-01-
|
|
95203
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95204
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95015
95205
|
guardrailConfig: unionType([
|
|
95016
95206
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
95017
95207
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema)
|
|
@@ -95080,8 +95270,8 @@ var init_updateeval = __esm(() => {
|
|
|
95080
95270
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
95081
95271
|
_id: stringType(),
|
|
95082
95272
|
description: stringType(),
|
|
95083
|
-
created: stringType().default("2026-01-
|
|
95084
|
-
updated: stringType().default("2026-01-
|
|
95273
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95274
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95085
95275
|
guardrail_config: unionType([
|
|
95086
95276
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
95087
95277
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema)
|
|
@@ -95099,8 +95289,8 @@ var init_updateeval = __esm(() => {
|
|
|
95099
95289
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
95100
95290
|
id: stringType(),
|
|
95101
95291
|
description: stringType(),
|
|
95102
|
-
created: stringType().default("2026-01-
|
|
95103
|
-
updated: stringType().default("2026-01-
|
|
95292
|
+
created: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95293
|
+
updated: stringType().default("2026-01-14T13:30:10.979Z"),
|
|
95104
95294
|
guardrailConfig: unionType([
|
|
95105
95295
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
95106
95296
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema)
|
|
@@ -97606,13 +97796,13 @@ var init_updatetool = __esm(() => {
|
|
|
97606
97796
|
required: arrayType(stringType()).optional()
|
|
97607
97797
|
});
|
|
97608
97798
|
RequestBodyTools$inboundSchema = objectType({
|
|
97609
|
-
id: stringType().default("
|
|
97799
|
+
id: stringType().default("01KEYB6FHF5AV3H5TVBQY1WNGF"),
|
|
97610
97800
|
name: stringType(),
|
|
97611
97801
|
description: stringType().optional(),
|
|
97612
97802
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$inboundSchema)
|
|
97613
97803
|
});
|
|
97614
97804
|
RequestBodyTools$outboundSchema = objectType({
|
|
97615
|
-
id: stringType().default("
|
|
97805
|
+
id: stringType().default("01KEYB6FHF5AV3H5TVBQY1WNGF"),
|
|
97616
97806
|
name: stringType(),
|
|
97617
97807
|
description: stringType().optional(),
|
|
97618
97808
|
schema: lazyType(() => UpdateToolRequestBodyToolsSchema$outboundSchema)
|
|
@@ -97952,7 +98142,7 @@ var init_updatetool = __esm(() => {
|
|
|
97952
98142
|
code: stringType()
|
|
97953
98143
|
});
|
|
97954
98144
|
UpdateToolResponseBodyCodeExecutionTool$inboundSchema = objectType({
|
|
97955
|
-
_id: stringType().default("
|
|
98145
|
+
_id: stringType().default("tool_01KEYB6FH8S84W6S0K0Q78RYDX"),
|
|
97956
98146
|
path: stringType(),
|
|
97957
98147
|
key: stringType(),
|
|
97958
98148
|
display_name: stringType().optional(),
|
|
@@ -97980,7 +98170,7 @@ var init_updatetool = __esm(() => {
|
|
|
97980
98170
|
});
|
|
97981
98171
|
});
|
|
97982
98172
|
UpdateToolResponseBodyCodeExecutionTool$outboundSchema = objectType({
|
|
97983
|
-
id: stringType().default("
|
|
98173
|
+
id: stringType().default("tool_01KEYB6FH8S84W6S0K0Q78RYDX"),
|
|
97984
98174
|
path: stringType(),
|
|
97985
98175
|
key: stringType(),
|
|
97986
98176
|
displayName: stringType().optional(),
|
|
@@ -98030,13 +98220,13 @@ var init_updatetool = __esm(() => {
|
|
|
98030
98220
|
required: arrayType(stringType()).optional()
|
|
98031
98221
|
});
|
|
98032
98222
|
UpdateToolResponseBodyTools$inboundSchema = objectType({
|
|
98033
|
-
id: stringType().default("
|
|
98223
|
+
id: stringType().default("01KEYB6FH6M9PJR0CM7X1JZZ80"),
|
|
98034
98224
|
name: stringType(),
|
|
98035
98225
|
description: stringType().optional(),
|
|
98036
98226
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$inboundSchema)
|
|
98037
98227
|
});
|
|
98038
98228
|
UpdateToolResponseBodyTools$outboundSchema = objectType({
|
|
98039
|
-
id: stringType().default("
|
|
98229
|
+
id: stringType().default("01KEYB6FH6M9PJR0CM7X1JZZ80"),
|
|
98040
98230
|
name: stringType(),
|
|
98041
98231
|
description: stringType().optional(),
|
|
98042
98232
|
schema: lazyType(() => UpdateToolResponseBodyToolsSchema$outboundSchema)
|
|
@@ -98066,7 +98256,7 @@ var init_updatetool = __esm(() => {
|
|
|
98066
98256
|
});
|
|
98067
98257
|
});
|
|
98068
98258
|
UpdateToolResponseBodyMCPTool$inboundSchema = objectType({
|
|
98069
|
-
_id: stringType().default("
|
|
98259
|
+
_id: stringType().default("tool_01KEYB6FH5F3937BEE89E45KFA"),
|
|
98070
98260
|
path: stringType(),
|
|
98071
98261
|
key: stringType(),
|
|
98072
98262
|
display_name: stringType().optional(),
|
|
@@ -98093,7 +98283,7 @@ var init_updatetool = __esm(() => {
|
|
|
98093
98283
|
});
|
|
98094
98284
|
});
|
|
98095
98285
|
UpdateToolResponseBodyMCPTool$outboundSchema = objectType({
|
|
98096
|
-
id: stringType().default("
|
|
98286
|
+
id: stringType().default("tool_01KEYB6FH5F3937BEE89E45KFA"),
|
|
98097
98287
|
path: stringType(),
|
|
98098
98288
|
key: stringType(),
|
|
98099
98289
|
displayName: stringType().optional(),
|
|
@@ -98180,7 +98370,7 @@ var init_updatetool = __esm(() => {
|
|
|
98180
98370
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
98181
98371
|
});
|
|
98182
98372
|
UpdateToolResponseBodyHTTPTool$inboundSchema = objectType({
|
|
98183
|
-
_id: stringType().default("
|
|
98373
|
+
_id: stringType().default("tool_01KEYB6FH206WN3KACR7WYSE1H"),
|
|
98184
98374
|
path: stringType(),
|
|
98185
98375
|
key: stringType(),
|
|
98186
98376
|
display_name: stringType().optional(),
|
|
@@ -98207,7 +98397,7 @@ var init_updatetool = __esm(() => {
|
|
|
98207
98397
|
});
|
|
98208
98398
|
});
|
|
98209
98399
|
UpdateToolResponseBodyHTTPTool$outboundSchema = objectType({
|
|
98210
|
-
id: stringType().default("
|
|
98400
|
+
id: stringType().default("tool_01KEYB6FH206WN3KACR7WYSE1H"),
|
|
98211
98401
|
path: stringType(),
|
|
98212
98402
|
key: stringType(),
|
|
98213
98403
|
displayName: stringType().optional(),
|
|
@@ -98266,7 +98456,7 @@ var init_updatetool = __esm(() => {
|
|
|
98266
98456
|
strict: booleanType().optional()
|
|
98267
98457
|
});
|
|
98268
98458
|
UpdateToolResponseBodyJSONSchemaTool$inboundSchema = objectType({
|
|
98269
|
-
_id: stringType().default("
|
|
98459
|
+
_id: stringType().default("tool_01KEYB6FGZWR6G4ATD1WYBNKHK"),
|
|
98270
98460
|
path: stringType(),
|
|
98271
98461
|
key: stringType(),
|
|
98272
98462
|
display_name: stringType().optional(),
|
|
@@ -98294,7 +98484,7 @@ var init_updatetool = __esm(() => {
|
|
|
98294
98484
|
});
|
|
98295
98485
|
});
|
|
98296
98486
|
UpdateToolResponseBodyJSONSchemaTool$outboundSchema = objectType({
|
|
98297
|
-
id: stringType().default("
|
|
98487
|
+
id: stringType().default("tool_01KEYB6FGZWR6G4ATD1WYBNKHK"),
|
|
98298
98488
|
path: stringType(),
|
|
98299
98489
|
key: stringType(),
|
|
98300
98490
|
displayName: stringType().optional(),
|
|
@@ -98356,7 +98546,7 @@ var init_updatetool = __esm(() => {
|
|
|
98356
98546
|
parameters: lazyType(() => UpdateToolResponseBodyParameters$outboundSchema).optional()
|
|
98357
98547
|
});
|
|
98358
98548
|
UpdateToolResponseBodyFunctionTool$inboundSchema = objectType({
|
|
98359
|
-
_id: stringType().default("
|
|
98549
|
+
_id: stringType().default("tool_01KEYB6FGX6VPS34V45PH4RH9G"),
|
|
98360
98550
|
path: stringType(),
|
|
98361
98551
|
key: stringType(),
|
|
98362
98552
|
display_name: stringType().optional(),
|
|
@@ -98383,7 +98573,7 @@ var init_updatetool = __esm(() => {
|
|
|
98383
98573
|
});
|
|
98384
98574
|
});
|
|
98385
98575
|
UpdateToolResponseBodyFunctionTool$outboundSchema = objectType({
|
|
98386
|
-
id: stringType().default("
|
|
98576
|
+
id: stringType().default("tool_01KEYB6FGX6VPS34V45PH4RH9G"),
|
|
98387
98577
|
path: stringType(),
|
|
98388
98578
|
key: stringType(),
|
|
98389
98579
|
displayName: stringType().optional(),
|
|
@@ -110324,7 +110514,7 @@ Updates a tool in the workspace.`,
|
|
|
110324
110514
|
function createMCPServer(deps) {
|
|
110325
110515
|
const server = new McpServer({
|
|
110326
110516
|
name: "Orq",
|
|
110327
|
-
version: "4.2.0-rc.
|
|
110517
|
+
version: "4.2.0-rc.29"
|
|
110328
110518
|
});
|
|
110329
110519
|
const client = new OrqCore({
|
|
110330
110520
|
apiKey: deps.apiKey,
|
|
@@ -111748,7 +111938,7 @@ var routes = rn({
|
|
|
111748
111938
|
var app = Ve(routes, {
|
|
111749
111939
|
name: "mcp",
|
|
111750
111940
|
versionInfo: {
|
|
111751
|
-
currentVersion: "4.2.0-rc.
|
|
111941
|
+
currentVersion: "4.2.0-rc.29"
|
|
111752
111942
|
}
|
|
111753
111943
|
});
|
|
111754
111944
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -111756,5 +111946,5 @@ export {
|
|
|
111756
111946
|
app
|
|
111757
111947
|
};
|
|
111758
111948
|
|
|
111759
|
-
//# debugId=
|
|
111949
|
+
//# debugId=E387B9813821675164756E2164756E21
|
|
111760
111950
|
//# sourceMappingURL=mcp-server.js.map
|