@orq-ai/node 4.0.0-rc.26 → 4.0.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 +788 -281
- package/bin/mcp-server.js.map +50 -50
- package/docs/sdks/agents/README.md +2 -2
- package/examples/package-lock.json +1 -1
- package/funcs/toolsDuplicate.js +2 -1
- package/funcs/toolsDuplicate.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +195 -11
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +189 -13
- package/models/operations/createagent.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.d.ts +2 -0
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +30 -28
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/createprompt.d.ts +0 -2
- package/models/operations/createprompt.d.ts.map +1 -1
- package/models/operations/createprompt.js +0 -4
- package/models/operations/createprompt.js.map +1 -1
- package/models/operations/createtool.js +10 -10
- package/models/operations/duplicateagent.d.ts +94 -0
- package/models/operations/duplicateagent.d.ts.map +1 -1
- package/models/operations/duplicateagent.js +95 -3
- package/models/operations/duplicateagent.js.map +1 -1
- package/models/operations/duplicatetool.d.ts +18 -0
- package/models/operations/duplicatetool.d.ts.map +1 -1
- package/models/operations/duplicatetool.js +40 -12
- package/models/operations/duplicatetool.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/getagent.d.ts +94 -0
- package/models/operations/getagent.d.ts.map +1 -1
- package/models/operations/getagent.js +95 -3
- package/models/operations/getagent.js.map +1 -1
- package/models/operations/getallprompts.d.ts +0 -2
- package/models/operations/getallprompts.d.ts.map +1 -1
- package/models/operations/getallprompts.js +0 -4
- package/models/operations/getallprompts.js.map +1 -1
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/getoneprompt.d.ts +0 -2
- package/models/operations/getoneprompt.d.ts.map +1 -1
- package/models/operations/getoneprompt.js +0 -4
- package/models/operations/getoneprompt.js.map +1 -1
- package/models/operations/getpromptversion.d.ts +0 -2
- package/models/operations/getpromptversion.d.ts.map +1 -1
- package/models/operations/getpromptversion.js +0 -4
- package/models/operations/getpromptversion.js.map +1 -1
- package/models/operations/listagents.d.ts +94 -0
- package/models/operations/listagents.d.ts.map +1 -1
- package/models/operations/listagents.js +96 -3
- package/models/operations/listagents.js.map +1 -1
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/listpromptversions.d.ts +0 -2
- package/models/operations/listpromptversions.d.ts.map +1 -1
- package/models/operations/listpromptversions.js +0 -4
- package/models/operations/listpromptversions.js.map +1 -1
- 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 +10 -10
- package/models/operations/runagent.d.ts +92 -0
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +97 -7
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +92 -0
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +96 -6
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +188 -0
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +192 -7
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.d.ts +2 -0
- package/models/operations/updateeval.d.ts.map +1 -1
- package/models/operations/updateeval.js +30 -28
- package/models/operations/updateeval.js.map +1 -1
- package/models/operations/updateprompt.d.ts +0 -4
- package/models/operations/updateprompt.d.ts.map +1 -1
- package/models/operations/updateprompt.js +0 -8
- package/models/operations/updateprompt.js.map +1 -1
- package/models/operations/updatetool.js +10 -10
- package/package.json +1 -1
- package/src/funcs/toolsDuplicate.ts +3 -2
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +403 -17
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +30 -28
- package/src/models/operations/createprompt.ts +0 -6
- package/src/models/operations/createtool.ts +10 -10
- package/src/models/operations/duplicateagent.ts +206 -0
- package/src/models/operations/duplicatetool.ts +70 -10
- 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/getagent.ts +204 -0
- package/src/models/operations/getallprompts.ts +0 -6
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/getoneprompt.ts +0 -6
- package/src/models/operations/getpromptversion.ts +0 -6
- package/src/models/operations/listagents.ts +204 -0
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listpromptversions.ts +0 -6
- 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 +10 -10
- package/src/models/operations/runagent.ts +202 -0
- package/src/models/operations/streamrunagent.ts +204 -0
- package/src/models/operations/updateagent.ts +415 -0
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.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 +30 -28
- package/src/models/operations/updateprompt.ts +0 -12
- package/src/models/operations/updatetool.ts +10 -10
package/bin/mcp-server.js
CHANGED
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "4.0.0-rc.
|
|
34207
|
-
genVersion: "2.
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.
|
|
34206
|
+
sdkVersion: "4.0.0-rc.29",
|
|
34207
|
+
genVersion: "2.753.1",
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 4.0.0-rc.29 2.753.1 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -36448,7 +36448,7 @@ var init_cleardataset = __esm(() => {
|
|
|
36448
36448
|
});
|
|
36449
36449
|
|
|
36450
36450
|
// src/models/operations/createagent.ts
|
|
36451
|
-
var Voice, ModelConfigurationFormat, CreateAgentResponseFormatAgentsType, CreateAgentResponseFormatType, ResponseFormatType, ModelConfigurationType, ToolChoiceType, ToolChoice1, Modalities, FallbackModelConfigurationVoice, FallbackModelConfigurationFormat, CreateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, CreateAgentResponseFormatAgentsRequestRequestBodyType, CreateAgentResponseFormatAgentsRequestType, FallbackModelConfigurationType, CreateAgentToolChoiceType, CreateAgentToolChoice1, FallbackModelConfigurationModalities, ToolApprovalRequired, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, CreateAgentAgentToolInputCRUDAgentsRequestType, CreateAgentAgentToolInputCRUDAgentsType, CreateAgentAgentToolInputCRUDType, AgentToolInputCRUDType, CreateAgentStatus, CreateAgentToolApprovalRequired, CreateAgentVoice, CreateAgentFormat, CreateAgentResponseFormatAgentsResponse201ApplicationJSONType, CreateAgentResponseFormatAgentsResponse201Type, CreateAgentResponseFormatAgentsResponseType, CreateAgentType, CreateAgentToolChoiceAgentsType, CreateAgentToolChoiceAgents1, CreateAgentModalities, CreateAgentFallbackModelConfigurationVoice, CreateAgentFallbackModelConfigurationFormat, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelFallbackModelsType, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelType, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType, CreateAgentFallbackModelConfigurationType, CreateAgentToolChoiceAgentsResponseType, CreateAgentToolChoiceAgentsResponse1, CreateAgentFallbackModelConfigurationModalities, CreateAgentCollapsedConfigurationSections, Voice$inboundSchema, Voice$outboundSchema, ModelConfigurationFormat$inboundSchema, ModelConfigurationFormat$outboundSchema, ModelConfigurationAudio$inboundSchema, ModelConfigurationAudio$outboundSchema, CreateAgentResponseFormatAgentsType$inboundSchema, CreateAgentResponseFormatAgentsType$outboundSchema, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, JSONSchema$inboundSchema, JSONSchema$outboundSchema, CreateAgentResponseFormatType$inboundSchema, CreateAgentResponseFormatType$outboundSchema, JSONObject$inboundSchema, JSONObject$outboundSchema, ResponseFormatType$inboundSchema, ResponseFormatType$outboundSchema, Text$inboundSchema, Text$outboundSchema, ResponseFormat$inboundSchema, ResponseFormat$outboundSchema, Stop$inboundSchema, Stop$outboundSchema, StreamOptions$inboundSchema, StreamOptions$outboundSchema, ModelConfigurationType$inboundSchema, ModelConfigurationType$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, ParametersT$inboundSchema, ParametersT$outboundSchema, ModelConfiguration2$inboundSchema, ModelConfiguration2$outboundSchema, ModelConfiguration$inboundSchema, ModelConfiguration$outboundSchema, FallbackModelConfigurationVoice$inboundSchema, FallbackModelConfigurationVoice$outboundSchema, FallbackModelConfigurationFormat$inboundSchema, FallbackModelConfigurationFormat$outboundSchema, FallbackModelConfigurationAudio$inboundSchema, FallbackModelConfigurationAudio$outboundSchema, CreateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, CreateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, CreateAgentResponseFormatAgentsJsonSchema$inboundSchema, CreateAgentResponseFormatAgentsJsonSchema$outboundSchema, CreateAgentResponseFormatJSONSchema$inboundSchema, CreateAgentResponseFormatJSONSchema$outboundSchema, CreateAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, CreateAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, ResponseFormatJSONObject$inboundSchema, ResponseFormatJSONObject$outboundSchema, CreateAgentResponseFormatAgentsRequestType$inboundSchema, CreateAgentResponseFormatAgentsRequestType$outboundSchema, ResponseFormatText$inboundSchema, ResponseFormatText$outboundSchema, FallbackModelConfigurationResponseFormat$inboundSchema, FallbackModelConfigurationResponseFormat$outboundSchema, FallbackModelConfigurationStop$inboundSchema, FallbackModelConfigurationStop$outboundSchema, FallbackModelConfigurationStreamOptions$inboundSchema, FallbackModelConfigurationStreamOptions$outboundSchema, FallbackModelConfigurationType$inboundSchema, FallbackModelConfigurationType$outboundSchema, FallbackModelConfigurationThinking$inboundSchema, FallbackModelConfigurationThinking$outboundSchema, CreateAgentToolChoiceType$inboundSchema, CreateAgentToolChoiceType$outboundSchema, CreateAgentToolChoiceFunction$inboundSchema, CreateAgentToolChoiceFunction$outboundSchema, CreateAgentToolChoice2$inboundSchema, CreateAgentToolChoice2$outboundSchema, CreateAgentToolChoice1$inboundSchema, CreateAgentToolChoice1$outboundSchema, FallbackModelConfigurationToolChoice$inboundSchema, FallbackModelConfigurationToolChoice$outboundSchema, FallbackModelConfigurationModalities$inboundSchema, FallbackModelConfigurationModalities$outboundSchema, FallbackModelConfigurationParameters$inboundSchema, FallbackModelConfigurationParameters$outboundSchema, FallbackModelConfiguration2$inboundSchema, FallbackModelConfiguration2$outboundSchema, FallbackModelConfiguration$inboundSchema, FallbackModelConfiguration$outboundSchema, ToolApprovalRequired$inboundSchema, ToolApprovalRequired$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, FunctionTool$inboundSchema, FunctionTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, CodeExecutionTool$inboundSchema, CodeExecutionTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, HTTPTool$inboundSchema, HTTPTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, CurrentDateTool$inboundSchema, CurrentDateTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, QueryKnowledgeBaseTool$inboundSchema, QueryKnowledgeBaseTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, RetrieveKnowledgeBasesTool$inboundSchema, RetrieveKnowledgeBasesTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, DeleteMemoryDocumentTool$inboundSchema, DeleteMemoryDocumentTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, RetrieveMemoryStoresTool$inboundSchema, RetrieveMemoryStoresTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, WriteMemoryStoreTool$inboundSchema, WriteMemoryStoreTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, QueryMemoryStoreTool$inboundSchema, QueryMemoryStoreTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, RetrieveAgentsTool$inboundSchema, RetrieveAgentsTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsType$outboundSchema, CallSubAgentTool$inboundSchema, CallSubAgentTool$outboundSchema, CreateAgentAgentToolInputCRUDType$inboundSchema, CreateAgentAgentToolInputCRUDType$outboundSchema, WebScraperTool$inboundSchema, WebScraperTool$outboundSchema, AgentToolInputCRUDType$inboundSchema, AgentToolInputCRUDType$outboundSchema, GoogleSearchTool$inboundSchema, GoogleSearchTool$outboundSchema, AgentToolInputCRUD$inboundSchema, AgentToolInputCRUD$outboundSchema, Settings$inboundSchema, Settings$outboundSchema, KnowledgeBases$inboundSchema, KnowledgeBases$outboundSchema, TeamOfAgents$inboundSchema, TeamOfAgents$outboundSchema, CreateAgentRequestBody$inboundSchema, CreateAgentRequestBody$outboundSchema, CreateAgentStatus$inboundSchema, CreateAgentStatus$outboundSchema, CreateAgentToolApprovalRequired$inboundSchema, CreateAgentToolApprovalRequired$outboundSchema, Conditions$inboundSchema, Conditions$outboundSchema, CreateAgentTools$inboundSchema, CreateAgentTools$outboundSchema, CreateAgentSettings$inboundSchema, CreateAgentSettings$outboundSchema, CreateAgentVoice$inboundSchema, CreateAgentVoice$outboundSchema, CreateAgentFormat$inboundSchema, CreateAgentFormat$outboundSchema, CreateAgentAudio$inboundSchema, CreateAgentAudio$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONType$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONType$outboundSchema, CreateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, CreateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, CreateAgentResponseFormatAgentsResponse201JSONSchema$inboundSchema, CreateAgentResponseFormatAgentsResponse201JSONSchema$outboundSchema, CreateAgentResponseFormatAgentsResponse201Type$inboundSchema, CreateAgentResponseFormatAgentsResponse201Type$outboundSchema, CreateAgentResponseFormatJSONObject$inboundSchema, CreateAgentResponseFormatJSONObject$outboundSchema, CreateAgentResponseFormatAgentsResponseType$inboundSchema, CreateAgentResponseFormatAgentsResponseType$outboundSchema, CreateAgentResponseFormatText$inboundSchema, CreateAgentResponseFormatText$outboundSchema, CreateAgentResponseFormat$inboundSchema, CreateAgentResponseFormat$outboundSchema, CreateAgentStop$inboundSchema, CreateAgentStop$outboundSchema, CreateAgentStreamOptions$inboundSchema, CreateAgentStreamOptions$outboundSchema, CreateAgentType$inboundSchema, CreateAgentType$outboundSchema, CreateAgentThinking$inboundSchema, CreateAgentThinking$outboundSchema, CreateAgentToolChoiceAgentsType$inboundSchema, CreateAgentToolChoiceAgentsType$outboundSchema, CreateAgentToolChoiceAgentsFunction$inboundSchema, CreateAgentToolChoiceAgentsFunction$outboundSchema, CreateAgentToolChoiceAgents2$inboundSchema, CreateAgentToolChoiceAgents2$outboundSchema, CreateAgentToolChoiceAgents1$inboundSchema, CreateAgentToolChoiceAgents1$outboundSchema, CreateAgentToolChoice$inboundSchema, CreateAgentToolChoice$outboundSchema, CreateAgentModalities$inboundSchema, CreateAgentModalities$outboundSchema, CreateAgentParameters$inboundSchema, CreateAgentParameters$outboundSchema, CreateAgentFallbackModelConfigurationVoice$inboundSchema, CreateAgentFallbackModelConfigurationVoice$outboundSchema, CreateAgentFallbackModelConfigurationFormat$inboundSchema, CreateAgentFallbackModelConfigurationFormat$outboundSchema, CreateAgentFallbackModelConfigurationAudio$inboundSchema, CreateAgentFallbackModelConfigurationAudio$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelFallbackModelsType$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelFallbackModelsType$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONJSONSchema$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONJSONSchema$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelType$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelType$outboundSchema, CreateAgentResponseFormatAgentsJSONObject$inboundSchema, CreateAgentResponseFormatAgentsJSONObject$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$outboundSchema, CreateAgentResponseFormatAgentsText$inboundSchema, CreateAgentResponseFormatAgentsText$outboundSchema, CreateAgentFallbackModelConfigurationResponseFormat$inboundSchema, CreateAgentFallbackModelConfigurationResponseFormat$outboundSchema, CreateAgentFallbackModelConfigurationStop$inboundSchema, CreateAgentFallbackModelConfigurationStop$outboundSchema, CreateAgentFallbackModelConfigurationStreamOptions$inboundSchema, CreateAgentFallbackModelConfigurationStreamOptions$outboundSchema, CreateAgentFallbackModelConfigurationType$inboundSchema, CreateAgentFallbackModelConfigurationType$outboundSchema, CreateAgentFallbackModelConfigurationThinking$inboundSchema, CreateAgentFallbackModelConfigurationThinking$outboundSchema, CreateAgentToolChoiceAgentsResponseType$inboundSchema, CreateAgentToolChoiceAgentsResponseType$outboundSchema, CreateAgentToolChoiceAgentsResponseFunction$inboundSchema, CreateAgentToolChoiceAgentsResponseFunction$outboundSchema, CreateAgentToolChoiceAgentsResponse2$inboundSchema, CreateAgentToolChoiceAgentsResponse2$outboundSchema, CreateAgentToolChoiceAgentsResponse1$inboundSchema, CreateAgentToolChoiceAgentsResponse1$outboundSchema, CreateAgentFallbackModelConfigurationToolChoice$inboundSchema, CreateAgentFallbackModelConfigurationToolChoice$outboundSchema, CreateAgentFallbackModelConfigurationModalities$inboundSchema, CreateAgentFallbackModelConfigurationModalities$outboundSchema, CreateAgentFallbackModelConfigurationParameters$inboundSchema, CreateAgentFallbackModelConfigurationParameters$outboundSchema, CreateAgentFallbackModelConfiguration2$inboundSchema, CreateAgentFallbackModelConfiguration2$outboundSchema, CreateAgentFallbackModelConfiguration$inboundSchema, CreateAgentFallbackModelConfiguration$outboundSchema, CreateAgentModel$inboundSchema, CreateAgentModel$outboundSchema, CreateAgentTeamOfAgents$inboundSchema, CreateAgentTeamOfAgents$outboundSchema, Metrics$inboundSchema, Metrics$outboundSchema, CreateAgentKnowledgeBases$inboundSchema, CreateAgentKnowledgeBases$outboundSchema, CreateAgentCollapsedConfigurationSections$inboundSchema, CreateAgentCollapsedConfigurationSections$outboundSchema, CreateAgentResponseBody$inboundSchema2, CreateAgentResponseBody$outboundSchema2;
|
|
36451
|
+
var Voice, ModelConfigurationFormat, CreateAgentResponseFormatAgentsType, CreateAgentResponseFormatType, ResponseFormatType, ModelConfigurationType, ToolChoiceType, ToolChoice1, Modalities, FallbackModelConfigurationVoice, FallbackModelConfigurationFormat, CreateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, CreateAgentResponseFormatAgentsRequestRequestBodyType, CreateAgentResponseFormatAgentsRequestType, FallbackModelConfigurationType, CreateAgentToolChoiceType, CreateAgentToolChoice1, FallbackModelConfigurationModalities, ToolApprovalRequired, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, CreateAgentAgentToolInputCRUDAgentsRequestType, CreateAgentAgentToolInputCRUDAgentsType, CreateAgentAgentToolInputCRUDType, AgentToolInputCRUDType, ExecuteOn, CreateAgentExecuteOn, CreateAgentStatus, CreateAgentToolApprovalRequired, CreateAgentAgentsExecuteOn, CreateAgentAgentsResponseExecuteOn, CreateAgentVoice, CreateAgentFormat, CreateAgentResponseFormatAgentsResponse201ApplicationJSONType, CreateAgentResponseFormatAgentsResponse201Type, CreateAgentResponseFormatAgentsResponseType, CreateAgentType, CreateAgentToolChoiceAgentsType, CreateAgentToolChoiceAgents1, CreateAgentModalities, CreateAgentFallbackModelConfigurationVoice, CreateAgentFallbackModelConfigurationFormat, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelFallbackModelsType, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelType, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType, CreateAgentFallbackModelConfigurationType, CreateAgentToolChoiceAgentsResponseType, CreateAgentToolChoiceAgentsResponse1, CreateAgentFallbackModelConfigurationModalities, CreateAgentCollapsedConfigurationSections, Voice$inboundSchema, Voice$outboundSchema, ModelConfigurationFormat$inboundSchema, ModelConfigurationFormat$outboundSchema, ModelConfigurationAudio$inboundSchema, ModelConfigurationAudio$outboundSchema, CreateAgentResponseFormatAgentsType$inboundSchema, CreateAgentResponseFormatAgentsType$outboundSchema, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, JSONSchema$inboundSchema, JSONSchema$outboundSchema, CreateAgentResponseFormatType$inboundSchema, CreateAgentResponseFormatType$outboundSchema, JSONObject$inboundSchema, JSONObject$outboundSchema, ResponseFormatType$inboundSchema, ResponseFormatType$outboundSchema, Text$inboundSchema, Text$outboundSchema, ResponseFormat$inboundSchema, ResponseFormat$outboundSchema, Stop$inboundSchema, Stop$outboundSchema, StreamOptions$inboundSchema, StreamOptions$outboundSchema, ModelConfigurationType$inboundSchema, ModelConfigurationType$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, ParametersT$inboundSchema, ParametersT$outboundSchema, ModelConfiguration2$inboundSchema, ModelConfiguration2$outboundSchema, ModelConfiguration$inboundSchema, ModelConfiguration$outboundSchema, FallbackModelConfigurationVoice$inboundSchema, FallbackModelConfigurationVoice$outboundSchema, FallbackModelConfigurationFormat$inboundSchema, FallbackModelConfigurationFormat$outboundSchema, FallbackModelConfigurationAudio$inboundSchema, FallbackModelConfigurationAudio$outboundSchema, CreateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, CreateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, CreateAgentResponseFormatAgentsJsonSchema$inboundSchema, CreateAgentResponseFormatAgentsJsonSchema$outboundSchema, CreateAgentResponseFormatJSONSchema$inboundSchema, CreateAgentResponseFormatJSONSchema$outboundSchema, CreateAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, CreateAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, ResponseFormatJSONObject$inboundSchema, ResponseFormatJSONObject$outboundSchema, CreateAgentResponseFormatAgentsRequestType$inboundSchema, CreateAgentResponseFormatAgentsRequestType$outboundSchema, ResponseFormatText$inboundSchema, ResponseFormatText$outboundSchema, FallbackModelConfigurationResponseFormat$inboundSchema, FallbackModelConfigurationResponseFormat$outboundSchema, FallbackModelConfigurationStop$inboundSchema, FallbackModelConfigurationStop$outboundSchema, FallbackModelConfigurationStreamOptions$inboundSchema, FallbackModelConfigurationStreamOptions$outboundSchema, FallbackModelConfigurationType$inboundSchema, FallbackModelConfigurationType$outboundSchema, FallbackModelConfigurationThinking$inboundSchema, FallbackModelConfigurationThinking$outboundSchema, CreateAgentToolChoiceType$inboundSchema, CreateAgentToolChoiceType$outboundSchema, CreateAgentToolChoiceFunction$inboundSchema, CreateAgentToolChoiceFunction$outboundSchema, CreateAgentToolChoice2$inboundSchema, CreateAgentToolChoice2$outboundSchema, CreateAgentToolChoice1$inboundSchema, CreateAgentToolChoice1$outboundSchema, FallbackModelConfigurationToolChoice$inboundSchema, FallbackModelConfigurationToolChoice$outboundSchema, FallbackModelConfigurationModalities$inboundSchema, FallbackModelConfigurationModalities$outboundSchema, FallbackModelConfigurationParameters$inboundSchema, FallbackModelConfigurationParameters$outboundSchema, FallbackModelConfiguration2$inboundSchema, FallbackModelConfiguration2$outboundSchema, FallbackModelConfiguration$inboundSchema, FallbackModelConfiguration$outboundSchema, ToolApprovalRequired$inboundSchema, ToolApprovalRequired$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema, FunctionTool$inboundSchema, FunctionTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type$outboundSchema, CodeExecutionTool$inboundSchema, CodeExecutionTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type$outboundSchema, HTTPTool$inboundSchema, HTTPTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema, CurrentDateTool$inboundSchema, CurrentDateTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema, QueryKnowledgeBaseTool$inboundSchema, QueryKnowledgeBaseTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema, RetrieveKnowledgeBasesTool$inboundSchema, RetrieveKnowledgeBasesTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema, DeleteMemoryDocumentTool$inboundSchema, DeleteMemoryDocumentTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema, RetrieveMemoryStoresTool$inboundSchema, RetrieveMemoryStoresTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema, WriteMemoryStoreTool$inboundSchema, WriteMemoryStoreTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema, QueryMemoryStoreTool$inboundSchema, QueryMemoryStoreTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsRequestType$outboundSchema, RetrieveAgentsTool$inboundSchema, RetrieveAgentsTool$outboundSchema, CreateAgentAgentToolInputCRUDAgentsType$inboundSchema, CreateAgentAgentToolInputCRUDAgentsType$outboundSchema, CallSubAgentTool$inboundSchema, CallSubAgentTool$outboundSchema, CreateAgentAgentToolInputCRUDType$inboundSchema, CreateAgentAgentToolInputCRUDType$outboundSchema, WebScraperTool$inboundSchema, WebScraperTool$outboundSchema, AgentToolInputCRUDType$inboundSchema, AgentToolInputCRUDType$outboundSchema, GoogleSearchTool$inboundSchema, GoogleSearchTool$outboundSchema, AgentToolInputCRUD$inboundSchema, AgentToolInputCRUD$outboundSchema, ExecuteOn$inboundSchema, ExecuteOn$outboundSchema, Evaluators$inboundSchema, Evaluators$outboundSchema, CreateAgentExecuteOn$inboundSchema, CreateAgentExecuteOn$outboundSchema, Guardrails$inboundSchema, Guardrails$outboundSchema, Settings$inboundSchema, Settings$outboundSchema, KnowledgeBases$inboundSchema, KnowledgeBases$outboundSchema, TeamOfAgents$inboundSchema, TeamOfAgents$outboundSchema, CreateAgentRequestBody$inboundSchema, CreateAgentRequestBody$outboundSchema, CreateAgentStatus$inboundSchema, CreateAgentStatus$outboundSchema, CreateAgentToolApprovalRequired$inboundSchema, CreateAgentToolApprovalRequired$outboundSchema, Conditions$inboundSchema, Conditions$outboundSchema, CreateAgentTools$inboundSchema, CreateAgentTools$outboundSchema, CreateAgentAgentsExecuteOn$inboundSchema, CreateAgentAgentsExecuteOn$outboundSchema, CreateAgentEvaluators$inboundSchema, CreateAgentEvaluators$outboundSchema, CreateAgentAgentsResponseExecuteOn$inboundSchema, CreateAgentAgentsResponseExecuteOn$outboundSchema, CreateAgentGuardrails$inboundSchema, CreateAgentGuardrails$outboundSchema, CreateAgentSettings$inboundSchema, CreateAgentSettings$outboundSchema, CreateAgentVoice$inboundSchema, CreateAgentVoice$outboundSchema, CreateAgentFormat$inboundSchema, CreateAgentFormat$outboundSchema, CreateAgentAudio$inboundSchema, CreateAgentAudio$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONType$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONType$outboundSchema, CreateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, CreateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, CreateAgentResponseFormatAgentsResponse201JSONSchema$inboundSchema, CreateAgentResponseFormatAgentsResponse201JSONSchema$outboundSchema, CreateAgentResponseFormatAgentsResponse201Type$inboundSchema, CreateAgentResponseFormatAgentsResponse201Type$outboundSchema, CreateAgentResponseFormatJSONObject$inboundSchema, CreateAgentResponseFormatJSONObject$outboundSchema, CreateAgentResponseFormatAgentsResponseType$inboundSchema, CreateAgentResponseFormatAgentsResponseType$outboundSchema, CreateAgentResponseFormatText$inboundSchema, CreateAgentResponseFormatText$outboundSchema, CreateAgentResponseFormat$inboundSchema, CreateAgentResponseFormat$outboundSchema, CreateAgentStop$inboundSchema, CreateAgentStop$outboundSchema, CreateAgentStreamOptions$inboundSchema, CreateAgentStreamOptions$outboundSchema, CreateAgentType$inboundSchema, CreateAgentType$outboundSchema, CreateAgentThinking$inboundSchema, CreateAgentThinking$outboundSchema, CreateAgentToolChoiceAgentsType$inboundSchema, CreateAgentToolChoiceAgentsType$outboundSchema, CreateAgentToolChoiceAgentsFunction$inboundSchema, CreateAgentToolChoiceAgentsFunction$outboundSchema, CreateAgentToolChoiceAgents2$inboundSchema, CreateAgentToolChoiceAgents2$outboundSchema, CreateAgentToolChoiceAgents1$inboundSchema, CreateAgentToolChoiceAgents1$outboundSchema, CreateAgentToolChoice$inboundSchema, CreateAgentToolChoice$outboundSchema, CreateAgentModalities$inboundSchema, CreateAgentModalities$outboundSchema, CreateAgentParameters$inboundSchema, CreateAgentParameters$outboundSchema, CreateAgentFallbackModelConfigurationVoice$inboundSchema, CreateAgentFallbackModelConfigurationVoice$outboundSchema, CreateAgentFallbackModelConfigurationFormat$inboundSchema, CreateAgentFallbackModelConfigurationFormat$outboundSchema, CreateAgentFallbackModelConfigurationAudio$inboundSchema, CreateAgentFallbackModelConfigurationAudio$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelFallbackModelsType$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelFallbackModelsType$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONJSONSchema$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONJSONSchema$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyJSONSchema$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelType$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyModelType$outboundSchema, CreateAgentResponseFormatAgentsJSONObject$inboundSchema, CreateAgentResponseFormatAgentsJSONObject$outboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$inboundSchema, CreateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$outboundSchema, CreateAgentResponseFormatAgentsText$inboundSchema, CreateAgentResponseFormatAgentsText$outboundSchema, CreateAgentFallbackModelConfigurationResponseFormat$inboundSchema, CreateAgentFallbackModelConfigurationResponseFormat$outboundSchema, CreateAgentFallbackModelConfigurationStop$inboundSchema, CreateAgentFallbackModelConfigurationStop$outboundSchema, CreateAgentFallbackModelConfigurationStreamOptions$inboundSchema, CreateAgentFallbackModelConfigurationStreamOptions$outboundSchema, CreateAgentFallbackModelConfigurationType$inboundSchema, CreateAgentFallbackModelConfigurationType$outboundSchema, CreateAgentFallbackModelConfigurationThinking$inboundSchema, CreateAgentFallbackModelConfigurationThinking$outboundSchema, CreateAgentToolChoiceAgentsResponseType$inboundSchema, CreateAgentToolChoiceAgentsResponseType$outboundSchema, CreateAgentToolChoiceAgentsResponseFunction$inboundSchema, CreateAgentToolChoiceAgentsResponseFunction$outboundSchema, CreateAgentToolChoiceAgentsResponse2$inboundSchema, CreateAgentToolChoiceAgentsResponse2$outboundSchema, CreateAgentToolChoiceAgentsResponse1$inboundSchema, CreateAgentToolChoiceAgentsResponse1$outboundSchema, CreateAgentFallbackModelConfigurationToolChoice$inboundSchema, CreateAgentFallbackModelConfigurationToolChoice$outboundSchema, CreateAgentFallbackModelConfigurationModalities$inboundSchema, CreateAgentFallbackModelConfigurationModalities$outboundSchema, CreateAgentFallbackModelConfigurationParameters$inboundSchema, CreateAgentFallbackModelConfigurationParameters$outboundSchema, CreateAgentFallbackModelConfiguration2$inboundSchema, CreateAgentFallbackModelConfiguration2$outboundSchema, CreateAgentFallbackModelConfiguration$inboundSchema, CreateAgentFallbackModelConfiguration$outboundSchema, CreateAgentModel$inboundSchema, CreateAgentModel$outboundSchema, CreateAgentTeamOfAgents$inboundSchema, CreateAgentTeamOfAgents$outboundSchema, Metrics$inboundSchema, Metrics$outboundSchema, CreateAgentKnowledgeBases$inboundSchema, CreateAgentKnowledgeBases$outboundSchema, CreateAgentCollapsedConfigurationSections$inboundSchema, CreateAgentCollapsedConfigurationSections$outboundSchema, CreateAgentResponseBody$inboundSchema2, CreateAgentResponseBody$outboundSchema2;
|
|
36452
36452
|
var init_createagent2 = __esm(() => {
|
|
36453
36453
|
init_esm();
|
|
36454
36454
|
init_primitives();
|
|
@@ -36579,6 +36579,14 @@ var init_createagent2 = __esm(() => {
|
|
|
36579
36579
|
AgentToolInputCRUDType = {
|
|
36580
36580
|
GoogleSearch: "google_search"
|
|
36581
36581
|
};
|
|
36582
|
+
ExecuteOn = {
|
|
36583
|
+
Input: "input",
|
|
36584
|
+
Output: "output"
|
|
36585
|
+
};
|
|
36586
|
+
CreateAgentExecuteOn = {
|
|
36587
|
+
Input: "input",
|
|
36588
|
+
Output: "output"
|
|
36589
|
+
};
|
|
36582
36590
|
CreateAgentStatus = {
|
|
36583
36591
|
Live: "live",
|
|
36584
36592
|
Draft: "draft",
|
|
@@ -36590,6 +36598,14 @@ var init_createagent2 = __esm(() => {
|
|
|
36590
36598
|
RespectTool: "respect_tool",
|
|
36591
36599
|
None: "none"
|
|
36592
36600
|
};
|
|
36601
|
+
CreateAgentAgentsExecuteOn = {
|
|
36602
|
+
Input: "input",
|
|
36603
|
+
Output: "output"
|
|
36604
|
+
};
|
|
36605
|
+
CreateAgentAgentsResponseExecuteOn = {
|
|
36606
|
+
Input: "input",
|
|
36607
|
+
Output: "output"
|
|
36608
|
+
};
|
|
36593
36609
|
CreateAgentVoice = {
|
|
36594
36610
|
Alloy: "alloy",
|
|
36595
36611
|
Echo: "echo",
|
|
@@ -36675,7 +36691,9 @@ var init_createagent2 = __esm(() => {
|
|
|
36675
36691
|
Model: "model",
|
|
36676
36692
|
Tools: "tools",
|
|
36677
36693
|
Context: "context",
|
|
36678
|
-
RuntimeConstraints: "runtime_constraints"
|
|
36694
|
+
RuntimeConstraints: "runtime_constraints",
|
|
36695
|
+
Evaluators: "evaluators",
|
|
36696
|
+
Guardrails: "guardrails"
|
|
36679
36697
|
};
|
|
36680
36698
|
Voice$inboundSchema = nativeEnumType(Voice);
|
|
36681
36699
|
Voice$outboundSchema = Voice$inboundSchema;
|
|
@@ -37441,6 +37459,50 @@ var init_createagent2 = __esm(() => {
|
|
|
37441
37459
|
lazyType(() => CodeExecutionTool$outboundSchema),
|
|
37442
37460
|
lazyType(() => FunctionTool$outboundSchema)
|
|
37443
37461
|
]);
|
|
37462
|
+
ExecuteOn$inboundSchema = nativeEnumType(ExecuteOn);
|
|
37463
|
+
ExecuteOn$outboundSchema = ExecuteOn$inboundSchema;
|
|
37464
|
+
Evaluators$inboundSchema = objectType({
|
|
37465
|
+
id: stringType(),
|
|
37466
|
+
sample_rate: numberType().default(50),
|
|
37467
|
+
execute_on: ExecuteOn$inboundSchema
|
|
37468
|
+
}).transform((v2) => {
|
|
37469
|
+
return remap(v2, {
|
|
37470
|
+
sample_rate: "sampleRate",
|
|
37471
|
+
execute_on: "executeOn"
|
|
37472
|
+
});
|
|
37473
|
+
});
|
|
37474
|
+
Evaluators$outboundSchema = objectType({
|
|
37475
|
+
id: stringType(),
|
|
37476
|
+
sampleRate: numberType().default(50),
|
|
37477
|
+
executeOn: ExecuteOn$outboundSchema
|
|
37478
|
+
}).transform((v2) => {
|
|
37479
|
+
return remap(v2, {
|
|
37480
|
+
sampleRate: "sample_rate",
|
|
37481
|
+
executeOn: "execute_on"
|
|
37482
|
+
});
|
|
37483
|
+
});
|
|
37484
|
+
CreateAgentExecuteOn$inboundSchema = nativeEnumType(CreateAgentExecuteOn);
|
|
37485
|
+
CreateAgentExecuteOn$outboundSchema = CreateAgentExecuteOn$inboundSchema;
|
|
37486
|
+
Guardrails$inboundSchema = objectType({
|
|
37487
|
+
id: stringType(),
|
|
37488
|
+
sample_rate: numberType().default(50),
|
|
37489
|
+
execute_on: CreateAgentExecuteOn$inboundSchema
|
|
37490
|
+
}).transform((v2) => {
|
|
37491
|
+
return remap(v2, {
|
|
37492
|
+
sample_rate: "sampleRate",
|
|
37493
|
+
execute_on: "executeOn"
|
|
37494
|
+
});
|
|
37495
|
+
});
|
|
37496
|
+
Guardrails$outboundSchema = objectType({
|
|
37497
|
+
id: stringType(),
|
|
37498
|
+
sampleRate: numberType().default(50),
|
|
37499
|
+
executeOn: CreateAgentExecuteOn$outboundSchema
|
|
37500
|
+
}).transform((v2) => {
|
|
37501
|
+
return remap(v2, {
|
|
37502
|
+
sampleRate: "sample_rate",
|
|
37503
|
+
executeOn: "execute_on"
|
|
37504
|
+
});
|
|
37505
|
+
});
|
|
37444
37506
|
Settings$inboundSchema = objectType({
|
|
37445
37507
|
max_iterations: numberType().int().default(15),
|
|
37446
37508
|
max_execution_time: numberType().int().default(300),
|
|
@@ -37460,7 +37522,9 @@ var init_createagent2 = __esm(() => {
|
|
|
37460
37522
|
lazyType(() => HTTPTool$inboundSchema),
|
|
37461
37523
|
lazyType(() => CodeExecutionTool$inboundSchema),
|
|
37462
37524
|
lazyType(() => FunctionTool$inboundSchema)
|
|
37463
|
-
])).optional()
|
|
37525
|
+
])).optional(),
|
|
37526
|
+
evaluators: arrayType(lazyType(() => Evaluators$inboundSchema)).optional(),
|
|
37527
|
+
guardrails: arrayType(lazyType(() => Guardrails$inboundSchema)).optional()
|
|
37464
37528
|
}).transform((v2) => {
|
|
37465
37529
|
return remap(v2, {
|
|
37466
37530
|
max_iterations: "maxIterations",
|
|
@@ -37487,7 +37551,9 @@ var init_createagent2 = __esm(() => {
|
|
|
37487
37551
|
lazyType(() => HTTPTool$outboundSchema),
|
|
37488
37552
|
lazyType(() => CodeExecutionTool$outboundSchema),
|
|
37489
37553
|
lazyType(() => FunctionTool$outboundSchema)
|
|
37490
|
-
])).optional()
|
|
37554
|
+
])).optional(),
|
|
37555
|
+
evaluators: arrayType(lazyType(() => Evaluators$outboundSchema)).optional(),
|
|
37556
|
+
guardrails: arrayType(lazyType(() => Guardrails$outboundSchema)).optional()
|
|
37491
37557
|
}).transform((v2) => {
|
|
37492
37558
|
return remap(v2, {
|
|
37493
37559
|
maxIterations: "max_iterations",
|
|
@@ -37518,12 +37584,12 @@ var init_createagent2 = __esm(() => {
|
|
|
37518
37584
|
role: stringType().optional()
|
|
37519
37585
|
});
|
|
37520
37586
|
CreateAgentRequestBody$inboundSchema = objectType({
|
|
37521
|
-
path: stringType(),
|
|
37522
37587
|
key: stringType(),
|
|
37523
37588
|
role: stringType(),
|
|
37524
37589
|
description: stringType(),
|
|
37525
37590
|
instructions: stringType(),
|
|
37526
37591
|
system_prompt: stringType().optional(),
|
|
37592
|
+
path: stringType(),
|
|
37527
37593
|
model: unionType([lazyType(() => ModelConfiguration2$inboundSchema), stringType()]),
|
|
37528
37594
|
fallback_models: arrayType(unionType([
|
|
37529
37595
|
lazyType(() => FallbackModelConfiguration2$inboundSchema),
|
|
@@ -37544,12 +37610,12 @@ var init_createagent2 = __esm(() => {
|
|
|
37544
37610
|
});
|
|
37545
37611
|
});
|
|
37546
37612
|
CreateAgentRequestBody$outboundSchema = objectType({
|
|
37547
|
-
path: stringType(),
|
|
37548
37613
|
key: stringType(),
|
|
37549
37614
|
role: stringType(),
|
|
37550
37615
|
description: stringType(),
|
|
37551
37616
|
instructions: stringType(),
|
|
37552
37617
|
systemPrompt: stringType().optional(),
|
|
37618
|
+
path: stringType(),
|
|
37553
37619
|
model: unionType([
|
|
37554
37620
|
lazyType(() => ModelConfiguration2$outboundSchema),
|
|
37555
37621
|
stringType()
|
|
@@ -37618,11 +37684,57 @@ var init_createagent2 = __esm(() => {
|
|
|
37618
37684
|
requiresApproval: "requires_approval"
|
|
37619
37685
|
});
|
|
37620
37686
|
});
|
|
37687
|
+
CreateAgentAgentsExecuteOn$inboundSchema = nativeEnumType(CreateAgentAgentsExecuteOn);
|
|
37688
|
+
CreateAgentAgentsExecuteOn$outboundSchema = CreateAgentAgentsExecuteOn$inboundSchema;
|
|
37689
|
+
CreateAgentEvaluators$inboundSchema = objectType({
|
|
37690
|
+
id: stringType(),
|
|
37691
|
+
sample_rate: numberType().default(50),
|
|
37692
|
+
execute_on: CreateAgentAgentsExecuteOn$inboundSchema
|
|
37693
|
+
}).transform((v2) => {
|
|
37694
|
+
return remap(v2, {
|
|
37695
|
+
sample_rate: "sampleRate",
|
|
37696
|
+
execute_on: "executeOn"
|
|
37697
|
+
});
|
|
37698
|
+
});
|
|
37699
|
+
CreateAgentEvaluators$outboundSchema = objectType({
|
|
37700
|
+
id: stringType(),
|
|
37701
|
+
sampleRate: numberType().default(50),
|
|
37702
|
+
executeOn: CreateAgentAgentsExecuteOn$outboundSchema
|
|
37703
|
+
}).transform((v2) => {
|
|
37704
|
+
return remap(v2, {
|
|
37705
|
+
sampleRate: "sample_rate",
|
|
37706
|
+
executeOn: "execute_on"
|
|
37707
|
+
});
|
|
37708
|
+
});
|
|
37709
|
+
CreateAgentAgentsResponseExecuteOn$inboundSchema = nativeEnumType(CreateAgentAgentsResponseExecuteOn);
|
|
37710
|
+
CreateAgentAgentsResponseExecuteOn$outboundSchema = CreateAgentAgentsResponseExecuteOn$inboundSchema;
|
|
37711
|
+
CreateAgentGuardrails$inboundSchema = objectType({
|
|
37712
|
+
id: stringType(),
|
|
37713
|
+
sample_rate: numberType().default(50),
|
|
37714
|
+
execute_on: CreateAgentAgentsResponseExecuteOn$inboundSchema
|
|
37715
|
+
}).transform((v2) => {
|
|
37716
|
+
return remap(v2, {
|
|
37717
|
+
sample_rate: "sampleRate",
|
|
37718
|
+
execute_on: "executeOn"
|
|
37719
|
+
});
|
|
37720
|
+
});
|
|
37721
|
+
CreateAgentGuardrails$outboundSchema = objectType({
|
|
37722
|
+
id: stringType(),
|
|
37723
|
+
sampleRate: numberType().default(50),
|
|
37724
|
+
executeOn: CreateAgentAgentsResponseExecuteOn$outboundSchema
|
|
37725
|
+
}).transform((v2) => {
|
|
37726
|
+
return remap(v2, {
|
|
37727
|
+
sampleRate: "sample_rate",
|
|
37728
|
+
executeOn: "execute_on"
|
|
37729
|
+
});
|
|
37730
|
+
});
|
|
37621
37731
|
CreateAgentSettings$inboundSchema = objectType({
|
|
37622
37732
|
max_iterations: numberType().int().default(15),
|
|
37623
37733
|
max_execution_time: numberType().int().default(300),
|
|
37624
37734
|
tool_approval_required: CreateAgentToolApprovalRequired$inboundSchema.default("respect_tool"),
|
|
37625
|
-
tools: arrayType(lazyType(() => CreateAgentTools$inboundSchema)).optional()
|
|
37735
|
+
tools: arrayType(lazyType(() => CreateAgentTools$inboundSchema)).optional(),
|
|
37736
|
+
evaluators: arrayType(lazyType(() => CreateAgentEvaluators$inboundSchema)).optional(),
|
|
37737
|
+
guardrails: arrayType(lazyType(() => CreateAgentGuardrails$inboundSchema)).optional()
|
|
37626
37738
|
}).transform((v2) => {
|
|
37627
37739
|
return remap(v2, {
|
|
37628
37740
|
max_iterations: "maxIterations",
|
|
@@ -37634,7 +37746,9 @@ var init_createagent2 = __esm(() => {
|
|
|
37634
37746
|
maxIterations: numberType().int().default(15),
|
|
37635
37747
|
maxExecutionTime: numberType().int().default(300),
|
|
37636
37748
|
toolApprovalRequired: CreateAgentToolApprovalRequired$outboundSchema.default("respect_tool"),
|
|
37637
|
-
tools: arrayType(lazyType(() => CreateAgentTools$outboundSchema)).optional()
|
|
37749
|
+
tools: arrayType(lazyType(() => CreateAgentTools$outboundSchema)).optional(),
|
|
37750
|
+
evaluators: arrayType(lazyType(() => CreateAgentEvaluators$outboundSchema)).optional(),
|
|
37751
|
+
guardrails: arrayType(lazyType(() => CreateAgentGuardrails$outboundSchema)).optional()
|
|
37638
37752
|
}).transform((v2) => {
|
|
37639
37753
|
return remap(v2, {
|
|
37640
37754
|
maxIterations: "max_iterations",
|
|
@@ -38167,7 +38281,6 @@ var init_createagent2 = __esm(() => {
|
|
|
38167
38281
|
CreateAgentResponseBody$inboundSchema2 = objectType({
|
|
38168
38282
|
_id: stringType(),
|
|
38169
38283
|
key: stringType(),
|
|
38170
|
-
workspace_id: stringType(),
|
|
38171
38284
|
project_id: stringType(),
|
|
38172
38285
|
created_by_id: nullableType(stringType()).optional(),
|
|
38173
38286
|
updated_by_id: nullableType(stringType()).optional(),
|
|
@@ -38191,7 +38304,6 @@ var init_createagent2 = __esm(() => {
|
|
|
38191
38304
|
}).transform((v2) => {
|
|
38192
38305
|
return remap(v2, {
|
|
38193
38306
|
_id: "id",
|
|
38194
|
-
workspace_id: "workspaceId",
|
|
38195
38307
|
project_id: "projectId",
|
|
38196
38308
|
created_by_id: "createdById",
|
|
38197
38309
|
updated_by_id: "updatedById",
|
|
@@ -38206,7 +38318,6 @@ var init_createagent2 = __esm(() => {
|
|
|
38206
38318
|
CreateAgentResponseBody$outboundSchema2 = objectType({
|
|
38207
38319
|
id: stringType(),
|
|
38208
38320
|
key: stringType(),
|
|
38209
|
-
workspaceId: stringType(),
|
|
38210
38321
|
projectId: stringType(),
|
|
38211
38322
|
createdById: nullableType(stringType()).optional(),
|
|
38212
38323
|
updatedById: nullableType(stringType()).optional(),
|
|
@@ -38230,7 +38341,6 @@ var init_createagent2 = __esm(() => {
|
|
|
38230
38341
|
}).transform((v2) => {
|
|
38231
38342
|
return remap(v2, {
|
|
38232
38343
|
id: "_id",
|
|
38233
|
-
workspaceId: "workspace_id",
|
|
38234
38344
|
projectId: "project_id",
|
|
38235
38345
|
createdById: "created_by_id",
|
|
38236
38346
|
updatedById: "updated_by_id",
|
|
@@ -38403,7 +38513,7 @@ var init_createbudget = __esm(() => {
|
|
|
38403
38513
|
is_active: booleanType(),
|
|
38404
38514
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
38405
38515
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38406
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38516
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:06.136Z").transform((v2) => new Date(v2))
|
|
38407
38517
|
}).transform((v2) => {
|
|
38408
38518
|
return remap(v2, {
|
|
38409
38519
|
_id: "id",
|
|
@@ -38421,7 +38531,7 @@ var init_createbudget = __esm(() => {
|
|
|
38421
38531
|
isActive: booleanType(),
|
|
38422
38532
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
38423
38533
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38424
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38534
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:06.136Z")).transform((v2) => v2.toISOString())
|
|
38425
38535
|
}).transform((v2) => {
|
|
38426
38536
|
return remap(v2, {
|
|
38427
38537
|
id: "_id",
|
|
@@ -38561,7 +38671,7 @@ var init_createcontact = __esm(() => {
|
|
|
38561
38671
|
tags: arrayType(stringType()).optional(),
|
|
38562
38672
|
metadata: recordType(anyType()).optional(),
|
|
38563
38673
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38564
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38674
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
38565
38675
|
}).transform((v2) => {
|
|
38566
38676
|
return remap(v2, {
|
|
38567
38677
|
_id: "id",
|
|
@@ -38581,7 +38691,7 @@ var init_createcontact = __esm(() => {
|
|
|
38581
38691
|
tags: arrayType(stringType()).optional(),
|
|
38582
38692
|
metadata: recordType(anyType()).optional(),
|
|
38583
38693
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38584
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38694
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
38585
38695
|
}).transform((v2) => {
|
|
38586
38696
|
return remap(v2, {
|
|
38587
38697
|
id: "_id",
|
|
@@ -38641,7 +38751,7 @@ var init_createdataset = __esm(() => {
|
|
|
38641
38751
|
created_by_id: stringType().optional(),
|
|
38642
38752
|
updated_by_id: stringType().optional(),
|
|
38643
38753
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
38644
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
38754
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
38645
38755
|
}).transform((v2) => {
|
|
38646
38756
|
return remap(v2, {
|
|
38647
38757
|
_id: "id",
|
|
@@ -38661,7 +38771,7 @@ var init_createdataset = __esm(() => {
|
|
|
38661
38771
|
createdById: stringType().optional(),
|
|
38662
38772
|
updatedById: stringType().optional(),
|
|
38663
38773
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
38664
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
38774
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
38665
38775
|
}).transform((v2) => {
|
|
38666
38776
|
return remap(v2, {
|
|
38667
38777
|
id: "_id",
|
|
@@ -39735,7 +39845,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39735
39845
|
human_review_id: stringType(),
|
|
39736
39846
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
39737
39847
|
reviewed_by_id: stringType(),
|
|
39738
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39848
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.900Z").transform((v2) => new Date(v2)),
|
|
39739
39849
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
39740
39850
|
values: arrayType(stringType())
|
|
39741
39851
|
}).transform((v2) => {
|
|
@@ -39752,7 +39862,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39752
39862
|
humanReviewId: stringType(),
|
|
39753
39863
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
39754
39864
|
reviewedById: stringType(),
|
|
39755
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39865
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.900Z")).transform((v2) => v2.toISOString()),
|
|
39756
39866
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
39757
39867
|
values: arrayType(stringType())
|
|
39758
39868
|
}).transform((v2) => {
|
|
@@ -39775,7 +39885,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39775
39885
|
human_review_id: stringType(),
|
|
39776
39886
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
39777
39887
|
reviewed_by_id: stringType(),
|
|
39778
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39888
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.900Z").transform((v2) => new Date(v2)),
|
|
39779
39889
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
39780
39890
|
value: numberType()
|
|
39781
39891
|
}).transform((v2) => {
|
|
@@ -39792,7 +39902,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39792
39902
|
humanReviewId: stringType(),
|
|
39793
39903
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
39794
39904
|
reviewedById: stringType(),
|
|
39795
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39905
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.900Z")).transform((v2) => v2.toISOString()),
|
|
39796
39906
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
39797
39907
|
value: numberType()
|
|
39798
39908
|
}).transform((v2) => {
|
|
@@ -39815,7 +39925,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39815
39925
|
human_review_id: stringType(),
|
|
39816
39926
|
source: Source$inboundSchema.default("orq"),
|
|
39817
39927
|
reviewed_by_id: stringType(),
|
|
39818
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
39928
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.899Z").transform((v2) => new Date(v2)),
|
|
39819
39929
|
type: EvaluationsType$inboundSchema,
|
|
39820
39930
|
value: stringType()
|
|
39821
39931
|
}).transform((v2) => {
|
|
@@ -39832,7 +39942,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39832
39942
|
humanReviewId: stringType(),
|
|
39833
39943
|
source: Source$outboundSchema.default("orq"),
|
|
39834
39944
|
reviewedById: stringType(),
|
|
39835
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
39945
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.899Z")).transform((v2) => v2.toISOString()),
|
|
39836
39946
|
type: EvaluationsType$outboundSchema,
|
|
39837
39947
|
value: stringType()
|
|
39838
39948
|
}).transform((v2) => {
|
|
@@ -39875,7 +39985,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39875
39985
|
created_by_id: stringType().optional(),
|
|
39876
39986
|
updated_by_id: stringType().optional(),
|
|
39877
39987
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
39878
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
39988
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
39879
39989
|
}).transform((v2) => {
|
|
39880
39990
|
return remap(v2, {
|
|
39881
39991
|
_id: "id",
|
|
@@ -39909,7 +40019,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
39909
40019
|
createdById: stringType().optional(),
|
|
39910
40020
|
updatedById: stringType().optional(),
|
|
39911
40021
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
39912
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
40022
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
39913
40023
|
}).transform((v2) => {
|
|
39914
40024
|
return remap(v2, {
|
|
39915
40025
|
id: "_id",
|
|
@@ -40088,7 +40198,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40088
40198
|
CreateDatasourceStatus$inboundSchema = nativeEnumType(CreateDatasourceStatus);
|
|
40089
40199
|
CreateDatasourceStatus$outboundSchema = CreateDatasourceStatus$inboundSchema;
|
|
40090
40200
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
40091
|
-
_id: stringType().default("
|
|
40201
|
+
_id: stringType().default("01K9Y89TFVJVCW9JFCQS6518CJ"),
|
|
40092
40202
|
display_name: stringType(),
|
|
40093
40203
|
description: stringType().optional(),
|
|
40094
40204
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -40111,7 +40221,7 @@ var init_createdatasource = __esm(() => {
|
|
|
40111
40221
|
});
|
|
40112
40222
|
});
|
|
40113
40223
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
40114
|
-
id: stringType().default("
|
|
40224
|
+
id: stringType().default("01K9Y89TFVJVCW9JFCQS6518CJ"),
|
|
40115
40225
|
displayName: stringType(),
|
|
40116
40226
|
description: stringType().optional(),
|
|
40117
40227
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -40177,6 +40287,7 @@ var init_createeval2 = __esm(() => {
|
|
|
40177
40287
|
};
|
|
40178
40288
|
CreateEvalRequestBodyOutputType = {
|
|
40179
40289
|
Boolean: "boolean",
|
|
40290
|
+
Categorical: "categorical",
|
|
40180
40291
|
Number: "number",
|
|
40181
40292
|
String: "string"
|
|
40182
40293
|
};
|
|
@@ -40223,6 +40334,7 @@ var init_createeval2 = __esm(() => {
|
|
|
40223
40334
|
};
|
|
40224
40335
|
OutputType = {
|
|
40225
40336
|
Boolean: "boolean",
|
|
40337
|
+
Categorical: "categorical",
|
|
40226
40338
|
Number: "number",
|
|
40227
40339
|
String: "string"
|
|
40228
40340
|
};
|
|
@@ -40830,8 +40942,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40830
40942
|
Typescript$inboundSchema = objectType({
|
|
40831
40943
|
_id: stringType(),
|
|
40832
40944
|
description: stringType(),
|
|
40833
|
-
created: stringType().default("2025-11-
|
|
40834
|
-
updated: stringType().default("2025-11-
|
|
40945
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
40946
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
40835
40947
|
guardrail_config: unionType([
|
|
40836
40948
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
40837
40949
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -40848,8 +40960,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40848
40960
|
Typescript$outboundSchema = objectType({
|
|
40849
40961
|
id: stringType(),
|
|
40850
40962
|
description: stringType(),
|
|
40851
|
-
created: stringType().default("2025-11-
|
|
40852
|
-
updated: stringType().default("2025-11-
|
|
40963
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
40964
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
40853
40965
|
guardrailConfig: unionType([
|
|
40854
40966
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
40855
40967
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -40906,8 +41018,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40906
41018
|
Ragas$inboundSchema = objectType({
|
|
40907
41019
|
_id: stringType(),
|
|
40908
41020
|
description: stringType(),
|
|
40909
|
-
created: stringType().default("2025-11-
|
|
40910
|
-
updated: stringType().default("2025-11-
|
|
41021
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41022
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
40911
41023
|
guardrail_config: unionType([
|
|
40912
41024
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
40913
41025
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -40926,8 +41038,8 @@ var init_createeval2 = __esm(() => {
|
|
|
40926
41038
|
Ragas$outboundSchema = objectType({
|
|
40927
41039
|
id: stringType(),
|
|
40928
41040
|
description: stringType(),
|
|
40929
|
-
created: stringType().default("2025-11-
|
|
40930
|
-
updated: stringType().default("2025-11-
|
|
41041
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41042
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
40931
41043
|
guardrailConfig: unionType([
|
|
40932
41044
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
40933
41045
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -41364,8 +41476,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41364
41476
|
CreateEvalResponseBodyFunction$inboundSchema = objectType({
|
|
41365
41477
|
_id: stringType(),
|
|
41366
41478
|
description: stringType(),
|
|
41367
|
-
created: stringType().default("2025-11-
|
|
41368
|
-
updated: stringType().default("2025-11-
|
|
41479
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41480
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41369
41481
|
guardrail_config: unionType([
|
|
41370
41482
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
41371
41483
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -41419,8 +41531,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41419
41531
|
CreateEvalResponseBodyFunction$outboundSchema = objectType({
|
|
41420
41532
|
id: stringType(),
|
|
41421
41533
|
description: stringType(),
|
|
41422
|
-
created: stringType().default("2025-11-
|
|
41423
|
-
updated: stringType().default("2025-11-
|
|
41534
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41535
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41424
41536
|
guardrailConfig: unionType([
|
|
41425
41537
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
41426
41538
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -41512,8 +41624,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41512
41624
|
ResponseBodyPython$inboundSchema = objectType({
|
|
41513
41625
|
_id: stringType(),
|
|
41514
41626
|
description: stringType(),
|
|
41515
|
-
created: stringType().default("2025-11-
|
|
41516
|
-
updated: stringType().default("2025-11-
|
|
41627
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41628
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41517
41629
|
guardrail_config: unionType([
|
|
41518
41630
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
41519
41631
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -41530,8 +41642,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41530
41642
|
ResponseBodyPython$outboundSchema = objectType({
|
|
41531
41643
|
id: stringType(),
|
|
41532
41644
|
description: stringType(),
|
|
41533
|
-
created: stringType().default("2025-11-
|
|
41534
|
-
updated: stringType().default("2025-11-
|
|
41645
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41646
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41535
41647
|
guardrailConfig: unionType([
|
|
41536
41648
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
41537
41649
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -41588,8 +41700,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41588
41700
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
41589
41701
|
_id: stringType(),
|
|
41590
41702
|
description: stringType(),
|
|
41591
|
-
created: stringType().default("2025-11-
|
|
41592
|
-
updated: stringType().default("2025-11-
|
|
41703
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41704
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41593
41705
|
guardrail_config: unionType([
|
|
41594
41706
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
41595
41707
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -41609,8 +41721,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41609
41721
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
41610
41722
|
id: stringType(),
|
|
41611
41723
|
description: stringType(),
|
|
41612
|
-
created: stringType().default("2025-11-
|
|
41613
|
-
updated: stringType().default("2025-11-
|
|
41724
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41725
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41614
41726
|
guardrailConfig: unionType([
|
|
41615
41727
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
41616
41728
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -41668,8 +41780,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41668
41780
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
41669
41781
|
_id: stringType(),
|
|
41670
41782
|
description: stringType(),
|
|
41671
|
-
created: stringType().default("2025-11-
|
|
41672
|
-
updated: stringType().default("2025-11-
|
|
41783
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41784
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41673
41785
|
guardrail_config: unionType([
|
|
41674
41786
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
41675
41787
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -41686,8 +41798,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41686
41798
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
41687
41799
|
id: stringType(),
|
|
41688
41800
|
description: stringType(),
|
|
41689
|
-
created: stringType().default("2025-11-
|
|
41690
|
-
updated: stringType().default("2025-11-
|
|
41801
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41802
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41691
41803
|
guardrailConfig: unionType([
|
|
41692
41804
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
41693
41805
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -41742,8 +41854,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41742
41854
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
41743
41855
|
_id: stringType(),
|
|
41744
41856
|
description: stringType(),
|
|
41745
|
-
created: stringType().default("2025-11-
|
|
41746
|
-
updated: stringType().default("2025-11-
|
|
41857
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41858
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41747
41859
|
guardrail_config: unionType([
|
|
41748
41860
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
41749
41861
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -41761,8 +41873,8 @@ var init_createeval2 = __esm(() => {
|
|
|
41761
41873
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
41762
41874
|
id: stringType(),
|
|
41763
41875
|
description: stringType(),
|
|
41764
|
-
created: stringType().default("2025-11-
|
|
41765
|
-
updated: stringType().default("2025-11-
|
|
41876
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41877
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
41766
41878
|
guardrailConfig: unionType([
|
|
41767
41879
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
41768
41880
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -44406,7 +44518,6 @@ var init_createprompt = __esm(() => {
|
|
|
44406
44518
|
CreatePromptPromptConfig$inboundSchema = objectType({
|
|
44407
44519
|
stream: booleanType().optional(),
|
|
44408
44520
|
model: stringType().optional(),
|
|
44409
|
-
display_name: stringType().optional(),
|
|
44410
44521
|
model_db_id: nullableType(stringType()).optional(),
|
|
44411
44522
|
model_type: nullableType(CreatePromptModelType$inboundSchema).optional(),
|
|
44412
44523
|
model_parameters: lazyType(() => CreatePromptModelParameters$inboundSchema).optional(),
|
|
@@ -44416,7 +44527,6 @@ var init_createprompt = __esm(() => {
|
|
|
44416
44527
|
messages: arrayType(lazyType(() => CreatePromptPromptsResponseMessages$inboundSchema))
|
|
44417
44528
|
}).transform((v2) => {
|
|
44418
44529
|
return remap(v2, {
|
|
44419
|
-
display_name: "displayName",
|
|
44420
44530
|
model_db_id: "modelDbId",
|
|
44421
44531
|
model_type: "modelType",
|
|
44422
44532
|
model_parameters: "modelParameters",
|
|
@@ -44426,7 +44536,6 @@ var init_createprompt = __esm(() => {
|
|
|
44426
44536
|
CreatePromptPromptConfig$outboundSchema = objectType({
|
|
44427
44537
|
stream: booleanType().optional(),
|
|
44428
44538
|
model: stringType().optional(),
|
|
44429
|
-
displayName: stringType().optional(),
|
|
44430
44539
|
modelDbId: nullableType(stringType()).optional(),
|
|
44431
44540
|
modelType: nullableType(CreatePromptModelType$outboundSchema).optional(),
|
|
44432
44541
|
modelParameters: lazyType(() => CreatePromptModelParameters$outboundSchema).optional(),
|
|
@@ -44436,7 +44545,6 @@ var init_createprompt = __esm(() => {
|
|
|
44436
44545
|
messages: arrayType(lazyType(() => CreatePromptPromptsResponseMessages$outboundSchema))
|
|
44437
44546
|
}).transform((v2) => {
|
|
44438
44547
|
return remap(v2, {
|
|
44439
|
-
displayName: "display_name",
|
|
44440
44548
|
modelDbId: "model_db_id",
|
|
44441
44549
|
modelType: "model_type",
|
|
44442
44550
|
modelParameters: "model_parameters",
|
|
@@ -44979,7 +45087,7 @@ var init_createtool = __esm(() => {
|
|
|
44979
45087
|
code: stringType()
|
|
44980
45088
|
});
|
|
44981
45089
|
ResponseBody5$inboundSchema = objectType({
|
|
44982
|
-
_id: stringType().default("
|
|
45090
|
+
_id: stringType().default("01K9Y89TC4ZQ1ZMST5SE27335K"),
|
|
44983
45091
|
path: stringType(),
|
|
44984
45092
|
key: stringType(),
|
|
44985
45093
|
display_name: stringType().optional(),
|
|
@@ -45007,7 +45115,7 @@ var init_createtool = __esm(() => {
|
|
|
45007
45115
|
});
|
|
45008
45116
|
});
|
|
45009
45117
|
ResponseBody5$outboundSchema = objectType({
|
|
45010
|
-
id: stringType().default("
|
|
45118
|
+
id: stringType().default("01K9Y89TC4ZQ1ZMST5SE27335K"),
|
|
45011
45119
|
path: stringType(),
|
|
45012
45120
|
key: stringType(),
|
|
45013
45121
|
displayName: stringType().optional(),
|
|
@@ -45093,7 +45201,7 @@ var init_createtool = __esm(() => {
|
|
|
45093
45201
|
});
|
|
45094
45202
|
});
|
|
45095
45203
|
ResponseBody4$inboundSchema = objectType({
|
|
45096
|
-
_id: stringType().default("
|
|
45204
|
+
_id: stringType().default("01K9Y89TC2J6H64ZA3SVES1AN1"),
|
|
45097
45205
|
path: stringType(),
|
|
45098
45206
|
key: stringType(),
|
|
45099
45207
|
display_name: stringType().optional(),
|
|
@@ -45120,7 +45228,7 @@ var init_createtool = __esm(() => {
|
|
|
45120
45228
|
});
|
|
45121
45229
|
});
|
|
45122
45230
|
ResponseBody4$outboundSchema = objectType({
|
|
45123
|
-
id: stringType().default("
|
|
45231
|
+
id: stringType().default("01K9Y89TC2J6H64ZA3SVES1AN1"),
|
|
45124
45232
|
path: stringType(),
|
|
45125
45233
|
key: stringType(),
|
|
45126
45234
|
displayName: stringType().optional(),
|
|
@@ -45207,7 +45315,7 @@ var init_createtool = __esm(() => {
|
|
|
45207
45315
|
arguments: recordType(lazyType(() => ResponseBodyArguments$outboundSchema)).optional()
|
|
45208
45316
|
});
|
|
45209
45317
|
ResponseBody3$inboundSchema = objectType({
|
|
45210
|
-
_id: stringType().default("
|
|
45318
|
+
_id: stringType().default("01K9Y89TC1NNJJQHMNGTJ6E7RK"),
|
|
45211
45319
|
path: stringType(),
|
|
45212
45320
|
key: stringType(),
|
|
45213
45321
|
display_name: stringType().optional(),
|
|
@@ -45234,7 +45342,7 @@ var init_createtool = __esm(() => {
|
|
|
45234
45342
|
});
|
|
45235
45343
|
});
|
|
45236
45344
|
ResponseBody3$outboundSchema = objectType({
|
|
45237
|
-
id: stringType().default("
|
|
45345
|
+
id: stringType().default("01K9Y89TC1NNJJQHMNGTJ6E7RK"),
|
|
45238
45346
|
path: stringType(),
|
|
45239
45347
|
key: stringType(),
|
|
45240
45348
|
displayName: stringType().optional(),
|
|
@@ -45277,7 +45385,7 @@ var init_createtool = __esm(() => {
|
|
|
45277
45385
|
strict: booleanType().optional()
|
|
45278
45386
|
});
|
|
45279
45387
|
ResponseBody2$inboundSchema = objectType({
|
|
45280
|
-
_id: stringType().default("
|
|
45388
|
+
_id: stringType().default("01K9Y89TBZPM6HDQN1RQ90P5TB"),
|
|
45281
45389
|
path: stringType(),
|
|
45282
45390
|
key: stringType(),
|
|
45283
45391
|
display_name: stringType().optional(),
|
|
@@ -45305,7 +45413,7 @@ var init_createtool = __esm(() => {
|
|
|
45305
45413
|
});
|
|
45306
45414
|
});
|
|
45307
45415
|
ResponseBody2$outboundSchema = objectType({
|
|
45308
|
-
id: stringType().default("
|
|
45416
|
+
id: stringType().default("01K9Y89TBZPM6HDQN1RQ90P5TB"),
|
|
45309
45417
|
path: stringType(),
|
|
45310
45418
|
key: stringType(),
|
|
45311
45419
|
displayName: stringType().optional(),
|
|
@@ -45349,7 +45457,7 @@ var init_createtool = __esm(() => {
|
|
|
45349
45457
|
parameters: recordType(anyType()).optional()
|
|
45350
45458
|
});
|
|
45351
45459
|
ResponseBody1$inboundSchema = objectType({
|
|
45352
|
-
_id: stringType().default("
|
|
45460
|
+
_id: stringType().default("01K9Y89TBYEYV77SRDZD6SNZC0"),
|
|
45353
45461
|
path: stringType(),
|
|
45354
45462
|
key: stringType(),
|
|
45355
45463
|
display_name: stringType().optional(),
|
|
@@ -45376,7 +45484,7 @@ var init_createtool = __esm(() => {
|
|
|
45376
45484
|
});
|
|
45377
45485
|
});
|
|
45378
45486
|
ResponseBody1$outboundSchema = objectType({
|
|
45379
|
-
id: stringType().default("
|
|
45487
|
+
id: stringType().default("01K9Y89TBYEYV77SRDZD6SNZC0"),
|
|
45380
45488
|
path: stringType(),
|
|
45381
45489
|
key: stringType(),
|
|
45382
45490
|
displayName: stringType().optional(),
|
|
@@ -51386,7 +51494,7 @@ var init_deploymentstream = __esm(() => {
|
|
|
51386
51494
|
});
|
|
51387
51495
|
|
|
51388
51496
|
// src/models/operations/duplicateagent.ts
|
|
51389
|
-
var DuplicateAgentStatus, DuplicateAgentToolApprovalRequired, DuplicateAgentVoice, DuplicateAgentFormat, DuplicateAgentResponseFormatAgentsResponseType, DuplicateAgentResponseFormatAgentsType, DuplicateAgentResponseFormatType, DuplicateAgentType, DuplicateAgentToolChoiceType, DuplicateAgentToolChoice1, DuplicateAgentModalities, DuplicateAgentFallbackModelConfigurationVoice, DuplicateAgentFallbackModelConfigurationFormat, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType, DuplicateAgentResponseFormatAgentsResponse201Type, DuplicateAgentFallbackModelConfigurationType, DuplicateAgentToolChoiceAgentsType, DuplicateAgentToolChoiceAgents1, DuplicateAgentFallbackModelConfigurationModalities, DuplicateAgentCollapsedConfigurationSections, DuplicateAgentRequest$inboundSchema, DuplicateAgentRequest$outboundSchema, DuplicateAgentStatus$inboundSchema, DuplicateAgentStatus$outboundSchema, DuplicateAgentToolApprovalRequired$inboundSchema, DuplicateAgentToolApprovalRequired$outboundSchema, DuplicateAgentConditions$inboundSchema, DuplicateAgentConditions$outboundSchema, DuplicateAgentTools$inboundSchema, DuplicateAgentTools$outboundSchema, DuplicateAgentSettings$inboundSchema, DuplicateAgentSettings$outboundSchema, DuplicateAgentVoice$inboundSchema, DuplicateAgentVoice$outboundSchema, DuplicateAgentFormat$inboundSchema, DuplicateAgentFormat$outboundSchema, DuplicateAgentAudio$inboundSchema, DuplicateAgentAudio$outboundSchema, DuplicateAgentResponseFormatAgentsResponseType$inboundSchema, DuplicateAgentResponseFormatAgentsResponseType$outboundSchema, DuplicateAgentResponseFormatJsonSchema$inboundSchema, DuplicateAgentResponseFormatJsonSchema$outboundSchema, DuplicateAgentResponseFormatAgentsJSONSchema$inboundSchema, DuplicateAgentResponseFormatAgentsJSONSchema$outboundSchema, DuplicateAgentResponseFormatAgentsType$inboundSchema, DuplicateAgentResponseFormatAgentsType$outboundSchema, DuplicateAgentResponseFormatJSONObject$inboundSchema, DuplicateAgentResponseFormatJSONObject$outboundSchema, DuplicateAgentResponseFormatType$inboundSchema, DuplicateAgentResponseFormatType$outboundSchema, DuplicateAgentResponseFormatText$inboundSchema, DuplicateAgentResponseFormatText$outboundSchema, DuplicateAgentResponseFormat$inboundSchema, DuplicateAgentResponseFormat$outboundSchema, DuplicateAgentStop$inboundSchema, DuplicateAgentStop$outboundSchema, DuplicateAgentStreamOptions$inboundSchema, DuplicateAgentStreamOptions$outboundSchema, DuplicateAgentType$inboundSchema, DuplicateAgentType$outboundSchema, DuplicateAgentThinking$inboundSchema, DuplicateAgentThinking$outboundSchema, DuplicateAgentToolChoiceType$inboundSchema, DuplicateAgentToolChoiceType$outboundSchema, DuplicateAgentToolChoiceFunction$inboundSchema, DuplicateAgentToolChoiceFunction$outboundSchema, DuplicateAgentToolChoice2$inboundSchema, DuplicateAgentToolChoice2$outboundSchema, DuplicateAgentToolChoice1$inboundSchema, DuplicateAgentToolChoice1$outboundSchema, DuplicateAgentToolChoice$inboundSchema, DuplicateAgentToolChoice$outboundSchema, DuplicateAgentModalities$inboundSchema, DuplicateAgentModalities$outboundSchema, DuplicateAgentParameters$inboundSchema, DuplicateAgentParameters$outboundSchema, DuplicateAgentFallbackModelConfigurationVoice$inboundSchema, DuplicateAgentFallbackModelConfigurationVoice$outboundSchema, DuplicateAgentFallbackModelConfigurationFormat$inboundSchema, DuplicateAgentFallbackModelConfigurationFormat$outboundSchema, DuplicateAgentFallbackModelConfigurationAudio$inboundSchema, DuplicateAgentFallbackModelConfigurationAudio$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$outboundSchema, DuplicateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, DuplicateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201JSONSchema$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201JSONSchema$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType$outboundSchema, DuplicateAgentResponseFormatAgentsJSONObject$inboundSchema, DuplicateAgentResponseFormatAgentsJSONObject$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201Type$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201Type$outboundSchema, DuplicateAgentResponseFormatAgentsText$inboundSchema, DuplicateAgentResponseFormatAgentsText$outboundSchema, DuplicateAgentFallbackModelConfigurationResponseFormat$inboundSchema, DuplicateAgentFallbackModelConfigurationResponseFormat$outboundSchema, DuplicateAgentFallbackModelConfigurationStop$inboundSchema, DuplicateAgentFallbackModelConfigurationStop$outboundSchema, DuplicateAgentFallbackModelConfigurationStreamOptions$inboundSchema, DuplicateAgentFallbackModelConfigurationStreamOptions$outboundSchema, DuplicateAgentFallbackModelConfigurationType$inboundSchema, DuplicateAgentFallbackModelConfigurationType$outboundSchema, DuplicateAgentFallbackModelConfigurationThinking$inboundSchema, DuplicateAgentFallbackModelConfigurationThinking$outboundSchema, DuplicateAgentToolChoiceAgentsType$inboundSchema, DuplicateAgentToolChoiceAgentsType$outboundSchema, DuplicateAgentToolChoiceAgentsFunction$inboundSchema, DuplicateAgentToolChoiceAgentsFunction$outboundSchema, DuplicateAgentToolChoiceAgents2$inboundSchema, DuplicateAgentToolChoiceAgents2$outboundSchema, DuplicateAgentToolChoiceAgents1$inboundSchema, DuplicateAgentToolChoiceAgents1$outboundSchema, DuplicateAgentFallbackModelConfigurationToolChoice$inboundSchema, DuplicateAgentFallbackModelConfigurationToolChoice$outboundSchema, DuplicateAgentFallbackModelConfigurationModalities$inboundSchema, DuplicateAgentFallbackModelConfigurationModalities$outboundSchema, DuplicateAgentFallbackModelConfigurationParameters$inboundSchema, DuplicateAgentFallbackModelConfigurationParameters$outboundSchema, DuplicateAgentFallbackModelConfiguration2$inboundSchema, DuplicateAgentFallbackModelConfiguration2$outboundSchema, DuplicateAgentFallbackModelConfiguration$inboundSchema, DuplicateAgentFallbackModelConfiguration$outboundSchema, DuplicateAgentModel$inboundSchema, DuplicateAgentModel$outboundSchema, DuplicateAgentTeamOfAgents$inboundSchema, DuplicateAgentTeamOfAgents$outboundSchema, DuplicateAgentMetrics$inboundSchema, DuplicateAgentMetrics$outboundSchema, DuplicateAgentKnowledgeBases$inboundSchema, DuplicateAgentKnowledgeBases$outboundSchema, DuplicateAgentCollapsedConfigurationSections$inboundSchema, DuplicateAgentCollapsedConfigurationSections$outboundSchema, DuplicateAgentResponseBody$inboundSchema2, DuplicateAgentResponseBody$outboundSchema2;
|
|
51497
|
+
var DuplicateAgentStatus, DuplicateAgentToolApprovalRequired, DuplicateAgentExecuteOn, DuplicateAgentAgentsExecuteOn, DuplicateAgentVoice, DuplicateAgentFormat, DuplicateAgentResponseFormatAgentsResponseType, DuplicateAgentResponseFormatAgentsType, DuplicateAgentResponseFormatType, DuplicateAgentType, DuplicateAgentToolChoiceType, DuplicateAgentToolChoice1, DuplicateAgentModalities, DuplicateAgentFallbackModelConfigurationVoice, DuplicateAgentFallbackModelConfigurationFormat, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType, DuplicateAgentResponseFormatAgentsResponse201Type, DuplicateAgentFallbackModelConfigurationType, DuplicateAgentToolChoiceAgentsType, DuplicateAgentToolChoiceAgents1, DuplicateAgentFallbackModelConfigurationModalities, DuplicateAgentCollapsedConfigurationSections, DuplicateAgentRequest$inboundSchema, DuplicateAgentRequest$outboundSchema, DuplicateAgentStatus$inboundSchema, DuplicateAgentStatus$outboundSchema, DuplicateAgentToolApprovalRequired$inboundSchema, DuplicateAgentToolApprovalRequired$outboundSchema, DuplicateAgentConditions$inboundSchema, DuplicateAgentConditions$outboundSchema, DuplicateAgentTools$inboundSchema, DuplicateAgentTools$outboundSchema, DuplicateAgentExecuteOn$inboundSchema, DuplicateAgentExecuteOn$outboundSchema, DuplicateAgentEvaluators$inboundSchema, DuplicateAgentEvaluators$outboundSchema, DuplicateAgentAgentsExecuteOn$inboundSchema, DuplicateAgentAgentsExecuteOn$outboundSchema, DuplicateAgentGuardrails$inboundSchema, DuplicateAgentGuardrails$outboundSchema, DuplicateAgentSettings$inboundSchema, DuplicateAgentSettings$outboundSchema, DuplicateAgentVoice$inboundSchema, DuplicateAgentVoice$outboundSchema, DuplicateAgentFormat$inboundSchema, DuplicateAgentFormat$outboundSchema, DuplicateAgentAudio$inboundSchema, DuplicateAgentAudio$outboundSchema, DuplicateAgentResponseFormatAgentsResponseType$inboundSchema, DuplicateAgentResponseFormatAgentsResponseType$outboundSchema, DuplicateAgentResponseFormatJsonSchema$inboundSchema, DuplicateAgentResponseFormatJsonSchema$outboundSchema, DuplicateAgentResponseFormatAgentsJSONSchema$inboundSchema, DuplicateAgentResponseFormatAgentsJSONSchema$outboundSchema, DuplicateAgentResponseFormatAgentsType$inboundSchema, DuplicateAgentResponseFormatAgentsType$outboundSchema, DuplicateAgentResponseFormatJSONObject$inboundSchema, DuplicateAgentResponseFormatJSONObject$outboundSchema, DuplicateAgentResponseFormatType$inboundSchema, DuplicateAgentResponseFormatType$outboundSchema, DuplicateAgentResponseFormatText$inboundSchema, DuplicateAgentResponseFormatText$outboundSchema, DuplicateAgentResponseFormat$inboundSchema, DuplicateAgentResponseFormat$outboundSchema, DuplicateAgentStop$inboundSchema, DuplicateAgentStop$outboundSchema, DuplicateAgentStreamOptions$inboundSchema, DuplicateAgentStreamOptions$outboundSchema, DuplicateAgentType$inboundSchema, DuplicateAgentType$outboundSchema, DuplicateAgentThinking$inboundSchema, DuplicateAgentThinking$outboundSchema, DuplicateAgentToolChoiceType$inboundSchema, DuplicateAgentToolChoiceType$outboundSchema, DuplicateAgentToolChoiceFunction$inboundSchema, DuplicateAgentToolChoiceFunction$outboundSchema, DuplicateAgentToolChoice2$inboundSchema, DuplicateAgentToolChoice2$outboundSchema, DuplicateAgentToolChoice1$inboundSchema, DuplicateAgentToolChoice1$outboundSchema, DuplicateAgentToolChoice$inboundSchema, DuplicateAgentToolChoice$outboundSchema, DuplicateAgentModalities$inboundSchema, DuplicateAgentModalities$outboundSchema, DuplicateAgentParameters$inboundSchema, DuplicateAgentParameters$outboundSchema, DuplicateAgentFallbackModelConfigurationVoice$inboundSchema, DuplicateAgentFallbackModelConfigurationVoice$outboundSchema, DuplicateAgentFallbackModelConfigurationFormat$inboundSchema, DuplicateAgentFallbackModelConfigurationFormat$outboundSchema, DuplicateAgentFallbackModelConfigurationAudio$inboundSchema, DuplicateAgentFallbackModelConfigurationAudio$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONResponseBodyType$outboundSchema, DuplicateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, DuplicateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201JSONSchema$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201JSONSchema$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201ApplicationJSONType$outboundSchema, DuplicateAgentResponseFormatAgentsJSONObject$inboundSchema, DuplicateAgentResponseFormatAgentsJSONObject$outboundSchema, DuplicateAgentResponseFormatAgentsResponse201Type$inboundSchema, DuplicateAgentResponseFormatAgentsResponse201Type$outboundSchema, DuplicateAgentResponseFormatAgentsText$inboundSchema, DuplicateAgentResponseFormatAgentsText$outboundSchema, DuplicateAgentFallbackModelConfigurationResponseFormat$inboundSchema, DuplicateAgentFallbackModelConfigurationResponseFormat$outboundSchema, DuplicateAgentFallbackModelConfigurationStop$inboundSchema, DuplicateAgentFallbackModelConfigurationStop$outboundSchema, DuplicateAgentFallbackModelConfigurationStreamOptions$inboundSchema, DuplicateAgentFallbackModelConfigurationStreamOptions$outboundSchema, DuplicateAgentFallbackModelConfigurationType$inboundSchema, DuplicateAgentFallbackModelConfigurationType$outboundSchema, DuplicateAgentFallbackModelConfigurationThinking$inboundSchema, DuplicateAgentFallbackModelConfigurationThinking$outboundSchema, DuplicateAgentToolChoiceAgentsType$inboundSchema, DuplicateAgentToolChoiceAgentsType$outboundSchema, DuplicateAgentToolChoiceAgentsFunction$inboundSchema, DuplicateAgentToolChoiceAgentsFunction$outboundSchema, DuplicateAgentToolChoiceAgents2$inboundSchema, DuplicateAgentToolChoiceAgents2$outboundSchema, DuplicateAgentToolChoiceAgents1$inboundSchema, DuplicateAgentToolChoiceAgents1$outboundSchema, DuplicateAgentFallbackModelConfigurationToolChoice$inboundSchema, DuplicateAgentFallbackModelConfigurationToolChoice$outboundSchema, DuplicateAgentFallbackModelConfigurationModalities$inboundSchema, DuplicateAgentFallbackModelConfigurationModalities$outboundSchema, DuplicateAgentFallbackModelConfigurationParameters$inboundSchema, DuplicateAgentFallbackModelConfigurationParameters$outboundSchema, DuplicateAgentFallbackModelConfiguration2$inboundSchema, DuplicateAgentFallbackModelConfiguration2$outboundSchema, DuplicateAgentFallbackModelConfiguration$inboundSchema, DuplicateAgentFallbackModelConfiguration$outboundSchema, DuplicateAgentModel$inboundSchema, DuplicateAgentModel$outboundSchema, DuplicateAgentTeamOfAgents$inboundSchema, DuplicateAgentTeamOfAgents$outboundSchema, DuplicateAgentMetrics$inboundSchema, DuplicateAgentMetrics$outboundSchema, DuplicateAgentKnowledgeBases$inboundSchema, DuplicateAgentKnowledgeBases$outboundSchema, DuplicateAgentCollapsedConfigurationSections$inboundSchema, DuplicateAgentCollapsedConfigurationSections$outboundSchema, DuplicateAgentResponseBody$inboundSchema2, DuplicateAgentResponseBody$outboundSchema2;
|
|
51390
51498
|
var init_duplicateagent2 = __esm(() => {
|
|
51391
51499
|
init_esm();
|
|
51392
51500
|
init_primitives();
|
|
@@ -51401,6 +51509,14 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51401
51509
|
RespectTool: "respect_tool",
|
|
51402
51510
|
None: "none"
|
|
51403
51511
|
};
|
|
51512
|
+
DuplicateAgentExecuteOn = {
|
|
51513
|
+
Input: "input",
|
|
51514
|
+
Output: "output"
|
|
51515
|
+
};
|
|
51516
|
+
DuplicateAgentAgentsExecuteOn = {
|
|
51517
|
+
Input: "input",
|
|
51518
|
+
Output: "output"
|
|
51519
|
+
};
|
|
51404
51520
|
DuplicateAgentVoice = {
|
|
51405
51521
|
Alloy: "alloy",
|
|
51406
51522
|
Echo: "echo",
|
|
@@ -51486,7 +51602,9 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51486
51602
|
Model: "model",
|
|
51487
51603
|
Tools: "tools",
|
|
51488
51604
|
Context: "context",
|
|
51489
|
-
RuntimeConstraints: "runtime_constraints"
|
|
51605
|
+
RuntimeConstraints: "runtime_constraints",
|
|
51606
|
+
Evaluators: "evaluators",
|
|
51607
|
+
Guardrails: "guardrails"
|
|
51490
51608
|
};
|
|
51491
51609
|
DuplicateAgentRequest$inboundSchema = objectType({
|
|
51492
51610
|
id: stringType()
|
|
@@ -51540,11 +51658,57 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51540
51658
|
requiresApproval: "requires_approval"
|
|
51541
51659
|
});
|
|
51542
51660
|
});
|
|
51661
|
+
DuplicateAgentExecuteOn$inboundSchema = nativeEnumType(DuplicateAgentExecuteOn);
|
|
51662
|
+
DuplicateAgentExecuteOn$outboundSchema = DuplicateAgentExecuteOn$inboundSchema;
|
|
51663
|
+
DuplicateAgentEvaluators$inboundSchema = objectType({
|
|
51664
|
+
id: stringType(),
|
|
51665
|
+
sample_rate: numberType().default(50),
|
|
51666
|
+
execute_on: DuplicateAgentExecuteOn$inboundSchema
|
|
51667
|
+
}).transform((v2) => {
|
|
51668
|
+
return remap(v2, {
|
|
51669
|
+
sample_rate: "sampleRate",
|
|
51670
|
+
execute_on: "executeOn"
|
|
51671
|
+
});
|
|
51672
|
+
});
|
|
51673
|
+
DuplicateAgentEvaluators$outboundSchema = objectType({
|
|
51674
|
+
id: stringType(),
|
|
51675
|
+
sampleRate: numberType().default(50),
|
|
51676
|
+
executeOn: DuplicateAgentExecuteOn$outboundSchema
|
|
51677
|
+
}).transform((v2) => {
|
|
51678
|
+
return remap(v2, {
|
|
51679
|
+
sampleRate: "sample_rate",
|
|
51680
|
+
executeOn: "execute_on"
|
|
51681
|
+
});
|
|
51682
|
+
});
|
|
51683
|
+
DuplicateAgentAgentsExecuteOn$inboundSchema = nativeEnumType(DuplicateAgentAgentsExecuteOn);
|
|
51684
|
+
DuplicateAgentAgentsExecuteOn$outboundSchema = DuplicateAgentAgentsExecuteOn$inboundSchema;
|
|
51685
|
+
DuplicateAgentGuardrails$inboundSchema = objectType({
|
|
51686
|
+
id: stringType(),
|
|
51687
|
+
sample_rate: numberType().default(50),
|
|
51688
|
+
execute_on: DuplicateAgentAgentsExecuteOn$inboundSchema
|
|
51689
|
+
}).transform((v2) => {
|
|
51690
|
+
return remap(v2, {
|
|
51691
|
+
sample_rate: "sampleRate",
|
|
51692
|
+
execute_on: "executeOn"
|
|
51693
|
+
});
|
|
51694
|
+
});
|
|
51695
|
+
DuplicateAgentGuardrails$outboundSchema = objectType({
|
|
51696
|
+
id: stringType(),
|
|
51697
|
+
sampleRate: numberType().default(50),
|
|
51698
|
+
executeOn: DuplicateAgentAgentsExecuteOn$outboundSchema
|
|
51699
|
+
}).transform((v2) => {
|
|
51700
|
+
return remap(v2, {
|
|
51701
|
+
sampleRate: "sample_rate",
|
|
51702
|
+
executeOn: "execute_on"
|
|
51703
|
+
});
|
|
51704
|
+
});
|
|
51543
51705
|
DuplicateAgentSettings$inboundSchema = objectType({
|
|
51544
51706
|
max_iterations: numberType().int().default(15),
|
|
51545
51707
|
max_execution_time: numberType().int().default(300),
|
|
51546
51708
|
tool_approval_required: DuplicateAgentToolApprovalRequired$inboundSchema.default("respect_tool"),
|
|
51547
|
-
tools: arrayType(lazyType(() => DuplicateAgentTools$inboundSchema)).optional()
|
|
51709
|
+
tools: arrayType(lazyType(() => DuplicateAgentTools$inboundSchema)).optional(),
|
|
51710
|
+
evaluators: arrayType(lazyType(() => DuplicateAgentEvaluators$inboundSchema)).optional(),
|
|
51711
|
+
guardrails: arrayType(lazyType(() => DuplicateAgentGuardrails$inboundSchema)).optional()
|
|
51548
51712
|
}).transform((v2) => {
|
|
51549
51713
|
return remap(v2, {
|
|
51550
51714
|
max_iterations: "maxIterations",
|
|
@@ -51556,7 +51720,9 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
51556
51720
|
maxIterations: numberType().int().default(15),
|
|
51557
51721
|
maxExecutionTime: numberType().int().default(300),
|
|
51558
51722
|
toolApprovalRequired: DuplicateAgentToolApprovalRequired$outboundSchema.default("respect_tool"),
|
|
51559
|
-
tools: arrayType(lazyType(() => DuplicateAgentTools$outboundSchema)).optional()
|
|
51723
|
+
tools: arrayType(lazyType(() => DuplicateAgentTools$outboundSchema)).optional(),
|
|
51724
|
+
evaluators: arrayType(lazyType(() => DuplicateAgentEvaluators$outboundSchema)).optional(),
|
|
51725
|
+
guardrails: arrayType(lazyType(() => DuplicateAgentGuardrails$outboundSchema)).optional()
|
|
51560
51726
|
}).transform((v2) => {
|
|
51561
51727
|
return remap(v2, {
|
|
51562
51728
|
maxIterations: "max_iterations",
|
|
@@ -52167,7 +52333,7 @@ var init_duplicateagent2 = __esm(() => {
|
|
|
52167
52333
|
});
|
|
52168
52334
|
|
|
52169
52335
|
// src/models/operations/duplicatetool.ts
|
|
52170
|
-
var DuplicateToolResponseBodyToolsResponse200ApplicationJSONStatus, DuplicateToolResponseBodyToolsResponse200ApplicationJSONType, DuplicateToolResponseBodyLanguage, DuplicateToolResponseBodyToolsResponse200Status, DuplicateToolResponseBodyToolsResponse200Type, DuplicateToolResponseBodyToolsResponse200ApplicationJson4Type, DuplicateToolResponseBodyConnectionType, DuplicateToolResponseBodyToolsResponseStatus, DuplicateToolResponseBodyToolsResponseType, DuplicateToolResponseBodyMethod, DuplicateToolResponseBodyToolsResponse200ApplicationJson3Type, DuplicateToolResponseBodyToolsStatus, DuplicateToolResponseBodyToolsType, DuplicateToolResponseBodyStatus, DuplicateToolResponseBodyType, DuplicateToolRequest$inboundSchema, DuplicateToolRequest$outboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJSONStatus$inboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJSONStatus$outboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJSONType$inboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJSONType$outboundSchema, DuplicateToolResponseBodyLanguage$inboundSchema, DuplicateToolResponseBodyLanguage$outboundSchema, DuplicateToolResponseBodyCodeTool$inboundSchema, DuplicateToolResponseBodyCodeTool$outboundSchema, DuplicateToolResponseBody5$inboundSchema, DuplicateToolResponseBody5$outboundSchema, DuplicateToolResponseBodyToolsResponse200Status$inboundSchema, DuplicateToolResponseBodyToolsResponse200Status$outboundSchema, DuplicateToolResponseBodyToolsResponse200Type$inboundSchema, DuplicateToolResponseBodyToolsResponse200Type$outboundSchema, DuplicateToolResponseBodyHeaders$inboundSchema, DuplicateToolResponseBodyHeaders$outboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJson4Type$inboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJson4Type$outboundSchema, DuplicateToolResponseBodyInputSchema$inboundSchema, DuplicateToolResponseBodyInputSchema$outboundSchema, DuplicateToolResponseBodyConnectionType$inboundSchema, DuplicateToolResponseBodyConnectionType$outboundSchema, DuplicateToolResponseBodyMcp$inboundSchema, DuplicateToolResponseBodyMcp$outboundSchema, DuplicateToolResponseBody4$inboundSchema, DuplicateToolResponseBody4$outboundSchema, DuplicateToolResponseBodyToolsResponseStatus$inboundSchema, DuplicateToolResponseBodyToolsResponseStatus$outboundSchema, DuplicateToolResponseBodyToolsResponseType$inboundSchema, DuplicateToolResponseBodyToolsResponseType$outboundSchema, DuplicateToolResponseBodyMethod$inboundSchema, DuplicateToolResponseBodyMethod$outboundSchema, DuplicateToolResponseBodyToolsHeaders$inboundSchema, DuplicateToolResponseBodyToolsHeaders$outboundSchema, DuplicateToolResponseBodyBlueprint$inboundSchema, DuplicateToolResponseBodyBlueprint$outboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJson3Type$inboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJson3Type$outboundSchema, DuplicateToolResponseBodyDefaultValue$inboundSchema, DuplicateToolResponseBodyDefaultValue$outboundSchema, DuplicateToolResponseBodyArguments$inboundSchema, DuplicateToolResponseBodyArguments$outboundSchema, DuplicateToolResponseBodyHttp$inboundSchema, DuplicateToolResponseBodyHttp$outboundSchema, DuplicateToolResponseBody3$inboundSchema, DuplicateToolResponseBody3$outboundSchema, DuplicateToolResponseBodyToolsStatus$inboundSchema, DuplicateToolResponseBodyToolsStatus$outboundSchema, DuplicateToolResponseBodyToolsType$inboundSchema, DuplicateToolResponseBodyToolsType$outboundSchema, DuplicateToolResponseBodyJsonSchema$inboundSchema, DuplicateToolResponseBodyJsonSchema$outboundSchema, DuplicateToolResponseBody2$inboundSchema, DuplicateToolResponseBody2$outboundSchema, DuplicateToolResponseBodyStatus$inboundSchema, DuplicateToolResponseBodyStatus$outboundSchema, DuplicateToolResponseBodyType$inboundSchema, DuplicateToolResponseBodyType$outboundSchema, DuplicateToolResponseBodyFunction$inboundSchema, DuplicateToolResponseBodyFunction$outboundSchema, DuplicateToolResponseBody1$inboundSchema, DuplicateToolResponseBody1$outboundSchema, DuplicateToolResponseBody$inboundSchema2, DuplicateToolResponseBody$outboundSchema2;
|
|
52336
|
+
var DuplicateToolResponseBodyToolsResponse200ApplicationJSONStatus, DuplicateToolResponseBodyToolsResponse200ApplicationJSONType, DuplicateToolResponseBodyLanguage, DuplicateToolResponseBodyToolsResponse200Status, DuplicateToolResponseBodyToolsResponse200Type, DuplicateToolResponseBodyToolsResponse200ApplicationJson4Type, DuplicateToolResponseBodyConnectionType, DuplicateToolResponseBodyToolsResponseStatus, DuplicateToolResponseBodyToolsResponseType, DuplicateToolResponseBodyMethod, DuplicateToolResponseBodyToolsResponse200ApplicationJson3Type, DuplicateToolResponseBodyToolsStatus, DuplicateToolResponseBodyToolsType, DuplicateToolResponseBodyStatus, DuplicateToolResponseBodyType, DuplicateToolRequestBody$inboundSchema, DuplicateToolRequestBody$outboundSchema, DuplicateToolRequest$inboundSchema, DuplicateToolRequest$outboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJSONStatus$inboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJSONStatus$outboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJSONType$inboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJSONType$outboundSchema, DuplicateToolResponseBodyLanguage$inboundSchema, DuplicateToolResponseBodyLanguage$outboundSchema, DuplicateToolResponseBodyCodeTool$inboundSchema, DuplicateToolResponseBodyCodeTool$outboundSchema, DuplicateToolResponseBody5$inboundSchema, DuplicateToolResponseBody5$outboundSchema, DuplicateToolResponseBodyToolsResponse200Status$inboundSchema, DuplicateToolResponseBodyToolsResponse200Status$outboundSchema, DuplicateToolResponseBodyToolsResponse200Type$inboundSchema, DuplicateToolResponseBodyToolsResponse200Type$outboundSchema, DuplicateToolResponseBodyHeaders$inboundSchema, DuplicateToolResponseBodyHeaders$outboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJson4Type$inboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJson4Type$outboundSchema, DuplicateToolResponseBodyInputSchema$inboundSchema, DuplicateToolResponseBodyInputSchema$outboundSchema, DuplicateToolResponseBodyConnectionType$inboundSchema, DuplicateToolResponseBodyConnectionType$outboundSchema, DuplicateToolResponseBodyMcp$inboundSchema, DuplicateToolResponseBodyMcp$outboundSchema, DuplicateToolResponseBody4$inboundSchema, DuplicateToolResponseBody4$outboundSchema, DuplicateToolResponseBodyToolsResponseStatus$inboundSchema, DuplicateToolResponseBodyToolsResponseStatus$outboundSchema, DuplicateToolResponseBodyToolsResponseType$inboundSchema, DuplicateToolResponseBodyToolsResponseType$outboundSchema, DuplicateToolResponseBodyMethod$inboundSchema, DuplicateToolResponseBodyMethod$outboundSchema, DuplicateToolResponseBodyToolsHeaders$inboundSchema, DuplicateToolResponseBodyToolsHeaders$outboundSchema, DuplicateToolResponseBodyBlueprint$inboundSchema, DuplicateToolResponseBodyBlueprint$outboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJson3Type$inboundSchema, DuplicateToolResponseBodyToolsResponse200ApplicationJson3Type$outboundSchema, DuplicateToolResponseBodyDefaultValue$inboundSchema, DuplicateToolResponseBodyDefaultValue$outboundSchema, DuplicateToolResponseBodyArguments$inboundSchema, DuplicateToolResponseBodyArguments$outboundSchema, DuplicateToolResponseBodyHttp$inboundSchema, DuplicateToolResponseBodyHttp$outboundSchema, DuplicateToolResponseBody3$inboundSchema, DuplicateToolResponseBody3$outboundSchema, DuplicateToolResponseBodyToolsStatus$inboundSchema, DuplicateToolResponseBodyToolsStatus$outboundSchema, DuplicateToolResponseBodyToolsType$inboundSchema, DuplicateToolResponseBodyToolsType$outboundSchema, DuplicateToolResponseBodyJsonSchema$inboundSchema, DuplicateToolResponseBodyJsonSchema$outboundSchema, DuplicateToolResponseBody2$inboundSchema, DuplicateToolResponseBody2$outboundSchema, DuplicateToolResponseBodyStatus$inboundSchema, DuplicateToolResponseBodyStatus$outboundSchema, DuplicateToolResponseBodyType$inboundSchema, DuplicateToolResponseBodyType$outboundSchema, DuplicateToolResponseBodyFunction$inboundSchema, DuplicateToolResponseBodyFunction$outboundSchema, DuplicateToolResponseBody1$inboundSchema, DuplicateToolResponseBody1$outboundSchema, DuplicateToolResponseBody$inboundSchema2, DuplicateToolResponseBody$outboundSchema2;
|
|
52171
52337
|
var init_duplicatetool2 = __esm(() => {
|
|
52172
52338
|
init_esm();
|
|
52173
52339
|
init_primitives();
|
|
@@ -52237,18 +52403,36 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52237
52403
|
DuplicateToolResponseBodyType = {
|
|
52238
52404
|
Function: "function"
|
|
52239
52405
|
};
|
|
52406
|
+
DuplicateToolRequestBody$inboundSchema = objectType({
|
|
52407
|
+
display_name: stringType().optional()
|
|
52408
|
+
}).transform((v2) => {
|
|
52409
|
+
return remap(v2, {
|
|
52410
|
+
display_name: "displayName"
|
|
52411
|
+
});
|
|
52412
|
+
});
|
|
52413
|
+
DuplicateToolRequestBody$outboundSchema = objectType({
|
|
52414
|
+
displayName: stringType().optional()
|
|
52415
|
+
}).transform((v2) => {
|
|
52416
|
+
return remap(v2, {
|
|
52417
|
+
displayName: "display_name"
|
|
52418
|
+
});
|
|
52419
|
+
});
|
|
52240
52420
|
DuplicateToolRequest$inboundSchema = objectType({
|
|
52241
|
-
tool_id: stringType()
|
|
52421
|
+
tool_id: stringType(),
|
|
52422
|
+
RequestBody: lazyType(() => DuplicateToolRequestBody$inboundSchema).optional()
|
|
52242
52423
|
}).transform((v2) => {
|
|
52243
52424
|
return remap(v2, {
|
|
52244
|
-
tool_id: "toolId"
|
|
52425
|
+
tool_id: "toolId",
|
|
52426
|
+
RequestBody: "requestBody"
|
|
52245
52427
|
});
|
|
52246
52428
|
});
|
|
52247
52429
|
DuplicateToolRequest$outboundSchema = objectType({
|
|
52248
|
-
toolId: stringType()
|
|
52430
|
+
toolId: stringType(),
|
|
52431
|
+
requestBody: lazyType(() => DuplicateToolRequestBody$outboundSchema).optional()
|
|
52249
52432
|
}).transform((v2) => {
|
|
52250
52433
|
return remap(v2, {
|
|
52251
|
-
toolId: "tool_id"
|
|
52434
|
+
toolId: "tool_id",
|
|
52435
|
+
requestBody: "RequestBody"
|
|
52252
52436
|
});
|
|
52253
52437
|
});
|
|
52254
52438
|
DuplicateToolResponseBodyToolsResponse200ApplicationJSONStatus$inboundSchema = nativeEnumType(DuplicateToolResponseBodyToolsResponse200ApplicationJSONStatus);
|
|
@@ -52268,7 +52452,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52268
52452
|
code: stringType()
|
|
52269
52453
|
});
|
|
52270
52454
|
DuplicateToolResponseBody5$inboundSchema = objectType({
|
|
52271
|
-
_id: stringType().default("
|
|
52455
|
+
_id: stringType().default("01K9Y89TD4E2K85QANTHXT6AH3"),
|
|
52272
52456
|
path: stringType(),
|
|
52273
52457
|
key: stringType(),
|
|
52274
52458
|
display_name: stringType().optional(),
|
|
@@ -52296,7 +52480,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52296
52480
|
});
|
|
52297
52481
|
});
|
|
52298
52482
|
DuplicateToolResponseBody5$outboundSchema = objectType({
|
|
52299
|
-
id: stringType().default("
|
|
52483
|
+
id: stringType().default("01K9Y89TD4E2K85QANTHXT6AH3"),
|
|
52300
52484
|
path: stringType(),
|
|
52301
52485
|
key: stringType(),
|
|
52302
52486
|
displayName: stringType().optional(),
|
|
@@ -52382,7 +52566,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52382
52566
|
});
|
|
52383
52567
|
});
|
|
52384
52568
|
DuplicateToolResponseBody4$inboundSchema = objectType({
|
|
52385
|
-
_id: stringType().default("
|
|
52569
|
+
_id: stringType().default("01K9Y89TD2EQQZDYYC05ZQ1T0T"),
|
|
52386
52570
|
path: stringType(),
|
|
52387
52571
|
key: stringType(),
|
|
52388
52572
|
display_name: stringType().optional(),
|
|
@@ -52409,7 +52593,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52409
52593
|
});
|
|
52410
52594
|
});
|
|
52411
52595
|
DuplicateToolResponseBody4$outboundSchema = objectType({
|
|
52412
|
-
id: stringType().default("
|
|
52596
|
+
id: stringType().default("01K9Y89TD2EQQZDYYC05ZQ1T0T"),
|
|
52413
52597
|
path: stringType(),
|
|
52414
52598
|
key: stringType(),
|
|
52415
52599
|
displayName: stringType().optional(),
|
|
@@ -52496,7 +52680,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52496
52680
|
arguments: recordType(lazyType(() => DuplicateToolResponseBodyArguments$outboundSchema)).optional()
|
|
52497
52681
|
});
|
|
52498
52682
|
DuplicateToolResponseBody3$inboundSchema = objectType({
|
|
52499
|
-
_id: stringType().default("
|
|
52683
|
+
_id: stringType().default("01K9Y89TCZ1YV70CXC3C6DA4Z0"),
|
|
52500
52684
|
path: stringType(),
|
|
52501
52685
|
key: stringType(),
|
|
52502
52686
|
display_name: stringType().optional(),
|
|
@@ -52523,7 +52707,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52523
52707
|
});
|
|
52524
52708
|
});
|
|
52525
52709
|
DuplicateToolResponseBody3$outboundSchema = objectType({
|
|
52526
|
-
id: stringType().default("
|
|
52710
|
+
id: stringType().default("01K9Y89TCZ1YV70CXC3C6DA4Z0"),
|
|
52527
52711
|
path: stringType(),
|
|
52528
52712
|
key: stringType(),
|
|
52529
52713
|
displayName: stringType().optional(),
|
|
@@ -52566,7 +52750,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52566
52750
|
strict: booleanType().optional()
|
|
52567
52751
|
});
|
|
52568
52752
|
DuplicateToolResponseBody2$inboundSchema = objectType({
|
|
52569
|
-
_id: stringType().default("
|
|
52753
|
+
_id: stringType().default("01K9Y89TCPZQCXX30WGAT6XTB3"),
|
|
52570
52754
|
path: stringType(),
|
|
52571
52755
|
key: stringType(),
|
|
52572
52756
|
display_name: stringType().optional(),
|
|
@@ -52594,7 +52778,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52594
52778
|
});
|
|
52595
52779
|
});
|
|
52596
52780
|
DuplicateToolResponseBody2$outboundSchema = objectType({
|
|
52597
|
-
id: stringType().default("
|
|
52781
|
+
id: stringType().default("01K9Y89TCPZQCXX30WGAT6XTB3"),
|
|
52598
52782
|
path: stringType(),
|
|
52599
52783
|
key: stringType(),
|
|
52600
52784
|
displayName: stringType().optional(),
|
|
@@ -52638,7 +52822,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52638
52822
|
parameters: recordType(anyType()).optional()
|
|
52639
52823
|
});
|
|
52640
52824
|
DuplicateToolResponseBody1$inboundSchema = objectType({
|
|
52641
|
-
_id: stringType().default("
|
|
52825
|
+
_id: stringType().default("01K9Y89TCNSEJQ2THPRT29A3AT"),
|
|
52642
52826
|
path: stringType(),
|
|
52643
52827
|
key: stringType(),
|
|
52644
52828
|
display_name: stringType().optional(),
|
|
@@ -52665,7 +52849,7 @@ var init_duplicatetool2 = __esm(() => {
|
|
|
52665
52849
|
});
|
|
52666
52850
|
});
|
|
52667
52851
|
DuplicateToolResponseBody1$outboundSchema = objectType({
|
|
52668
|
-
id: stringType().default("
|
|
52852
|
+
id: stringType().default("01K9Y89TCNSEJQ2THPRT29A3AT"),
|
|
52669
52853
|
path: stringType(),
|
|
52670
52854
|
key: stringType(),
|
|
52671
52855
|
displayName: stringType().optional(),
|
|
@@ -52761,7 +52945,7 @@ var init_fileget = __esm(() => {
|
|
|
52761
52945
|
bytes: numberType(),
|
|
52762
52946
|
file_name: stringType(),
|
|
52763
52947
|
workspace_id: stringType(),
|
|
52764
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
52948
|
+
created: stringType().datetime({ offset: true }).default("2025-11-13T09:21:09.212Z").transform((v2) => new Date(v2))
|
|
52765
52949
|
}).transform((v2) => {
|
|
52766
52950
|
return remap(v2, {
|
|
52767
52951
|
_id: "id",
|
|
@@ -52777,7 +52961,7 @@ var init_fileget = __esm(() => {
|
|
|
52777
52961
|
bytes: numberType(),
|
|
52778
52962
|
fileName: stringType(),
|
|
52779
52963
|
workspaceId: stringType(),
|
|
52780
|
-
created: dateType().default(() => new Date("2025-11-
|
|
52964
|
+
created: dateType().default(() => new Date("2025-11-13T09:21:09.212Z")).transform((v2) => v2.toISOString())
|
|
52781
52965
|
}).transform((v2) => {
|
|
52782
52966
|
return remap(v2, {
|
|
52783
52967
|
id: "_id",
|
|
@@ -52832,7 +53016,7 @@ var init_filelist = __esm(() => {
|
|
|
52832
53016
|
bytes: numberType(),
|
|
52833
53017
|
file_name: stringType(),
|
|
52834
53018
|
workspace_id: stringType(),
|
|
52835
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53019
|
+
created: stringType().datetime({ offset: true }).default("2025-11-13T09:21:09.212Z").transform((v2) => new Date(v2))
|
|
52836
53020
|
}).transform((v2) => {
|
|
52837
53021
|
return remap(v2, {
|
|
52838
53022
|
_id: "id",
|
|
@@ -52848,7 +53032,7 @@ var init_filelist = __esm(() => {
|
|
|
52848
53032
|
bytes: numberType(),
|
|
52849
53033
|
fileName: stringType(),
|
|
52850
53034
|
workspaceId: stringType(),
|
|
52851
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53035
|
+
created: dateType().default(() => new Date("2025-11-13T09:21:09.212Z")).transform((v2) => v2.toISOString())
|
|
52852
53036
|
}).transform((v2) => {
|
|
52853
53037
|
return remap(v2, {
|
|
52854
53038
|
id: "_id",
|
|
@@ -52956,7 +53140,7 @@ var init_fileupload = __esm(() => {
|
|
|
52956
53140
|
bytes: numberType(),
|
|
52957
53141
|
file_name: stringType(),
|
|
52958
53142
|
workspace_id: stringType(),
|
|
52959
|
-
created: stringType().datetime({ offset: true }).default("2025-11-
|
|
53143
|
+
created: stringType().datetime({ offset: true }).default("2025-11-13T09:21:09.212Z").transform((v2) => new Date(v2))
|
|
52960
53144
|
}).transform((v2) => {
|
|
52961
53145
|
return remap(v2, {
|
|
52962
53146
|
_id: "id",
|
|
@@ -52972,7 +53156,7 @@ var init_fileupload = __esm(() => {
|
|
|
52972
53156
|
bytes: numberType(),
|
|
52973
53157
|
fileName: stringType(),
|
|
52974
53158
|
workspaceId: stringType(),
|
|
52975
|
-
created: dateType().default(() => new Date("2025-11-
|
|
53159
|
+
created: dateType().default(() => new Date("2025-11-13T09:21:09.212Z")).transform((v2) => v2.toISOString())
|
|
52976
53160
|
}).transform((v2) => {
|
|
52977
53161
|
return remap(v2, {
|
|
52978
53162
|
id: "_id",
|
|
@@ -52984,7 +53168,7 @@ var init_fileupload = __esm(() => {
|
|
|
52984
53168
|
});
|
|
52985
53169
|
|
|
52986
53170
|
// src/models/operations/getagent.ts
|
|
52987
|
-
var GetAgentStatus, GetAgentToolApprovalRequired, GetAgentVoice, GetAgentFormat, GetAgentResponseFormatAgentsResponseType, GetAgentResponseFormatAgentsType, GetAgentResponseFormatType, GetAgentType, GetAgentToolChoiceType, GetAgentToolChoice1, GetAgentModalities, GetAgentFallbackModelConfigurationVoice, GetAgentFallbackModelConfigurationFormat, GetAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType, GetAgentResponseFormatAgentsResponse200ApplicationJSONType, GetAgentResponseFormatAgentsResponse200Type, GetAgentFallbackModelConfigurationType, GetAgentToolChoiceAgentsType, GetAgentToolChoiceAgents1, GetAgentFallbackModelConfigurationModalities, GetAgentCollapsedConfigurationSections, GetAgentRequest$inboundSchema, GetAgentRequest$outboundSchema, GetAgentStatus$inboundSchema, GetAgentStatus$outboundSchema, GetAgentToolApprovalRequired$inboundSchema, GetAgentToolApprovalRequired$outboundSchema, GetAgentConditions$inboundSchema, GetAgentConditions$outboundSchema, GetAgentTools$inboundSchema, GetAgentTools$outboundSchema, GetAgentSettings$inboundSchema, GetAgentSettings$outboundSchema, GetAgentVoice$inboundSchema, GetAgentVoice$outboundSchema, GetAgentFormat$inboundSchema, GetAgentFormat$outboundSchema, GetAgentAudio$inboundSchema, GetAgentAudio$outboundSchema, GetAgentResponseFormatAgentsResponseType$inboundSchema, GetAgentResponseFormatAgentsResponseType$outboundSchema, GetAgentResponseFormatJsonSchema$inboundSchema, GetAgentResponseFormatJsonSchema$outboundSchema, GetAgentResponseFormatAgentsJSONSchema$inboundSchema, GetAgentResponseFormatAgentsJSONSchema$outboundSchema, GetAgentResponseFormatAgentsType$inboundSchema, GetAgentResponseFormatAgentsType$outboundSchema, GetAgentResponseFormatJSONObject$inboundSchema, GetAgentResponseFormatJSONObject$outboundSchema, GetAgentResponseFormatType$inboundSchema, GetAgentResponseFormatType$outboundSchema, GetAgentResponseFormatText$inboundSchema, GetAgentResponseFormatText$outboundSchema, GetAgentResponseFormat$inboundSchema, GetAgentResponseFormat$outboundSchema, GetAgentStop$inboundSchema, GetAgentStop$outboundSchema, GetAgentStreamOptions$inboundSchema, GetAgentStreamOptions$outboundSchema, GetAgentType$inboundSchema, GetAgentType$outboundSchema, GetAgentThinking$inboundSchema, GetAgentThinking$outboundSchema, GetAgentToolChoiceType$inboundSchema, GetAgentToolChoiceType$outboundSchema, GetAgentToolChoiceFunction$inboundSchema, GetAgentToolChoiceFunction$outboundSchema, GetAgentToolChoice2$inboundSchema, GetAgentToolChoice2$outboundSchema, GetAgentToolChoice1$inboundSchema, GetAgentToolChoice1$outboundSchema, GetAgentToolChoice$inboundSchema, GetAgentToolChoice$outboundSchema, GetAgentModalities$inboundSchema, GetAgentModalities$outboundSchema, GetAgentParameters$inboundSchema, GetAgentParameters$outboundSchema, GetAgentFallbackModelConfigurationVoice$inboundSchema, GetAgentFallbackModelConfigurationVoice$outboundSchema, GetAgentFallbackModelConfigurationFormat$inboundSchema, GetAgentFallbackModelConfigurationFormat$outboundSchema, GetAgentFallbackModelConfigurationAudio$inboundSchema, GetAgentFallbackModelConfigurationAudio$outboundSchema, GetAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema, GetAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$outboundSchema, GetAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, GetAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, GetAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema, GetAgentResponseFormatAgentsResponse200JSONSchema$outboundSchema, GetAgentResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema, GetAgentResponseFormatAgentsResponse200ApplicationJSONType$outboundSchema, GetAgentResponseFormatAgentsJSONObject$inboundSchema, GetAgentResponseFormatAgentsJSONObject$outboundSchema, GetAgentResponseFormatAgentsResponse200Type$inboundSchema, GetAgentResponseFormatAgentsResponse200Type$outboundSchema, GetAgentResponseFormatAgentsText$inboundSchema, GetAgentResponseFormatAgentsText$outboundSchema, GetAgentFallbackModelConfigurationResponseFormat$inboundSchema, GetAgentFallbackModelConfigurationResponseFormat$outboundSchema, GetAgentFallbackModelConfigurationStop$inboundSchema, GetAgentFallbackModelConfigurationStop$outboundSchema, GetAgentFallbackModelConfigurationStreamOptions$inboundSchema, GetAgentFallbackModelConfigurationStreamOptions$outboundSchema, GetAgentFallbackModelConfigurationType$inboundSchema, GetAgentFallbackModelConfigurationType$outboundSchema, GetAgentFallbackModelConfigurationThinking$inboundSchema, GetAgentFallbackModelConfigurationThinking$outboundSchema, GetAgentToolChoiceAgentsType$inboundSchema, GetAgentToolChoiceAgentsType$outboundSchema, GetAgentToolChoiceAgentsFunction$inboundSchema, GetAgentToolChoiceAgentsFunction$outboundSchema, GetAgentToolChoiceAgents2$inboundSchema, GetAgentToolChoiceAgents2$outboundSchema, GetAgentToolChoiceAgents1$inboundSchema, GetAgentToolChoiceAgents1$outboundSchema, GetAgentFallbackModelConfigurationToolChoice$inboundSchema, GetAgentFallbackModelConfigurationToolChoice$outboundSchema, GetAgentFallbackModelConfigurationModalities$inboundSchema, GetAgentFallbackModelConfigurationModalities$outboundSchema, GetAgentFallbackModelConfigurationParameters$inboundSchema, GetAgentFallbackModelConfigurationParameters$outboundSchema, GetAgentFallbackModelConfiguration2$inboundSchema, GetAgentFallbackModelConfiguration2$outboundSchema, GetAgentFallbackModelConfiguration$inboundSchema, GetAgentFallbackModelConfiguration$outboundSchema, GetAgentModel$inboundSchema, GetAgentModel$outboundSchema, GetAgentTeamOfAgents$inboundSchema, GetAgentTeamOfAgents$outboundSchema, GetAgentMetrics$inboundSchema, GetAgentMetrics$outboundSchema, GetAgentKnowledgeBases$inboundSchema, GetAgentKnowledgeBases$outboundSchema, GetAgentCollapsedConfigurationSections$inboundSchema, GetAgentCollapsedConfigurationSections$outboundSchema, GetAgentResponseBody$inboundSchema2, GetAgentResponseBody$outboundSchema2;
|
|
53171
|
+
var GetAgentStatus, GetAgentToolApprovalRequired, GetAgentExecuteOn, GetAgentAgentsExecuteOn, GetAgentVoice, GetAgentFormat, GetAgentResponseFormatAgentsResponseType, GetAgentResponseFormatAgentsType, GetAgentResponseFormatType, GetAgentType, GetAgentToolChoiceType, GetAgentToolChoice1, GetAgentModalities, GetAgentFallbackModelConfigurationVoice, GetAgentFallbackModelConfigurationFormat, GetAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType, GetAgentResponseFormatAgentsResponse200ApplicationJSONType, GetAgentResponseFormatAgentsResponse200Type, GetAgentFallbackModelConfigurationType, GetAgentToolChoiceAgentsType, GetAgentToolChoiceAgents1, GetAgentFallbackModelConfigurationModalities, GetAgentCollapsedConfigurationSections, GetAgentRequest$inboundSchema, GetAgentRequest$outboundSchema, GetAgentStatus$inboundSchema, GetAgentStatus$outboundSchema, GetAgentToolApprovalRequired$inboundSchema, GetAgentToolApprovalRequired$outboundSchema, GetAgentConditions$inboundSchema, GetAgentConditions$outboundSchema, GetAgentTools$inboundSchema, GetAgentTools$outboundSchema, GetAgentExecuteOn$inboundSchema, GetAgentExecuteOn$outboundSchema, GetAgentEvaluators$inboundSchema, GetAgentEvaluators$outboundSchema, GetAgentAgentsExecuteOn$inboundSchema, GetAgentAgentsExecuteOn$outboundSchema, GetAgentGuardrails$inboundSchema, GetAgentGuardrails$outboundSchema, GetAgentSettings$inboundSchema, GetAgentSettings$outboundSchema, GetAgentVoice$inboundSchema, GetAgentVoice$outboundSchema, GetAgentFormat$inboundSchema, GetAgentFormat$outboundSchema, GetAgentAudio$inboundSchema, GetAgentAudio$outboundSchema, GetAgentResponseFormatAgentsResponseType$inboundSchema, GetAgentResponseFormatAgentsResponseType$outboundSchema, GetAgentResponseFormatJsonSchema$inboundSchema, GetAgentResponseFormatJsonSchema$outboundSchema, GetAgentResponseFormatAgentsJSONSchema$inboundSchema, GetAgentResponseFormatAgentsJSONSchema$outboundSchema, GetAgentResponseFormatAgentsType$inboundSchema, GetAgentResponseFormatAgentsType$outboundSchema, GetAgentResponseFormatJSONObject$inboundSchema, GetAgentResponseFormatJSONObject$outboundSchema, GetAgentResponseFormatType$inboundSchema, GetAgentResponseFormatType$outboundSchema, GetAgentResponseFormatText$inboundSchema, GetAgentResponseFormatText$outboundSchema, GetAgentResponseFormat$inboundSchema, GetAgentResponseFormat$outboundSchema, GetAgentStop$inboundSchema, GetAgentStop$outboundSchema, GetAgentStreamOptions$inboundSchema, GetAgentStreamOptions$outboundSchema, GetAgentType$inboundSchema, GetAgentType$outboundSchema, GetAgentThinking$inboundSchema, GetAgentThinking$outboundSchema, GetAgentToolChoiceType$inboundSchema, GetAgentToolChoiceType$outboundSchema, GetAgentToolChoiceFunction$inboundSchema, GetAgentToolChoiceFunction$outboundSchema, GetAgentToolChoice2$inboundSchema, GetAgentToolChoice2$outboundSchema, GetAgentToolChoice1$inboundSchema, GetAgentToolChoice1$outboundSchema, GetAgentToolChoice$inboundSchema, GetAgentToolChoice$outboundSchema, GetAgentModalities$inboundSchema, GetAgentModalities$outboundSchema, GetAgentParameters$inboundSchema, GetAgentParameters$outboundSchema, GetAgentFallbackModelConfigurationVoice$inboundSchema, GetAgentFallbackModelConfigurationVoice$outboundSchema, GetAgentFallbackModelConfigurationFormat$inboundSchema, GetAgentFallbackModelConfigurationFormat$outboundSchema, GetAgentFallbackModelConfigurationAudio$inboundSchema, GetAgentFallbackModelConfigurationAudio$outboundSchema, GetAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema, GetAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$outboundSchema, GetAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, GetAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, GetAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema, GetAgentResponseFormatAgentsResponse200JSONSchema$outboundSchema, GetAgentResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema, GetAgentResponseFormatAgentsResponse200ApplicationJSONType$outboundSchema, GetAgentResponseFormatAgentsJSONObject$inboundSchema, GetAgentResponseFormatAgentsJSONObject$outboundSchema, GetAgentResponseFormatAgentsResponse200Type$inboundSchema, GetAgentResponseFormatAgentsResponse200Type$outboundSchema, GetAgentResponseFormatAgentsText$inboundSchema, GetAgentResponseFormatAgentsText$outboundSchema, GetAgentFallbackModelConfigurationResponseFormat$inboundSchema, GetAgentFallbackModelConfigurationResponseFormat$outboundSchema, GetAgentFallbackModelConfigurationStop$inboundSchema, GetAgentFallbackModelConfigurationStop$outboundSchema, GetAgentFallbackModelConfigurationStreamOptions$inboundSchema, GetAgentFallbackModelConfigurationStreamOptions$outboundSchema, GetAgentFallbackModelConfigurationType$inboundSchema, GetAgentFallbackModelConfigurationType$outboundSchema, GetAgentFallbackModelConfigurationThinking$inboundSchema, GetAgentFallbackModelConfigurationThinking$outboundSchema, GetAgentToolChoiceAgentsType$inboundSchema, GetAgentToolChoiceAgentsType$outboundSchema, GetAgentToolChoiceAgentsFunction$inboundSchema, GetAgentToolChoiceAgentsFunction$outboundSchema, GetAgentToolChoiceAgents2$inboundSchema, GetAgentToolChoiceAgents2$outboundSchema, GetAgentToolChoiceAgents1$inboundSchema, GetAgentToolChoiceAgents1$outboundSchema, GetAgentFallbackModelConfigurationToolChoice$inboundSchema, GetAgentFallbackModelConfigurationToolChoice$outboundSchema, GetAgentFallbackModelConfigurationModalities$inboundSchema, GetAgentFallbackModelConfigurationModalities$outboundSchema, GetAgentFallbackModelConfigurationParameters$inboundSchema, GetAgentFallbackModelConfigurationParameters$outboundSchema, GetAgentFallbackModelConfiguration2$inboundSchema, GetAgentFallbackModelConfiguration2$outboundSchema, GetAgentFallbackModelConfiguration$inboundSchema, GetAgentFallbackModelConfiguration$outboundSchema, GetAgentModel$inboundSchema, GetAgentModel$outboundSchema, GetAgentTeamOfAgents$inboundSchema, GetAgentTeamOfAgents$outboundSchema, GetAgentMetrics$inboundSchema, GetAgentMetrics$outboundSchema, GetAgentKnowledgeBases$inboundSchema, GetAgentKnowledgeBases$outboundSchema, GetAgentCollapsedConfigurationSections$inboundSchema, GetAgentCollapsedConfigurationSections$outboundSchema, GetAgentResponseBody$inboundSchema2, GetAgentResponseBody$outboundSchema2;
|
|
52988
53172
|
var init_getagent2 = __esm(() => {
|
|
52989
53173
|
init_esm();
|
|
52990
53174
|
init_primitives();
|
|
@@ -52999,6 +53183,14 @@ var init_getagent2 = __esm(() => {
|
|
|
52999
53183
|
RespectTool: "respect_tool",
|
|
53000
53184
|
None: "none"
|
|
53001
53185
|
};
|
|
53186
|
+
GetAgentExecuteOn = {
|
|
53187
|
+
Input: "input",
|
|
53188
|
+
Output: "output"
|
|
53189
|
+
};
|
|
53190
|
+
GetAgentAgentsExecuteOn = {
|
|
53191
|
+
Input: "input",
|
|
53192
|
+
Output: "output"
|
|
53193
|
+
};
|
|
53002
53194
|
GetAgentVoice = {
|
|
53003
53195
|
Alloy: "alloy",
|
|
53004
53196
|
Echo: "echo",
|
|
@@ -53084,7 +53276,9 @@ var init_getagent2 = __esm(() => {
|
|
|
53084
53276
|
Model: "model",
|
|
53085
53277
|
Tools: "tools",
|
|
53086
53278
|
Context: "context",
|
|
53087
|
-
RuntimeConstraints: "runtime_constraints"
|
|
53279
|
+
RuntimeConstraints: "runtime_constraints",
|
|
53280
|
+
Evaluators: "evaluators",
|
|
53281
|
+
Guardrails: "guardrails"
|
|
53088
53282
|
};
|
|
53089
53283
|
GetAgentRequest$inboundSchema = objectType({
|
|
53090
53284
|
agent_key: stringType()
|
|
@@ -53146,11 +53340,57 @@ var init_getagent2 = __esm(() => {
|
|
|
53146
53340
|
requiresApproval: "requires_approval"
|
|
53147
53341
|
});
|
|
53148
53342
|
});
|
|
53343
|
+
GetAgentExecuteOn$inboundSchema = nativeEnumType(GetAgentExecuteOn);
|
|
53344
|
+
GetAgentExecuteOn$outboundSchema = GetAgentExecuteOn$inboundSchema;
|
|
53345
|
+
GetAgentEvaluators$inboundSchema = objectType({
|
|
53346
|
+
id: stringType(),
|
|
53347
|
+
sample_rate: numberType().default(50),
|
|
53348
|
+
execute_on: GetAgentExecuteOn$inboundSchema
|
|
53349
|
+
}).transform((v2) => {
|
|
53350
|
+
return remap(v2, {
|
|
53351
|
+
sample_rate: "sampleRate",
|
|
53352
|
+
execute_on: "executeOn"
|
|
53353
|
+
});
|
|
53354
|
+
});
|
|
53355
|
+
GetAgentEvaluators$outboundSchema = objectType({
|
|
53356
|
+
id: stringType(),
|
|
53357
|
+
sampleRate: numberType().default(50),
|
|
53358
|
+
executeOn: GetAgentExecuteOn$outboundSchema
|
|
53359
|
+
}).transform((v2) => {
|
|
53360
|
+
return remap(v2, {
|
|
53361
|
+
sampleRate: "sample_rate",
|
|
53362
|
+
executeOn: "execute_on"
|
|
53363
|
+
});
|
|
53364
|
+
});
|
|
53365
|
+
GetAgentAgentsExecuteOn$inboundSchema = nativeEnumType(GetAgentAgentsExecuteOn);
|
|
53366
|
+
GetAgentAgentsExecuteOn$outboundSchema = GetAgentAgentsExecuteOn$inboundSchema;
|
|
53367
|
+
GetAgentGuardrails$inboundSchema = objectType({
|
|
53368
|
+
id: stringType(),
|
|
53369
|
+
sample_rate: numberType().default(50),
|
|
53370
|
+
execute_on: GetAgentAgentsExecuteOn$inboundSchema
|
|
53371
|
+
}).transform((v2) => {
|
|
53372
|
+
return remap(v2, {
|
|
53373
|
+
sample_rate: "sampleRate",
|
|
53374
|
+
execute_on: "executeOn"
|
|
53375
|
+
});
|
|
53376
|
+
});
|
|
53377
|
+
GetAgentGuardrails$outboundSchema = objectType({
|
|
53378
|
+
id: stringType(),
|
|
53379
|
+
sampleRate: numberType().default(50),
|
|
53380
|
+
executeOn: GetAgentAgentsExecuteOn$outboundSchema
|
|
53381
|
+
}).transform((v2) => {
|
|
53382
|
+
return remap(v2, {
|
|
53383
|
+
sampleRate: "sample_rate",
|
|
53384
|
+
executeOn: "execute_on"
|
|
53385
|
+
});
|
|
53386
|
+
});
|
|
53149
53387
|
GetAgentSettings$inboundSchema = objectType({
|
|
53150
53388
|
max_iterations: numberType().int().default(15),
|
|
53151
53389
|
max_execution_time: numberType().int().default(300),
|
|
53152
53390
|
tool_approval_required: GetAgentToolApprovalRequired$inboundSchema.default("respect_tool"),
|
|
53153
|
-
tools: arrayType(lazyType(() => GetAgentTools$inboundSchema)).optional()
|
|
53391
|
+
tools: arrayType(lazyType(() => GetAgentTools$inboundSchema)).optional(),
|
|
53392
|
+
evaluators: arrayType(lazyType(() => GetAgentEvaluators$inboundSchema)).optional(),
|
|
53393
|
+
guardrails: arrayType(lazyType(() => GetAgentGuardrails$inboundSchema)).optional()
|
|
53154
53394
|
}).transform((v2) => {
|
|
53155
53395
|
return remap(v2, {
|
|
53156
53396
|
max_iterations: "maxIterations",
|
|
@@ -53162,7 +53402,9 @@ var init_getagent2 = __esm(() => {
|
|
|
53162
53402
|
maxIterations: numberType().int().default(15),
|
|
53163
53403
|
maxExecutionTime: numberType().int().default(300),
|
|
53164
53404
|
toolApprovalRequired: GetAgentToolApprovalRequired$outboundSchema.default("respect_tool"),
|
|
53165
|
-
tools: arrayType(lazyType(() => GetAgentTools$outboundSchema)).optional()
|
|
53405
|
+
tools: arrayType(lazyType(() => GetAgentTools$outboundSchema)).optional(),
|
|
53406
|
+
evaluators: arrayType(lazyType(() => GetAgentEvaluators$outboundSchema)).optional(),
|
|
53407
|
+
guardrails: arrayType(lazyType(() => GetAgentGuardrails$outboundSchema)).optional()
|
|
53166
53408
|
}).transform((v2) => {
|
|
53167
53409
|
return remap(v2, {
|
|
53168
53410
|
maxIterations: "max_iterations",
|
|
@@ -55021,7 +55263,6 @@ var init_getallprompts = __esm(() => {
|
|
|
55021
55263
|
GetAllPromptsPromptConfig$inboundSchema = objectType({
|
|
55022
55264
|
stream: booleanType().optional(),
|
|
55023
55265
|
model: stringType().optional(),
|
|
55024
|
-
display_name: stringType().optional(),
|
|
55025
55266
|
model_db_id: nullableType(stringType()).optional(),
|
|
55026
55267
|
model_type: nullableType(GetAllPromptsModelType$inboundSchema).optional(),
|
|
55027
55268
|
model_parameters: lazyType(() => GetAllPromptsModelParameters$inboundSchema).optional(),
|
|
@@ -55031,7 +55272,6 @@ var init_getallprompts = __esm(() => {
|
|
|
55031
55272
|
messages: arrayType(lazyType(() => GetAllPromptsMessages$inboundSchema))
|
|
55032
55273
|
}).transform((v2) => {
|
|
55033
55274
|
return remap(v2, {
|
|
55034
|
-
display_name: "displayName",
|
|
55035
55275
|
model_db_id: "modelDbId",
|
|
55036
55276
|
model_type: "modelType",
|
|
55037
55277
|
model_parameters: "modelParameters",
|
|
@@ -55041,7 +55281,6 @@ var init_getallprompts = __esm(() => {
|
|
|
55041
55281
|
GetAllPromptsPromptConfig$outboundSchema = objectType({
|
|
55042
55282
|
stream: booleanType().optional(),
|
|
55043
55283
|
model: stringType().optional(),
|
|
55044
|
-
displayName: stringType().optional(),
|
|
55045
55284
|
modelDbId: nullableType(stringType()).optional(),
|
|
55046
55285
|
modelType: nullableType(GetAllPromptsModelType$outboundSchema).optional(),
|
|
55047
55286
|
modelParameters: lazyType(() => GetAllPromptsModelParameters$outboundSchema).optional(),
|
|
@@ -55051,7 +55290,6 @@ var init_getallprompts = __esm(() => {
|
|
|
55051
55290
|
messages: arrayType(lazyType(() => GetAllPromptsMessages$outboundSchema))
|
|
55052
55291
|
}).transform((v2) => {
|
|
55053
55292
|
return remap(v2, {
|
|
55054
|
-
displayName: "display_name",
|
|
55055
55293
|
modelDbId: "model_db_id",
|
|
55056
55294
|
modelType: "model_type",
|
|
55057
55295
|
modelParameters: "model_parameters",
|
|
@@ -55257,7 +55495,7 @@ var init_getalltools = __esm(() => {
|
|
|
55257
55495
|
code: stringType()
|
|
55258
55496
|
});
|
|
55259
55497
|
Data5$inboundSchema = objectType({
|
|
55260
|
-
_id: stringType().default("
|
|
55498
|
+
_id: stringType().default("01K9Y89TBGBSZBV69S2WZVPNP6"),
|
|
55261
55499
|
path: stringType(),
|
|
55262
55500
|
key: stringType(),
|
|
55263
55501
|
display_name: stringType().optional(),
|
|
@@ -55285,7 +55523,7 @@ var init_getalltools = __esm(() => {
|
|
|
55285
55523
|
});
|
|
55286
55524
|
});
|
|
55287
55525
|
Data5$outboundSchema = objectType({
|
|
55288
|
-
id: stringType().default("
|
|
55526
|
+
id: stringType().default("01K9Y89TBGBSZBV69S2WZVPNP6"),
|
|
55289
55527
|
path: stringType(),
|
|
55290
55528
|
key: stringType(),
|
|
55291
55529
|
displayName: stringType().optional(),
|
|
@@ -55371,7 +55609,7 @@ var init_getalltools = __esm(() => {
|
|
|
55371
55609
|
});
|
|
55372
55610
|
});
|
|
55373
55611
|
Data4$inboundSchema = objectType({
|
|
55374
|
-
_id: stringType().default("
|
|
55612
|
+
_id: stringType().default("01K9Y89TB8TSQXVXES3P04FXYJ"),
|
|
55375
55613
|
path: stringType(),
|
|
55376
55614
|
key: stringType(),
|
|
55377
55615
|
display_name: stringType().optional(),
|
|
@@ -55398,7 +55636,7 @@ var init_getalltools = __esm(() => {
|
|
|
55398
55636
|
});
|
|
55399
55637
|
});
|
|
55400
55638
|
Data4$outboundSchema = objectType({
|
|
55401
|
-
id: stringType().default("
|
|
55639
|
+
id: stringType().default("01K9Y89TB8TSQXVXES3P04FXYJ"),
|
|
55402
55640
|
path: stringType(),
|
|
55403
55641
|
key: stringType(),
|
|
55404
55642
|
displayName: stringType().optional(),
|
|
@@ -55485,7 +55723,7 @@ var init_getalltools = __esm(() => {
|
|
|
55485
55723
|
arguments: recordType(lazyType(() => DataArguments$outboundSchema)).optional()
|
|
55486
55724
|
});
|
|
55487
55725
|
Data3$inboundSchema = objectType({
|
|
55488
|
-
_id: stringType().default("
|
|
55726
|
+
_id: stringType().default("01K9Y89TB7821SPJF9D1MXH49W"),
|
|
55489
55727
|
path: stringType(),
|
|
55490
55728
|
key: stringType(),
|
|
55491
55729
|
display_name: stringType().optional(),
|
|
@@ -55512,7 +55750,7 @@ var init_getalltools = __esm(() => {
|
|
|
55512
55750
|
});
|
|
55513
55751
|
});
|
|
55514
55752
|
Data3$outboundSchema = objectType({
|
|
55515
|
-
id: stringType().default("
|
|
55753
|
+
id: stringType().default("01K9Y89TB7821SPJF9D1MXH49W"),
|
|
55516
55754
|
path: stringType(),
|
|
55517
55755
|
key: stringType(),
|
|
55518
55756
|
displayName: stringType().optional(),
|
|
@@ -55555,7 +55793,7 @@ var init_getalltools = __esm(() => {
|
|
|
55555
55793
|
strict: booleanType().optional()
|
|
55556
55794
|
});
|
|
55557
55795
|
Data2$inboundSchema = objectType({
|
|
55558
|
-
_id: stringType().default("
|
|
55796
|
+
_id: stringType().default("01K9Y89TB5D7M0Y156QMP304GC"),
|
|
55559
55797
|
path: stringType(),
|
|
55560
55798
|
key: stringType(),
|
|
55561
55799
|
display_name: stringType().optional(),
|
|
@@ -55583,7 +55821,7 @@ var init_getalltools = __esm(() => {
|
|
|
55583
55821
|
});
|
|
55584
55822
|
});
|
|
55585
55823
|
Data2$outboundSchema = objectType({
|
|
55586
|
-
id: stringType().default("
|
|
55824
|
+
id: stringType().default("01K9Y89TB5D7M0Y156QMP304GC"),
|
|
55587
55825
|
path: stringType(),
|
|
55588
55826
|
key: stringType(),
|
|
55589
55827
|
displayName: stringType().optional(),
|
|
@@ -55627,7 +55865,7 @@ var init_getalltools = __esm(() => {
|
|
|
55627
55865
|
parameters: recordType(anyType()).optional()
|
|
55628
55866
|
});
|
|
55629
55867
|
Data1$inboundSchema = objectType({
|
|
55630
|
-
_id: stringType().default("
|
|
55868
|
+
_id: stringType().default("01K9Y89TB4NK132NH3S7D2PTDR"),
|
|
55631
55869
|
path: stringType(),
|
|
55632
55870
|
key: stringType(),
|
|
55633
55871
|
display_name: stringType().optional(),
|
|
@@ -55654,7 +55892,7 @@ var init_getalltools = __esm(() => {
|
|
|
55654
55892
|
});
|
|
55655
55893
|
});
|
|
55656
55894
|
Data1$outboundSchema = objectType({
|
|
55657
|
-
id: stringType().default("
|
|
55895
|
+
id: stringType().default("01K9Y89TB4NK132NH3S7D2PTDR"),
|
|
55658
55896
|
path: stringType(),
|
|
55659
55897
|
key: stringType(),
|
|
55660
55898
|
displayName: stringType().optional(),
|
|
@@ -55796,7 +56034,7 @@ var init_getbudget = __esm(() => {
|
|
|
55796
56034
|
is_active: booleanType(),
|
|
55797
56035
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
55798
56036
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55799
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
56037
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:06.136Z").transform((v2) => new Date(v2))
|
|
55800
56038
|
}).transform((v2) => {
|
|
55801
56039
|
return remap(v2, {
|
|
55802
56040
|
_id: "id",
|
|
@@ -55814,7 +56052,7 @@ var init_getbudget = __esm(() => {
|
|
|
55814
56052
|
isActive: booleanType(),
|
|
55815
56053
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
55816
56054
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55817
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
56055
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:06.136Z")).transform((v2) => v2.toISOString())
|
|
55818
56056
|
}).transform((v2) => {
|
|
55819
56057
|
return remap(v2, {
|
|
55820
56058
|
id: "_id",
|
|
@@ -56183,8 +56421,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56183
56421
|
DataTypescript$inboundSchema = objectType({
|
|
56184
56422
|
_id: stringType(),
|
|
56185
56423
|
description: stringType(),
|
|
56186
|
-
created: stringType().default("2025-11-
|
|
56187
|
-
updated: stringType().default("2025-11-
|
|
56424
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56425
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56188
56426
|
guardrail_config: unionType([
|
|
56189
56427
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
56190
56428
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -56201,8 +56439,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56201
56439
|
DataTypescript$outboundSchema = objectType({
|
|
56202
56440
|
id: stringType(),
|
|
56203
56441
|
description: stringType(),
|
|
56204
|
-
created: stringType().default("2025-11-
|
|
56205
|
-
updated: stringType().default("2025-11-
|
|
56442
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56443
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56206
56444
|
guardrailConfig: unionType([
|
|
56207
56445
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
56208
56446
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -56259,8 +56497,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56259
56497
|
DataRagas$inboundSchema = objectType({
|
|
56260
56498
|
_id: stringType(),
|
|
56261
56499
|
description: stringType(),
|
|
56262
|
-
created: stringType().default("2025-11-
|
|
56263
|
-
updated: stringType().default("2025-11-
|
|
56500
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56501
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56264
56502
|
guardrail_config: unionType([
|
|
56265
56503
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
56266
56504
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -56279,8 +56517,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56279
56517
|
DataRagas$outboundSchema = objectType({
|
|
56280
56518
|
id: stringType(),
|
|
56281
56519
|
description: stringType(),
|
|
56282
|
-
created: stringType().default("2025-11-
|
|
56283
|
-
updated: stringType().default("2025-11-
|
|
56520
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56521
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56284
56522
|
guardrailConfig: unionType([
|
|
56285
56523
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
56286
56524
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -56717,8 +56955,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56717
56955
|
DataFunction$inboundSchema = objectType({
|
|
56718
56956
|
_id: stringType(),
|
|
56719
56957
|
description: stringType(),
|
|
56720
|
-
created: stringType().default("2025-11-
|
|
56721
|
-
updated: stringType().default("2025-11-
|
|
56958
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56959
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56722
56960
|
guardrail_config: unionType([
|
|
56723
56961
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
56724
56962
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -56772,8 +57010,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56772
57010
|
DataFunction$outboundSchema = objectType({
|
|
56773
57011
|
id: stringType(),
|
|
56774
57012
|
description: stringType(),
|
|
56775
|
-
created: stringType().default("2025-11-
|
|
56776
|
-
updated: stringType().default("2025-11-
|
|
57013
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57014
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56777
57015
|
guardrailConfig: unionType([
|
|
56778
57016
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
56779
57017
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -56865,8 +57103,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56865
57103
|
DataPython$inboundSchema = objectType({
|
|
56866
57104
|
_id: stringType(),
|
|
56867
57105
|
description: stringType(),
|
|
56868
|
-
created: stringType().default("2025-11-
|
|
56869
|
-
updated: stringType().default("2025-11-
|
|
57106
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57107
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56870
57108
|
guardrail_config: unionType([
|
|
56871
57109
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
56872
57110
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -56883,8 +57121,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56883
57121
|
DataPython$outboundSchema = objectType({
|
|
56884
57122
|
id: stringType(),
|
|
56885
57123
|
description: stringType(),
|
|
56886
|
-
created: stringType().default("2025-11-
|
|
56887
|
-
updated: stringType().default("2025-11-
|
|
57124
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57125
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56888
57126
|
guardrailConfig: unionType([
|
|
56889
57127
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
56890
57128
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -56941,8 +57179,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56941
57179
|
DataHTTP$inboundSchema = objectType({
|
|
56942
57180
|
_id: stringType(),
|
|
56943
57181
|
description: stringType(),
|
|
56944
|
-
created: stringType().default("2025-11-
|
|
56945
|
-
updated: stringType().default("2025-11-
|
|
57182
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57183
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56946
57184
|
guardrail_config: unionType([
|
|
56947
57185
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
56948
57186
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -56962,8 +57200,8 @@ var init_getevals2 = __esm(() => {
|
|
|
56962
57200
|
DataHTTP$outboundSchema = objectType({
|
|
56963
57201
|
id: stringType(),
|
|
56964
57202
|
description: stringType(),
|
|
56965
|
-
created: stringType().default("2025-11-
|
|
56966
|
-
updated: stringType().default("2025-11-
|
|
57203
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57204
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
56967
57205
|
guardrailConfig: unionType([
|
|
56968
57206
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
56969
57207
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -57021,8 +57259,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57021
57259
|
DataJSON$inboundSchema = objectType({
|
|
57022
57260
|
_id: stringType(),
|
|
57023
57261
|
description: stringType(),
|
|
57024
|
-
created: stringType().default("2025-11-
|
|
57025
|
-
updated: stringType().default("2025-11-
|
|
57262
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57263
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57026
57264
|
guardrail_config: unionType([
|
|
57027
57265
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
57028
57266
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -57039,8 +57277,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57039
57277
|
DataJSON$outboundSchema = objectType({
|
|
57040
57278
|
id: stringType(),
|
|
57041
57279
|
description: stringType(),
|
|
57042
|
-
created: stringType().default("2025-11-
|
|
57043
|
-
updated: stringType().default("2025-11-
|
|
57280
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57281
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57044
57282
|
guardrailConfig: unionType([
|
|
57045
57283
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
57046
57284
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -57095,8 +57333,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57095
57333
|
DataLLM$inboundSchema = objectType({
|
|
57096
57334
|
_id: stringType(),
|
|
57097
57335
|
description: stringType(),
|
|
57098
|
-
created: stringType().default("2025-11-
|
|
57099
|
-
updated: stringType().default("2025-11-
|
|
57336
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57337
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57100
57338
|
guardrail_config: unionType([
|
|
57101
57339
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
57102
57340
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -57114,8 +57352,8 @@ var init_getevals2 = __esm(() => {
|
|
|
57114
57352
|
DataLLM$outboundSchema = objectType({
|
|
57115
57353
|
id: stringType(),
|
|
57116
57354
|
description: stringType(),
|
|
57117
|
-
created: stringType().default("2025-11-
|
|
57118
|
-
updated: stringType().default("2025-11-
|
|
57355
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57356
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
57119
57357
|
guardrailConfig: unionType([
|
|
57120
57358
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
57121
57359
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -57982,7 +58220,6 @@ var init_getoneprompt = __esm(() => {
|
|
|
57982
58220
|
GetOnePromptPromptConfig$inboundSchema = objectType({
|
|
57983
58221
|
stream: booleanType().optional(),
|
|
57984
58222
|
model: stringType().optional(),
|
|
57985
|
-
display_name: stringType().optional(),
|
|
57986
58223
|
model_db_id: nullableType(stringType()).optional(),
|
|
57987
58224
|
model_type: nullableType(GetOnePromptModelType$inboundSchema).optional(),
|
|
57988
58225
|
model_parameters: lazyType(() => GetOnePromptModelParameters$inboundSchema).optional(),
|
|
@@ -57992,7 +58229,6 @@ var init_getoneprompt = __esm(() => {
|
|
|
57992
58229
|
messages: arrayType(lazyType(() => GetOnePromptMessages$inboundSchema))
|
|
57993
58230
|
}).transform((v2) => {
|
|
57994
58231
|
return remap(v2, {
|
|
57995
|
-
display_name: "displayName",
|
|
57996
58232
|
model_db_id: "modelDbId",
|
|
57997
58233
|
model_type: "modelType",
|
|
57998
58234
|
model_parameters: "modelParameters",
|
|
@@ -58002,7 +58238,6 @@ var init_getoneprompt = __esm(() => {
|
|
|
58002
58238
|
GetOnePromptPromptConfig$outboundSchema = objectType({
|
|
58003
58239
|
stream: booleanType().optional(),
|
|
58004
58240
|
model: stringType().optional(),
|
|
58005
|
-
displayName: stringType().optional(),
|
|
58006
58241
|
modelDbId: nullableType(stringType()).optional(),
|
|
58007
58242
|
modelType: nullableType(GetOnePromptModelType$outboundSchema).optional(),
|
|
58008
58243
|
modelParameters: lazyType(() => GetOnePromptModelParameters$outboundSchema).optional(),
|
|
@@ -58012,7 +58247,6 @@ var init_getoneprompt = __esm(() => {
|
|
|
58012
58247
|
messages: arrayType(lazyType(() => GetOnePromptMessages$outboundSchema))
|
|
58013
58248
|
}).transform((v2) => {
|
|
58014
58249
|
return remap(v2, {
|
|
58015
|
-
displayName: "display_name",
|
|
58016
58250
|
modelDbId: "model_db_id",
|
|
58017
58251
|
modelType: "model_type",
|
|
58018
58252
|
modelParameters: "model_parameters",
|
|
@@ -58558,7 +58792,6 @@ var init_getpromptversion2 = __esm(() => {
|
|
|
58558
58792
|
GetPromptVersionPromptConfig$inboundSchema = objectType({
|
|
58559
58793
|
stream: booleanType().optional(),
|
|
58560
58794
|
model: stringType().optional(),
|
|
58561
|
-
display_name: stringType().optional(),
|
|
58562
58795
|
model_db_id: nullableType(stringType()).optional(),
|
|
58563
58796
|
model_type: nullableType(GetPromptVersionModelType$inboundSchema).optional(),
|
|
58564
58797
|
model_parameters: lazyType(() => GetPromptVersionModelParameters$inboundSchema).optional(),
|
|
@@ -58568,7 +58801,6 @@ var init_getpromptversion2 = __esm(() => {
|
|
|
58568
58801
|
messages: arrayType(lazyType(() => GetPromptVersionMessages$inboundSchema))
|
|
58569
58802
|
}).transform((v2) => {
|
|
58570
58803
|
return remap(v2, {
|
|
58571
|
-
display_name: "displayName",
|
|
58572
58804
|
model_db_id: "modelDbId",
|
|
58573
58805
|
model_type: "modelType",
|
|
58574
58806
|
model_parameters: "modelParameters",
|
|
@@ -58578,7 +58810,6 @@ var init_getpromptversion2 = __esm(() => {
|
|
|
58578
58810
|
GetPromptVersionPromptConfig$outboundSchema = objectType({
|
|
58579
58811
|
stream: booleanType().optional(),
|
|
58580
58812
|
model: stringType().optional(),
|
|
58581
|
-
displayName: stringType().optional(),
|
|
58582
58813
|
modelDbId: nullableType(stringType()).optional(),
|
|
58583
58814
|
modelType: nullableType(GetPromptVersionModelType$outboundSchema).optional(),
|
|
58584
58815
|
modelParameters: lazyType(() => GetPromptVersionModelParameters$outboundSchema).optional(),
|
|
@@ -58588,7 +58819,6 @@ var init_getpromptversion2 = __esm(() => {
|
|
|
58588
58819
|
messages: arrayType(lazyType(() => GetPromptVersionMessages$outboundSchema))
|
|
58589
58820
|
}).transform((v2) => {
|
|
58590
58821
|
return remap(v2, {
|
|
58591
|
-
displayName: "display_name",
|
|
58592
58822
|
modelDbId: "model_db_id",
|
|
58593
58823
|
modelType: "model_type",
|
|
58594
58824
|
modelParameters: "model_parameters",
|
|
@@ -59252,7 +59482,7 @@ var init_listactions = __esm(() => {
|
|
|
59252
59482
|
});
|
|
59253
59483
|
|
|
59254
59484
|
// src/models/operations/listagents.ts
|
|
59255
|
-
var ListAgentsObject, ListAgentsStatus, ListAgentsToolApprovalRequired, ListAgentsVoice, ListAgentsFormat, ListAgentsResponseFormatAgentsResponseType, ListAgentsResponseFormatAgentsType, ListAgentsResponseFormatType, ListAgentsType, ListAgentsToolChoiceType, ListAgentsToolChoice1, ListAgentsModalities, ListAgentsFallbackModelConfigurationVoice, ListAgentsFallbackModelConfigurationFormat, ListAgentsResponseFormatAgentsResponse200ApplicationJSONResponseBodyType, ListAgentsResponseFormatAgentsResponse200ApplicationJSONType, ListAgentsResponseFormatAgentsResponse200Type, ListAgentsFallbackModelConfigurationType, ListAgentsToolChoiceAgentsType, ListAgentsToolChoiceAgents1, ListAgentsFallbackModelConfigurationModalities, ListAgentsCollapsedConfigurationSections, ListAgentsRequest$inboundSchema, ListAgentsRequest$outboundSchema, ListAgentsObject$inboundSchema, ListAgentsObject$outboundSchema, ListAgentsStatus$inboundSchema, ListAgentsStatus$outboundSchema, ListAgentsToolApprovalRequired$inboundSchema, ListAgentsToolApprovalRequired$outboundSchema, ListAgentsConditions$inboundSchema, ListAgentsConditions$outboundSchema, ListAgentsTools$inboundSchema, ListAgentsTools$outboundSchema, ListAgentsSettings$inboundSchema, ListAgentsSettings$outboundSchema, ListAgentsVoice$inboundSchema, ListAgentsVoice$outboundSchema, ListAgentsFormat$inboundSchema, ListAgentsFormat$outboundSchema, ListAgentsAudio$inboundSchema, ListAgentsAudio$outboundSchema, ListAgentsResponseFormatAgentsResponseType$inboundSchema, ListAgentsResponseFormatAgentsResponseType$outboundSchema, ListAgentsResponseFormatJsonSchema$inboundSchema, ListAgentsResponseFormatJsonSchema$outboundSchema, ListAgentsResponseFormatAgentsJSONSchema$inboundSchema, ListAgentsResponseFormatAgentsJSONSchema$outboundSchema, ListAgentsResponseFormatAgentsType$inboundSchema, ListAgentsResponseFormatAgentsType$outboundSchema, ListAgentsResponseFormatJSONObject$inboundSchema, ListAgentsResponseFormatJSONObject$outboundSchema, ListAgentsResponseFormatType$inboundSchema, ListAgentsResponseFormatType$outboundSchema, ListAgentsResponseFormatText$inboundSchema, ListAgentsResponseFormatText$outboundSchema, ListAgentsResponseFormat$inboundSchema, ListAgentsResponseFormat$outboundSchema, ListAgentsStop$inboundSchema, ListAgentsStop$outboundSchema, ListAgentsStreamOptions$inboundSchema, ListAgentsStreamOptions$outboundSchema, ListAgentsType$inboundSchema, ListAgentsType$outboundSchema, ListAgentsThinking$inboundSchema, ListAgentsThinking$outboundSchema, ListAgentsToolChoiceType$inboundSchema, ListAgentsToolChoiceType$outboundSchema, ListAgentsToolChoiceFunction$inboundSchema, ListAgentsToolChoiceFunction$outboundSchema, ListAgentsToolChoice2$inboundSchema, ListAgentsToolChoice2$outboundSchema, ListAgentsToolChoice1$inboundSchema, ListAgentsToolChoice1$outboundSchema, ListAgentsToolChoice$inboundSchema, ListAgentsToolChoice$outboundSchema, ListAgentsModalities$inboundSchema, ListAgentsModalities$outboundSchema, ListAgentsParameters$inboundSchema, ListAgentsParameters$outboundSchema, ListAgentsFallbackModelConfigurationVoice$inboundSchema, ListAgentsFallbackModelConfigurationVoice$outboundSchema, ListAgentsFallbackModelConfigurationFormat$inboundSchema, ListAgentsFallbackModelConfigurationFormat$outboundSchema, ListAgentsFallbackModelConfigurationAudio$inboundSchema, ListAgentsFallbackModelConfigurationAudio$outboundSchema, ListAgentsResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema, ListAgentsResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$outboundSchema, ListAgentsResponseFormatAgentsResponseJsonSchema$inboundSchema, ListAgentsResponseFormatAgentsResponseJsonSchema$outboundSchema, ListAgentsResponseFormatAgentsResponse200JSONSchema$inboundSchema, ListAgentsResponseFormatAgentsResponse200JSONSchema$outboundSchema, ListAgentsResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema, ListAgentsResponseFormatAgentsResponse200ApplicationJSONType$outboundSchema, ListAgentsResponseFormatAgentsJSONObject$inboundSchema, ListAgentsResponseFormatAgentsJSONObject$outboundSchema, ListAgentsResponseFormatAgentsResponse200Type$inboundSchema, ListAgentsResponseFormatAgentsResponse200Type$outboundSchema, ListAgentsResponseFormatAgentsText$inboundSchema, ListAgentsResponseFormatAgentsText$outboundSchema, ListAgentsFallbackModelConfigurationResponseFormat$inboundSchema, ListAgentsFallbackModelConfigurationResponseFormat$outboundSchema, ListAgentsFallbackModelConfigurationStop$inboundSchema, ListAgentsFallbackModelConfigurationStop$outboundSchema, ListAgentsFallbackModelConfigurationStreamOptions$inboundSchema, ListAgentsFallbackModelConfigurationStreamOptions$outboundSchema, ListAgentsFallbackModelConfigurationType$inboundSchema, ListAgentsFallbackModelConfigurationType$outboundSchema, ListAgentsFallbackModelConfigurationThinking$inboundSchema, ListAgentsFallbackModelConfigurationThinking$outboundSchema, ListAgentsToolChoiceAgentsType$inboundSchema, ListAgentsToolChoiceAgentsType$outboundSchema, ListAgentsToolChoiceAgentsFunction$inboundSchema, ListAgentsToolChoiceAgentsFunction$outboundSchema, ListAgentsToolChoiceAgents2$inboundSchema, ListAgentsToolChoiceAgents2$outboundSchema, ListAgentsToolChoiceAgents1$inboundSchema, ListAgentsToolChoiceAgents1$outboundSchema, ListAgentsFallbackModelConfigurationToolChoice$inboundSchema, ListAgentsFallbackModelConfigurationToolChoice$outboundSchema, ListAgentsFallbackModelConfigurationModalities$inboundSchema, ListAgentsFallbackModelConfigurationModalities$outboundSchema, ListAgentsFallbackModelConfigurationParameters$inboundSchema, ListAgentsFallbackModelConfigurationParameters$outboundSchema, ListAgentsFallbackModelConfiguration2$inboundSchema, ListAgentsFallbackModelConfiguration2$outboundSchema, ListAgentsFallbackModelConfiguration$inboundSchema, ListAgentsFallbackModelConfiguration$outboundSchema, ListAgentsModel$inboundSchema, ListAgentsModel$outboundSchema, ListAgentsTeamOfAgents$inboundSchema, ListAgentsTeamOfAgents$outboundSchema, ListAgentsMetrics$inboundSchema, ListAgentsMetrics$outboundSchema, ListAgentsKnowledgeBases$inboundSchema, ListAgentsKnowledgeBases$outboundSchema, ListAgentsCollapsedConfigurationSections$inboundSchema, ListAgentsCollapsedConfigurationSections$outboundSchema, ListAgentsData$inboundSchema, ListAgentsData$outboundSchema, ListAgentsResponseBody$inboundSchema, ListAgentsResponseBody$outboundSchema;
|
|
59485
|
+
var ListAgentsObject, ListAgentsStatus, ListAgentsToolApprovalRequired, ListAgentsExecuteOn, ListAgentsAgentsExecuteOn, ListAgentsVoice, ListAgentsFormat, ListAgentsResponseFormatAgentsResponseType, ListAgentsResponseFormatAgentsType, ListAgentsResponseFormatType, ListAgentsType, ListAgentsToolChoiceType, ListAgentsToolChoice1, ListAgentsModalities, ListAgentsFallbackModelConfigurationVoice, ListAgentsFallbackModelConfigurationFormat, ListAgentsResponseFormatAgentsResponse200ApplicationJSONResponseBodyType, ListAgentsResponseFormatAgentsResponse200ApplicationJSONType, ListAgentsResponseFormatAgentsResponse200Type, ListAgentsFallbackModelConfigurationType, ListAgentsToolChoiceAgentsType, ListAgentsToolChoiceAgents1, ListAgentsFallbackModelConfigurationModalities, ListAgentsCollapsedConfigurationSections, ListAgentsRequest$inboundSchema, ListAgentsRequest$outboundSchema, ListAgentsObject$inboundSchema, ListAgentsObject$outboundSchema, ListAgentsStatus$inboundSchema, ListAgentsStatus$outboundSchema, ListAgentsToolApprovalRequired$inboundSchema, ListAgentsToolApprovalRequired$outboundSchema, ListAgentsConditions$inboundSchema, ListAgentsConditions$outboundSchema, ListAgentsTools$inboundSchema, ListAgentsTools$outboundSchema, ListAgentsExecuteOn$inboundSchema, ListAgentsExecuteOn$outboundSchema, ListAgentsEvaluators$inboundSchema, ListAgentsEvaluators$outboundSchema, ListAgentsAgentsExecuteOn$inboundSchema, ListAgentsAgentsExecuteOn$outboundSchema, ListAgentsGuardrails$inboundSchema, ListAgentsGuardrails$outboundSchema, ListAgentsSettings$inboundSchema, ListAgentsSettings$outboundSchema, ListAgentsVoice$inboundSchema, ListAgentsVoice$outboundSchema, ListAgentsFormat$inboundSchema, ListAgentsFormat$outboundSchema, ListAgentsAudio$inboundSchema, ListAgentsAudio$outboundSchema, ListAgentsResponseFormatAgentsResponseType$inboundSchema, ListAgentsResponseFormatAgentsResponseType$outboundSchema, ListAgentsResponseFormatJsonSchema$inboundSchema, ListAgentsResponseFormatJsonSchema$outboundSchema, ListAgentsResponseFormatAgentsJSONSchema$inboundSchema, ListAgentsResponseFormatAgentsJSONSchema$outboundSchema, ListAgentsResponseFormatAgentsType$inboundSchema, ListAgentsResponseFormatAgentsType$outboundSchema, ListAgentsResponseFormatJSONObject$inboundSchema, ListAgentsResponseFormatJSONObject$outboundSchema, ListAgentsResponseFormatType$inboundSchema, ListAgentsResponseFormatType$outboundSchema, ListAgentsResponseFormatText$inboundSchema, ListAgentsResponseFormatText$outboundSchema, ListAgentsResponseFormat$inboundSchema, ListAgentsResponseFormat$outboundSchema, ListAgentsStop$inboundSchema, ListAgentsStop$outboundSchema, ListAgentsStreamOptions$inboundSchema, ListAgentsStreamOptions$outboundSchema, ListAgentsType$inboundSchema, ListAgentsType$outboundSchema, ListAgentsThinking$inboundSchema, ListAgentsThinking$outboundSchema, ListAgentsToolChoiceType$inboundSchema, ListAgentsToolChoiceType$outboundSchema, ListAgentsToolChoiceFunction$inboundSchema, ListAgentsToolChoiceFunction$outboundSchema, ListAgentsToolChoice2$inboundSchema, ListAgentsToolChoice2$outboundSchema, ListAgentsToolChoice1$inboundSchema, ListAgentsToolChoice1$outboundSchema, ListAgentsToolChoice$inboundSchema, ListAgentsToolChoice$outboundSchema, ListAgentsModalities$inboundSchema, ListAgentsModalities$outboundSchema, ListAgentsParameters$inboundSchema, ListAgentsParameters$outboundSchema, ListAgentsFallbackModelConfigurationVoice$inboundSchema, ListAgentsFallbackModelConfigurationVoice$outboundSchema, ListAgentsFallbackModelConfigurationFormat$inboundSchema, ListAgentsFallbackModelConfigurationFormat$outboundSchema, ListAgentsFallbackModelConfigurationAudio$inboundSchema, ListAgentsFallbackModelConfigurationAudio$outboundSchema, ListAgentsResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema, ListAgentsResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$outboundSchema, ListAgentsResponseFormatAgentsResponseJsonSchema$inboundSchema, ListAgentsResponseFormatAgentsResponseJsonSchema$outboundSchema, ListAgentsResponseFormatAgentsResponse200JSONSchema$inboundSchema, ListAgentsResponseFormatAgentsResponse200JSONSchema$outboundSchema, ListAgentsResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema, ListAgentsResponseFormatAgentsResponse200ApplicationJSONType$outboundSchema, ListAgentsResponseFormatAgentsJSONObject$inboundSchema, ListAgentsResponseFormatAgentsJSONObject$outboundSchema, ListAgentsResponseFormatAgentsResponse200Type$inboundSchema, ListAgentsResponseFormatAgentsResponse200Type$outboundSchema, ListAgentsResponseFormatAgentsText$inboundSchema, ListAgentsResponseFormatAgentsText$outboundSchema, ListAgentsFallbackModelConfigurationResponseFormat$inboundSchema, ListAgentsFallbackModelConfigurationResponseFormat$outboundSchema, ListAgentsFallbackModelConfigurationStop$inboundSchema, ListAgentsFallbackModelConfigurationStop$outboundSchema, ListAgentsFallbackModelConfigurationStreamOptions$inboundSchema, ListAgentsFallbackModelConfigurationStreamOptions$outboundSchema, ListAgentsFallbackModelConfigurationType$inboundSchema, ListAgentsFallbackModelConfigurationType$outboundSchema, ListAgentsFallbackModelConfigurationThinking$inboundSchema, ListAgentsFallbackModelConfigurationThinking$outboundSchema, ListAgentsToolChoiceAgentsType$inboundSchema, ListAgentsToolChoiceAgentsType$outboundSchema, ListAgentsToolChoiceAgentsFunction$inboundSchema, ListAgentsToolChoiceAgentsFunction$outboundSchema, ListAgentsToolChoiceAgents2$inboundSchema, ListAgentsToolChoiceAgents2$outboundSchema, ListAgentsToolChoiceAgents1$inboundSchema, ListAgentsToolChoiceAgents1$outboundSchema, ListAgentsFallbackModelConfigurationToolChoice$inboundSchema, ListAgentsFallbackModelConfigurationToolChoice$outboundSchema, ListAgentsFallbackModelConfigurationModalities$inboundSchema, ListAgentsFallbackModelConfigurationModalities$outboundSchema, ListAgentsFallbackModelConfigurationParameters$inboundSchema, ListAgentsFallbackModelConfigurationParameters$outboundSchema, ListAgentsFallbackModelConfiguration2$inboundSchema, ListAgentsFallbackModelConfiguration2$outboundSchema, ListAgentsFallbackModelConfiguration$inboundSchema, ListAgentsFallbackModelConfiguration$outboundSchema, ListAgentsModel$inboundSchema, ListAgentsModel$outboundSchema, ListAgentsTeamOfAgents$inboundSchema, ListAgentsTeamOfAgents$outboundSchema, ListAgentsMetrics$inboundSchema, ListAgentsMetrics$outboundSchema, ListAgentsKnowledgeBases$inboundSchema, ListAgentsKnowledgeBases$outboundSchema, ListAgentsCollapsedConfigurationSections$inboundSchema, ListAgentsCollapsedConfigurationSections$outboundSchema, ListAgentsData$inboundSchema, ListAgentsData$outboundSchema, ListAgentsResponseBody$inboundSchema, ListAgentsResponseBody$outboundSchema;
|
|
59256
59486
|
var init_listagents = __esm(() => {
|
|
59257
59487
|
init_esm();
|
|
59258
59488
|
init_primitives();
|
|
@@ -59270,6 +59500,14 @@ var init_listagents = __esm(() => {
|
|
|
59270
59500
|
RespectTool: "respect_tool",
|
|
59271
59501
|
None: "none"
|
|
59272
59502
|
};
|
|
59503
|
+
ListAgentsExecuteOn = {
|
|
59504
|
+
Input: "input",
|
|
59505
|
+
Output: "output"
|
|
59506
|
+
};
|
|
59507
|
+
ListAgentsAgentsExecuteOn = {
|
|
59508
|
+
Input: "input",
|
|
59509
|
+
Output: "output"
|
|
59510
|
+
};
|
|
59273
59511
|
ListAgentsVoice = {
|
|
59274
59512
|
Alloy: "alloy",
|
|
59275
59513
|
Echo: "echo",
|
|
@@ -59355,7 +59593,9 @@ var init_listagents = __esm(() => {
|
|
|
59355
59593
|
Model: "model",
|
|
59356
59594
|
Tools: "tools",
|
|
59357
59595
|
Context: "context",
|
|
59358
|
-
RuntimeConstraints: "runtime_constraints"
|
|
59596
|
+
RuntimeConstraints: "runtime_constraints",
|
|
59597
|
+
Evaluators: "evaluators",
|
|
59598
|
+
Guardrails: "guardrails"
|
|
59359
59599
|
};
|
|
59360
59600
|
ListAgentsRequest$inboundSchema = objectType({
|
|
59361
59601
|
limit: numberType().optional(),
|
|
@@ -59425,11 +59665,57 @@ var init_listagents = __esm(() => {
|
|
|
59425
59665
|
requiresApproval: "requires_approval"
|
|
59426
59666
|
});
|
|
59427
59667
|
});
|
|
59668
|
+
ListAgentsExecuteOn$inboundSchema = nativeEnumType(ListAgentsExecuteOn);
|
|
59669
|
+
ListAgentsExecuteOn$outboundSchema = ListAgentsExecuteOn$inboundSchema;
|
|
59670
|
+
ListAgentsEvaluators$inboundSchema = objectType({
|
|
59671
|
+
id: stringType(),
|
|
59672
|
+
sample_rate: numberType().default(50),
|
|
59673
|
+
execute_on: ListAgentsExecuteOn$inboundSchema
|
|
59674
|
+
}).transform((v2) => {
|
|
59675
|
+
return remap(v2, {
|
|
59676
|
+
sample_rate: "sampleRate",
|
|
59677
|
+
execute_on: "executeOn"
|
|
59678
|
+
});
|
|
59679
|
+
});
|
|
59680
|
+
ListAgentsEvaluators$outboundSchema = objectType({
|
|
59681
|
+
id: stringType(),
|
|
59682
|
+
sampleRate: numberType().default(50),
|
|
59683
|
+
executeOn: ListAgentsExecuteOn$outboundSchema
|
|
59684
|
+
}).transform((v2) => {
|
|
59685
|
+
return remap(v2, {
|
|
59686
|
+
sampleRate: "sample_rate",
|
|
59687
|
+
executeOn: "execute_on"
|
|
59688
|
+
});
|
|
59689
|
+
});
|
|
59690
|
+
ListAgentsAgentsExecuteOn$inboundSchema = nativeEnumType(ListAgentsAgentsExecuteOn);
|
|
59691
|
+
ListAgentsAgentsExecuteOn$outboundSchema = ListAgentsAgentsExecuteOn$inboundSchema;
|
|
59692
|
+
ListAgentsGuardrails$inboundSchema = objectType({
|
|
59693
|
+
id: stringType(),
|
|
59694
|
+
sample_rate: numberType().default(50),
|
|
59695
|
+
execute_on: ListAgentsAgentsExecuteOn$inboundSchema
|
|
59696
|
+
}).transform((v2) => {
|
|
59697
|
+
return remap(v2, {
|
|
59698
|
+
sample_rate: "sampleRate",
|
|
59699
|
+
execute_on: "executeOn"
|
|
59700
|
+
});
|
|
59701
|
+
});
|
|
59702
|
+
ListAgentsGuardrails$outboundSchema = objectType({
|
|
59703
|
+
id: stringType(),
|
|
59704
|
+
sampleRate: numberType().default(50),
|
|
59705
|
+
executeOn: ListAgentsAgentsExecuteOn$outboundSchema
|
|
59706
|
+
}).transform((v2) => {
|
|
59707
|
+
return remap(v2, {
|
|
59708
|
+
sampleRate: "sample_rate",
|
|
59709
|
+
executeOn: "execute_on"
|
|
59710
|
+
});
|
|
59711
|
+
});
|
|
59428
59712
|
ListAgentsSettings$inboundSchema = objectType({
|
|
59429
59713
|
max_iterations: numberType().int().default(15),
|
|
59430
59714
|
max_execution_time: numberType().int().default(300),
|
|
59431
59715
|
tool_approval_required: ListAgentsToolApprovalRequired$inboundSchema.default("respect_tool"),
|
|
59432
|
-
tools: arrayType(lazyType(() => ListAgentsTools$inboundSchema)).optional()
|
|
59716
|
+
tools: arrayType(lazyType(() => ListAgentsTools$inboundSchema)).optional(),
|
|
59717
|
+
evaluators: arrayType(lazyType(() => ListAgentsEvaluators$inboundSchema)).optional(),
|
|
59718
|
+
guardrails: arrayType(lazyType(() => ListAgentsGuardrails$inboundSchema)).optional()
|
|
59433
59719
|
}).transform((v2) => {
|
|
59434
59720
|
return remap(v2, {
|
|
59435
59721
|
max_iterations: "maxIterations",
|
|
@@ -59441,7 +59727,9 @@ var init_listagents = __esm(() => {
|
|
|
59441
59727
|
maxIterations: numberType().int().default(15),
|
|
59442
59728
|
maxExecutionTime: numberType().int().default(300),
|
|
59443
59729
|
toolApprovalRequired: ListAgentsToolApprovalRequired$outboundSchema.default("respect_tool"),
|
|
59444
|
-
tools: arrayType(lazyType(() => ListAgentsTools$outboundSchema)).optional()
|
|
59730
|
+
tools: arrayType(lazyType(() => ListAgentsTools$outboundSchema)).optional(),
|
|
59731
|
+
evaluators: arrayType(lazyType(() => ListAgentsEvaluators$outboundSchema)).optional(),
|
|
59732
|
+
guardrails: arrayType(lazyType(() => ListAgentsGuardrails$outboundSchema)).optional()
|
|
59445
59733
|
}).transform((v2) => {
|
|
59446
59734
|
return remap(v2, {
|
|
59447
59735
|
maxIterations: "max_iterations",
|
|
@@ -60476,7 +60764,7 @@ var init_listbudgets = __esm(() => {
|
|
|
60476
60764
|
is_active: booleanType(),
|
|
60477
60765
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
60478
60766
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60479
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
60767
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:06.136Z").transform((v2) => new Date(v2))
|
|
60480
60768
|
}).transform((v2) => {
|
|
60481
60769
|
return remap(v2, {
|
|
60482
60770
|
_id: "id",
|
|
@@ -60492,7 +60780,7 @@ var init_listbudgets = __esm(() => {
|
|
|
60492
60780
|
isActive: booleanType(),
|
|
60493
60781
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
60494
60782
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60495
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
60783
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:06.136Z")).transform((v2) => v2.toISOString())
|
|
60496
60784
|
}).transform((v2) => {
|
|
60497
60785
|
return remap(v2, {
|
|
60498
60786
|
id: "_id",
|
|
@@ -60819,7 +61107,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60819
61107
|
tags: arrayType(stringType()).optional(),
|
|
60820
61108
|
metadata: recordType(anyType()).optional(),
|
|
60821
61109
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60822
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61110
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2)),
|
|
60823
61111
|
metrics: lazyType(() => ListContactsMetrics$inboundSchema)
|
|
60824
61112
|
}).transform((v2) => {
|
|
60825
61113
|
return remap(v2, {
|
|
@@ -60838,7 +61126,7 @@ var init_listcontacts = __esm(() => {
|
|
|
60838
61126
|
tags: arrayType(stringType()).optional(),
|
|
60839
61127
|
metadata: recordType(anyType()).optional(),
|
|
60840
61128
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60841
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61129
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString()),
|
|
60842
61130
|
metrics: lazyType(() => ListContactsMetrics$outboundSchema)
|
|
60843
61131
|
}).transform((v2) => {
|
|
60844
61132
|
return remap(v2, {
|
|
@@ -61427,7 +61715,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61427
61715
|
human_review_id: stringType(),
|
|
61428
61716
|
source: ListDatasetDatapointsEvaluationsSource$inboundSchema.default("orq"),
|
|
61429
61717
|
reviewed_by_id: stringType(),
|
|
61430
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61718
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.877Z").transform((v2) => new Date(v2)),
|
|
61431
61719
|
type: ListDatasetDatapointsEvaluationsDatasetsType$inboundSchema,
|
|
61432
61720
|
values: arrayType(stringType())
|
|
61433
61721
|
}).transform((v2) => {
|
|
@@ -61444,7 +61732,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61444
61732
|
humanReviewId: stringType(),
|
|
61445
61733
|
source: ListDatasetDatapointsEvaluationsSource$outboundSchema.default("orq"),
|
|
61446
61734
|
reviewedById: stringType(),
|
|
61447
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61735
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.877Z")).transform((v2) => v2.toISOString()),
|
|
61448
61736
|
type: ListDatasetDatapointsEvaluationsDatasetsType$outboundSchema,
|
|
61449
61737
|
values: arrayType(stringType())
|
|
61450
61738
|
}).transform((v2) => {
|
|
@@ -61467,7 +61755,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61467
61755
|
human_review_id: stringType(),
|
|
61468
61756
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
61469
61757
|
reviewed_by_id: stringType(),
|
|
61470
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61758
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.877Z").transform((v2) => new Date(v2)),
|
|
61471
61759
|
type: ListDatasetDatapointsEvaluationsType$inboundSchema,
|
|
61472
61760
|
value: numberType()
|
|
61473
61761
|
}).transform((v2) => {
|
|
@@ -61484,7 +61772,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61484
61772
|
humanReviewId: stringType(),
|
|
61485
61773
|
source: ListDatasetDatapointsEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
61486
61774
|
reviewedById: stringType(),
|
|
61487
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61775
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.877Z")).transform((v2) => v2.toISOString()),
|
|
61488
61776
|
type: ListDatasetDatapointsEvaluationsType$outboundSchema,
|
|
61489
61777
|
value: numberType()
|
|
61490
61778
|
}).transform((v2) => {
|
|
@@ -61507,7 +61795,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61507
61795
|
human_review_id: stringType(),
|
|
61508
61796
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
61509
61797
|
reviewed_by_id: stringType(),
|
|
61510
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
61798
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.876Z").transform((v2) => new Date(v2)),
|
|
61511
61799
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$inboundSchema,
|
|
61512
61800
|
value: stringType()
|
|
61513
61801
|
}).transform((v2) => {
|
|
@@ -61524,7 +61812,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61524
61812
|
humanReviewId: stringType(),
|
|
61525
61813
|
source: ListDatasetDatapointsEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
61526
61814
|
reviewedById: stringType(),
|
|
61527
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
61815
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.876Z")).transform((v2) => v2.toISOString()),
|
|
61528
61816
|
type: ListDatasetDatapointsEvaluationsDatasetsResponseType$outboundSchema,
|
|
61529
61817
|
value: stringType()
|
|
61530
61818
|
}).transform((v2) => {
|
|
@@ -61567,7 +61855,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61567
61855
|
created_by_id: stringType().optional(),
|
|
61568
61856
|
updated_by_id: stringType().optional(),
|
|
61569
61857
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61570
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61858
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
61571
61859
|
}).transform((v2) => {
|
|
61572
61860
|
return remap(v2, {
|
|
61573
61861
|
_id: "id",
|
|
@@ -61601,7 +61889,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
61601
61889
|
createdById: stringType().optional(),
|
|
61602
61890
|
updatedById: stringType().optional(),
|
|
61603
61891
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61604
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
61892
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
61605
61893
|
}).transform((v2) => {
|
|
61606
61894
|
return remap(v2, {
|
|
61607
61895
|
id: "_id",
|
|
@@ -61690,7 +61978,7 @@ var init_listdatasets = __esm(() => {
|
|
|
61690
61978
|
created_by_id: stringType().optional(),
|
|
61691
61979
|
updated_by_id: stringType().optional(),
|
|
61692
61980
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61693
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
61981
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
61694
61982
|
}).transform((v2) => {
|
|
61695
61983
|
return remap(v2, {
|
|
61696
61984
|
_id: "id",
|
|
@@ -61710,7 +61998,7 @@ var init_listdatasets = __esm(() => {
|
|
|
61710
61998
|
createdById: stringType().optional(),
|
|
61711
61999
|
updatedById: stringType().optional(),
|
|
61712
62000
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61713
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
62001
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
61714
62002
|
}).transform((v2) => {
|
|
61715
62003
|
return remap(v2, {
|
|
61716
62004
|
id: "_id",
|
|
@@ -61791,7 +62079,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61791
62079
|
ListDatasourcesStatus$inboundSchema = nativeEnumType(ListDatasourcesStatus);
|
|
61792
62080
|
ListDatasourcesStatus$outboundSchema = ListDatasourcesStatus$inboundSchema;
|
|
61793
62081
|
ListDatasourcesData$inboundSchema = objectType({
|
|
61794
|
-
_id: stringType().default("
|
|
62082
|
+
_id: stringType().default("01K9Y89TFQQTATTJVMA5574XST"),
|
|
61795
62083
|
display_name: stringType(),
|
|
61796
62084
|
description: stringType().optional(),
|
|
61797
62085
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -61814,7 +62102,7 @@ var init_listdatasources = __esm(() => {
|
|
|
61814
62102
|
});
|
|
61815
62103
|
});
|
|
61816
62104
|
ListDatasourcesData$outboundSchema = objectType({
|
|
61817
|
-
id: stringType().default("
|
|
62105
|
+
id: stringType().default("01K9Y89TFQQTATTJVMA5574XST"),
|
|
61818
62106
|
displayName: stringType(),
|
|
61819
62107
|
description: stringType().optional(),
|
|
61820
62108
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -62702,7 +62990,6 @@ var init_listpromptversions = __esm(() => {
|
|
|
62702
62990
|
ListPromptVersionsPromptConfig$inboundSchema = objectType({
|
|
62703
62991
|
stream: booleanType().optional(),
|
|
62704
62992
|
model: stringType().optional(),
|
|
62705
|
-
display_name: stringType().optional(),
|
|
62706
62993
|
model_db_id: nullableType(stringType()).optional(),
|
|
62707
62994
|
model_type: nullableType(ListPromptVersionsModelType$inboundSchema).optional(),
|
|
62708
62995
|
model_parameters: lazyType(() => ListPromptVersionsModelParameters$inboundSchema).optional(),
|
|
@@ -62712,7 +62999,6 @@ var init_listpromptversions = __esm(() => {
|
|
|
62712
62999
|
messages: arrayType(lazyType(() => ListPromptVersionsMessages$inboundSchema))
|
|
62713
63000
|
}).transform((v2) => {
|
|
62714
63001
|
return remap(v2, {
|
|
62715
|
-
display_name: "displayName",
|
|
62716
63002
|
model_db_id: "modelDbId",
|
|
62717
63003
|
model_type: "modelType",
|
|
62718
63004
|
model_parameters: "modelParameters",
|
|
@@ -62722,7 +63008,6 @@ var init_listpromptversions = __esm(() => {
|
|
|
62722
63008
|
ListPromptVersionsPromptConfig$outboundSchema = objectType({
|
|
62723
63009
|
stream: booleanType().optional(),
|
|
62724
63010
|
model: stringType().optional(),
|
|
62725
|
-
displayName: stringType().optional(),
|
|
62726
63011
|
modelDbId: nullableType(stringType()).optional(),
|
|
62727
63012
|
modelType: nullableType(ListPromptVersionsModelType$outboundSchema).optional(),
|
|
62728
63013
|
modelParameters: lazyType(() => ListPromptVersionsModelParameters$outboundSchema).optional(),
|
|
@@ -62732,7 +63017,6 @@ var init_listpromptversions = __esm(() => {
|
|
|
62732
63017
|
messages: arrayType(lazyType(() => ListPromptVersionsMessages$outboundSchema))
|
|
62733
63018
|
}).transform((v2) => {
|
|
62734
63019
|
return remap(v2, {
|
|
62735
|
-
displayName: "display_name",
|
|
62736
63020
|
modelDbId: "model_db_id",
|
|
62737
63021
|
modelType: "model_type",
|
|
62738
63022
|
modelParameters: "model_parameters",
|
|
@@ -63282,7 +63566,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63282
63566
|
tags: arrayType(stringType()).optional(),
|
|
63283
63567
|
metadata: recordType(anyType()).optional(),
|
|
63284
63568
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
63285
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
63569
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
63286
63570
|
}).transform((v2) => {
|
|
63287
63571
|
return remap(v2, {
|
|
63288
63572
|
_id: "id",
|
|
@@ -63300,7 +63584,7 @@ var init_retrievecontact2 = __esm(() => {
|
|
|
63300
63584
|
tags: arrayType(stringType()).optional(),
|
|
63301
63585
|
metadata: recordType(anyType()).optional(),
|
|
63302
63586
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
63303
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
63587
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
63304
63588
|
}).transform((v2) => {
|
|
63305
63589
|
return remap(v2, {
|
|
63306
63590
|
id: "_id",
|
|
@@ -63859,7 +64143,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63859
64143
|
human_review_id: stringType(),
|
|
63860
64144
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
63861
64145
|
reviewed_by_id: stringType(),
|
|
63862
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64146
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.883Z").transform((v2) => new Date(v2)),
|
|
63863
64147
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
63864
64148
|
values: arrayType(stringType())
|
|
63865
64149
|
}).transform((v2) => {
|
|
@@ -63876,7 +64160,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63876
64160
|
humanReviewId: stringType(),
|
|
63877
64161
|
source: RetrieveDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
63878
64162
|
reviewedById: stringType(),
|
|
63879
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64163
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.883Z")).transform((v2) => v2.toISOString()),
|
|
63880
64164
|
type: RetrieveDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
63881
64165
|
values: arrayType(stringType())
|
|
63882
64166
|
}).transform((v2) => {
|
|
@@ -63899,7 +64183,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63899
64183
|
human_review_id: stringType(),
|
|
63900
64184
|
source: RetrieveDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
63901
64185
|
reviewed_by_id: stringType(),
|
|
63902
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64186
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.883Z").transform((v2) => new Date(v2)),
|
|
63903
64187
|
type: RetrieveDatapointEvaluationsDatasetsType$inboundSchema,
|
|
63904
64188
|
value: numberType()
|
|
63905
64189
|
}).transform((v2) => {
|
|
@@ -63916,7 +64200,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63916
64200
|
humanReviewId: stringType(),
|
|
63917
64201
|
source: RetrieveDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
63918
64202
|
reviewedById: stringType(),
|
|
63919
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64203
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.883Z")).transform((v2) => v2.toISOString()),
|
|
63920
64204
|
type: RetrieveDatapointEvaluationsDatasetsType$outboundSchema,
|
|
63921
64205
|
value: numberType()
|
|
63922
64206
|
}).transform((v2) => {
|
|
@@ -63939,7 +64223,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63939
64223
|
human_review_id: stringType(),
|
|
63940
64224
|
source: RetrieveDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
63941
64225
|
reviewed_by_id: stringType(),
|
|
63942
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
64226
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.882Z").transform((v2) => new Date(v2)),
|
|
63943
64227
|
type: RetrieveDatapointEvaluationsType$inboundSchema,
|
|
63944
64228
|
value: stringType()
|
|
63945
64229
|
}).transform((v2) => {
|
|
@@ -63956,7 +64240,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63956
64240
|
humanReviewId: stringType(),
|
|
63957
64241
|
source: RetrieveDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
63958
64242
|
reviewedById: stringType(),
|
|
63959
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
64243
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.882Z")).transform((v2) => v2.toISOString()),
|
|
63960
64244
|
type: RetrieveDatapointEvaluationsType$outboundSchema,
|
|
63961
64245
|
value: stringType()
|
|
63962
64246
|
}).transform((v2) => {
|
|
@@ -63999,7 +64283,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
63999
64283
|
created_by_id: stringType().optional(),
|
|
64000
64284
|
updated_by_id: stringType().optional(),
|
|
64001
64285
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64002
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64286
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
64003
64287
|
}).transform((v2) => {
|
|
64004
64288
|
return remap(v2, {
|
|
64005
64289
|
_id: "id",
|
|
@@ -64033,7 +64317,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
64033
64317
|
createdById: stringType().optional(),
|
|
64034
64318
|
updatedById: stringType().optional(),
|
|
64035
64319
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64036
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64320
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
64037
64321
|
}).transform((v2) => {
|
|
64038
64322
|
return remap(v2, {
|
|
64039
64323
|
id: "_id",
|
|
@@ -64093,7 +64377,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64093
64377
|
created_by_id: stringType().optional(),
|
|
64094
64378
|
updated_by_id: stringType().optional(),
|
|
64095
64379
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
64096
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
64380
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
64097
64381
|
}).transform((v2) => {
|
|
64098
64382
|
return remap(v2, {
|
|
64099
64383
|
_id: "id",
|
|
@@ -64113,7 +64397,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
64113
64397
|
createdById: stringType().optional(),
|
|
64114
64398
|
updatedById: stringType().optional(),
|
|
64115
64399
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
64116
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
64400
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
64117
64401
|
}).transform((v2) => {
|
|
64118
64402
|
return remap(v2, {
|
|
64119
64403
|
id: "_id",
|
|
@@ -64159,7 +64443,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64159
64443
|
RetrieveDatasourceStatus$inboundSchema = nativeEnumType(RetrieveDatasourceStatus);
|
|
64160
64444
|
RetrieveDatasourceStatus$outboundSchema = RetrieveDatasourceStatus$inboundSchema;
|
|
64161
64445
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
64162
|
-
_id: stringType().default("
|
|
64446
|
+
_id: stringType().default("01K9Y89TFT967PW4EQNCK2V1S4"),
|
|
64163
64447
|
display_name: stringType(),
|
|
64164
64448
|
description: stringType().optional(),
|
|
64165
64449
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -64182,7 +64466,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
64182
64466
|
});
|
|
64183
64467
|
});
|
|
64184
64468
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
64185
|
-
id: stringType().default("
|
|
64469
|
+
id: stringType().default("01K9Y89TFT967PW4EQNCK2V1S4"),
|
|
64186
64470
|
displayName: stringType(),
|
|
64187
64471
|
description: stringType().optional(),
|
|
64188
64472
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -64720,7 +65004,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64720
65004
|
code: stringType()
|
|
64721
65005
|
});
|
|
64722
65006
|
RetrieveToolResponseBody5$inboundSchema = objectType({
|
|
64723
|
-
_id: stringType().default("
|
|
65007
|
+
_id: stringType().default("01K9Y89TDE89BA7VX9YEBQ3C5K"),
|
|
64724
65008
|
path: stringType(),
|
|
64725
65009
|
key: stringType(),
|
|
64726
65010
|
display_name: stringType().optional(),
|
|
@@ -64748,7 +65032,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64748
65032
|
});
|
|
64749
65033
|
});
|
|
64750
65034
|
RetrieveToolResponseBody5$outboundSchema = objectType({
|
|
64751
|
-
id: stringType().default("
|
|
65035
|
+
id: stringType().default("01K9Y89TDE89BA7VX9YEBQ3C5K"),
|
|
64752
65036
|
path: stringType(),
|
|
64753
65037
|
key: stringType(),
|
|
64754
65038
|
displayName: stringType().optional(),
|
|
@@ -64834,7 +65118,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64834
65118
|
});
|
|
64835
65119
|
});
|
|
64836
65120
|
RetrieveToolResponseBody4$inboundSchema = objectType({
|
|
64837
|
-
_id: stringType().default("
|
|
65121
|
+
_id: stringType().default("01K9Y89TDCZMTG03XKHFKN0TP0"),
|
|
64838
65122
|
path: stringType(),
|
|
64839
65123
|
key: stringType(),
|
|
64840
65124
|
display_name: stringType().optional(),
|
|
@@ -64861,7 +65145,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64861
65145
|
});
|
|
64862
65146
|
});
|
|
64863
65147
|
RetrieveToolResponseBody4$outboundSchema = objectType({
|
|
64864
|
-
id: stringType().default("
|
|
65148
|
+
id: stringType().default("01K9Y89TDCZMTG03XKHFKN0TP0"),
|
|
64865
65149
|
path: stringType(),
|
|
64866
65150
|
key: stringType(),
|
|
64867
65151
|
displayName: stringType().optional(),
|
|
@@ -64948,7 +65232,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64948
65232
|
arguments: recordType(lazyType(() => RetrieveToolResponseBodyArguments$outboundSchema)).optional()
|
|
64949
65233
|
});
|
|
64950
65234
|
RetrieveToolResponseBody3$inboundSchema = objectType({
|
|
64951
|
-
_id: stringType().default("
|
|
65235
|
+
_id: stringType().default("01K9Y89TDA7VTH86N4J92TW92D"),
|
|
64952
65236
|
path: stringType(),
|
|
64953
65237
|
key: stringType(),
|
|
64954
65238
|
display_name: stringType().optional(),
|
|
@@ -64975,7 +65259,7 @@ var init_retrievetool = __esm(() => {
|
|
|
64975
65259
|
});
|
|
64976
65260
|
});
|
|
64977
65261
|
RetrieveToolResponseBody3$outboundSchema = objectType({
|
|
64978
|
-
id: stringType().default("
|
|
65262
|
+
id: stringType().default("01K9Y89TDA7VTH86N4J92TW92D"),
|
|
64979
65263
|
path: stringType(),
|
|
64980
65264
|
key: stringType(),
|
|
64981
65265
|
displayName: stringType().optional(),
|
|
@@ -65018,7 +65302,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65018
65302
|
strict: booleanType().optional()
|
|
65019
65303
|
});
|
|
65020
65304
|
RetrieveToolResponseBody2$inboundSchema = objectType({
|
|
65021
|
-
_id: stringType().default("
|
|
65305
|
+
_id: stringType().default("01K9Y89TD8Q3AQ6P24J1C93QYZ"),
|
|
65022
65306
|
path: stringType(),
|
|
65023
65307
|
key: stringType(),
|
|
65024
65308
|
display_name: stringType().optional(),
|
|
@@ -65046,7 +65330,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65046
65330
|
});
|
|
65047
65331
|
});
|
|
65048
65332
|
RetrieveToolResponseBody2$outboundSchema = objectType({
|
|
65049
|
-
id: stringType().default("
|
|
65333
|
+
id: stringType().default("01K9Y89TD8Q3AQ6P24J1C93QYZ"),
|
|
65050
65334
|
path: stringType(),
|
|
65051
65335
|
key: stringType(),
|
|
65052
65336
|
displayName: stringType().optional(),
|
|
@@ -65090,7 +65374,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65090
65374
|
parameters: recordType(anyType()).optional()
|
|
65091
65375
|
});
|
|
65092
65376
|
RetrieveToolResponseBody1$inboundSchema = objectType({
|
|
65093
|
-
_id: stringType().default("
|
|
65377
|
+
_id: stringType().default("01K9Y89TD6C51M5B737380DE38"),
|
|
65094
65378
|
path: stringType(),
|
|
65095
65379
|
key: stringType(),
|
|
65096
65380
|
display_name: stringType().optional(),
|
|
@@ -65117,7 +65401,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65117
65401
|
});
|
|
65118
65402
|
});
|
|
65119
65403
|
RetrieveToolResponseBody1$outboundSchema = objectType({
|
|
65120
|
-
id: stringType().default("
|
|
65404
|
+
id: stringType().default("01K9Y89TD6C51M5B737380DE38"),
|
|
65121
65405
|
path: stringType(),
|
|
65122
65406
|
key: stringType(),
|
|
65123
65407
|
displayName: stringType().optional(),
|
|
@@ -65160,7 +65444,7 @@ var init_retrievetool = __esm(() => {
|
|
|
65160
65444
|
});
|
|
65161
65445
|
|
|
65162
65446
|
// src/models/operations/runagent.ts
|
|
65163
|
-
var RunAgentModelConfigurationVoice, RunAgentModelConfigurationFormat, RunAgentResponseFormatAgentsRequestType, RunAgentResponseFormatAgentsType, RunAgentResponseFormatType, RunAgentModelConfigurationType, RunAgentToolChoiceType, RunAgentToolChoice1, RunAgentModelConfigurationModalities, RunAgentFallbackModelConfigurationVoice, RunAgentFallbackModelConfigurationFormat, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, RunAgentResponseFormatAgentsRequestRequestBodyType, RunAgentFallbackModelConfigurationType, RunAgentToolChoiceAgentsType, RunAgentToolChoiceAgents1, RunAgentFallbackModelConfigurationModalities, RunAgentRoleToolMessage, RunAgentRoleUserMessage, RunAgentPublicMessagePartAgentsRequestKind, RunAgentPublicMessagePartAgentsKind, RunAgentPublicMessagePartKind, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, Language, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, Method, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, RunAgentAgentToolInputRunAgentsRequestRequestBodyType, RunAgentAgentToolInputRunAgentsRequestType, RunAgentAgentToolInputRunAgentsType, RunAgentAgentToolInputRunType, AgentToolInputRunType, RunAgentToolApprovalRequired, RunAgentKind, RunAgentState, RunAgentAgentsKind, RunAgentAgentsRole, RunAgentPartsAgentsResponse200ApplicationJSONKind, RunAgentPartsAgentsResponse200Kind, RunAgentPartsAgentsResponseKind, RunAgentPartsAgentsKind, RunAgentPartsKind, RunAgentModelConfigurationVoice$inboundSchema, RunAgentModelConfigurationVoice$outboundSchema, RunAgentModelConfigurationFormat$inboundSchema, RunAgentModelConfigurationFormat$outboundSchema, RunAgentModelConfigurationAudio$inboundSchema, RunAgentModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestType$inboundSchema, RunAgentResponseFormatAgentsRequestType$outboundSchema, RunAgentResponseFormatAgentsJsonSchema$inboundSchema, RunAgentResponseFormatAgentsJsonSchema$outboundSchema, RunAgentResponseFormatJSONSchema$inboundSchema, RunAgentResponseFormatJSONSchema$outboundSchema, RunAgentResponseFormatAgentsType$inboundSchema, RunAgentResponseFormatAgentsType$outboundSchema, RunAgentResponseFormatJSONObject$inboundSchema, RunAgentResponseFormatJSONObject$outboundSchema, RunAgentResponseFormatType$inboundSchema, RunAgentResponseFormatType$outboundSchema, RunAgentResponseFormatText$inboundSchema, RunAgentResponseFormatText$outboundSchema, RunAgentModelConfigurationResponseFormat$inboundSchema, RunAgentModelConfigurationResponseFormat$outboundSchema, RunAgentModelConfigurationStop$inboundSchema, RunAgentModelConfigurationStop$outboundSchema, RunAgentModelConfigurationStreamOptions$inboundSchema, RunAgentModelConfigurationStreamOptions$outboundSchema, RunAgentModelConfigurationType$inboundSchema, RunAgentModelConfigurationType$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, RunAgentModelConfigurationParameters$inboundSchema, RunAgentModelConfigurationParameters$outboundSchema, RunAgentModelConfiguration2$inboundSchema, RunAgentModelConfiguration2$outboundSchema, RunAgentModelConfiguration$inboundSchema, RunAgentModelConfiguration$outboundSchema, RunAgentFallbackModelConfigurationVoice$inboundSchema, RunAgentFallbackModelConfigurationVoice$outboundSchema, RunAgentFallbackModelConfigurationFormat$inboundSchema, RunAgentFallbackModelConfigurationFormat$outboundSchema, RunAgentFallbackModelConfigurationAudio$inboundSchema, RunAgentFallbackModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, RunAgentResponseFormatAgentsJSONObject$inboundSchema, RunAgentResponseFormatAgentsJSONObject$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, RunAgentResponseFormatAgentsText$inboundSchema, RunAgentResponseFormatAgentsText$outboundSchema, RunAgentFallbackModelConfigurationResponseFormat$inboundSchema, RunAgentFallbackModelConfigurationResponseFormat$outboundSchema, RunAgentFallbackModelConfigurationStop$inboundSchema, RunAgentFallbackModelConfigurationStop$outboundSchema, RunAgentFallbackModelConfigurationStreamOptions$inboundSchema, RunAgentFallbackModelConfigurationStreamOptions$outboundSchema, RunAgentFallbackModelConfigurationType$inboundSchema, RunAgentFallbackModelConfigurationType$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, RunAgentFallbackModelConfigurationParameters$inboundSchema, RunAgentFallbackModelConfigurationParameters$outboundSchema, RunAgentFallbackModelConfiguration2$inboundSchema, RunAgentFallbackModelConfiguration2$outboundSchema, RunAgentFallbackModelConfiguration$inboundSchema, RunAgentFallbackModelConfiguration$outboundSchema, RunAgentRoleToolMessage$inboundSchema, RunAgentRoleToolMessage$outboundSchema, RunAgentRoleUserMessage$inboundSchema, RunAgentRoleUserMessage$outboundSchema, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentPublicMessagePartAgentsRequestKind$inboundSchema, RunAgentPublicMessagePartAgentsRequestKind$outboundSchema, PublicMessagePartToolResultPart$inboundSchema, PublicMessagePartToolResultPart$outboundSchema, RunAgentPublicMessagePartAgentsKind$inboundSchema, RunAgentPublicMessagePartAgentsKind$outboundSchema, FileFileInURIFormat$inboundSchema, FileFileInURIFormat$outboundSchema, FileBinaryFormat$inboundSchema, FileBinaryFormat$outboundSchema, RunAgentPublicMessagePartFile$inboundSchema, RunAgentPublicMessagePartFile$outboundSchema, PublicMessagePartFilePart$inboundSchema, PublicMessagePartFilePart$outboundSchema, RunAgentPublicMessagePartKind$inboundSchema, RunAgentPublicMessagePartKind$outboundSchema, PublicMessagePartTextPart$inboundSchema, PublicMessagePartTextPart$outboundSchema, RunAgentPublicMessagePart$inboundSchema, RunAgentPublicMessagePart$outboundSchema, RunAgentMessage$inboundSchema, RunAgentMessage$outboundSchema, RunAgentContact$inboundSchema, RunAgentContact$outboundSchema, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentMemory$inboundSchema, RunAgentMemory$outboundSchema, RunAgentKnowledgeBases$inboundSchema, RunAgentKnowledgeBases$outboundSchema, RunAgentTeamOfAgents$inboundSchema, RunAgentTeamOfAgents$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, AgentToolInputRunFunction$inboundSchema, AgentToolInputRunFunction$outboundSchema, FunctionToolRun$inboundSchema, FunctionToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, Language$inboundSchema, Language$outboundSchema, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeToolRun$inboundSchema, CodeToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, Method$inboundSchema, Method$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, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, AgentToolInputRunCurrentDateTool$inboundSchema, AgentToolInputRunCurrentDateTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, AgentToolInputRunWriteMemoryStoreTool$inboundSchema, AgentToolInputRunWriteMemoryStoreTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, AgentToolInputRunQueryMemoryStoreTool$inboundSchema, AgentToolInputRunQueryMemoryStoreTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestType$outboundSchema, AgentToolInputRunRetrieveAgentsTool$inboundSchema, AgentToolInputRunRetrieveAgentsTool$outboundSchema, RunAgentAgentToolInputRunAgentsType$inboundSchema, RunAgentAgentToolInputRunAgentsType$outboundSchema, AgentToolInputRunCallSubAgentTool$inboundSchema, AgentToolInputRunCallSubAgentTool$outboundSchema, RunAgentAgentToolInputRunType$inboundSchema, RunAgentAgentToolInputRunType$outboundSchema, AgentToolInputRunWebScraperTool$inboundSchema, AgentToolInputRunWebScraperTool$outboundSchema, AgentToolInputRunType$inboundSchema, AgentToolInputRunType$outboundSchema, AgentToolInputRunGoogleSearchTool$inboundSchema, AgentToolInputRunGoogleSearchTool$outboundSchema, AgentToolInputRun$inboundSchema, AgentToolInputRun$outboundSchema, RunAgentToolApprovalRequired$inboundSchema, RunAgentToolApprovalRequired$outboundSchema, RunAgentSettings$inboundSchema, RunAgentSettings$outboundSchema, RunAgentRequestBody$inboundSchema, RunAgentRequestBody$outboundSchema, RunAgentKind$inboundSchema, RunAgentKind$outboundSchema, RunAgentState$inboundSchema, RunAgentState$outboundSchema, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentAgentsRole$inboundSchema, RunAgentAgentsRole$outboundSchema, RunAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema, RunAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema, RunAgentParts5$inboundSchema, RunAgentParts5$outboundSchema, RunAgentPartsAgentsResponse200Kind$inboundSchema, RunAgentPartsAgentsResponse200Kind$outboundSchema, RunAgentParts4$inboundSchema, RunAgentParts4$outboundSchema, RunAgentPartsAgentsResponseKind$inboundSchema, RunAgentPartsAgentsResponseKind$outboundSchema, RunAgentFileFileInURIFormat$inboundSchema, RunAgentFileFileInURIFormat$outboundSchema, RunAgentFileBinaryFormat$inboundSchema, RunAgentFileBinaryFormat$outboundSchema, RunAgentPartsFile$inboundSchema, RunAgentPartsFile$outboundSchema, RunAgentParts3$inboundSchema, RunAgentParts3$outboundSchema, RunAgentPartsAgentsKind$inboundSchema, RunAgentPartsAgentsKind$outboundSchema, RunAgentParts2$inboundSchema, RunAgentParts2$outboundSchema, RunAgentPartsKind$inboundSchema, RunAgentPartsKind$outboundSchema, RunAgentParts1$inboundSchema, RunAgentParts1$outboundSchema, RunAgentParts$inboundSchema, RunAgentParts$outboundSchema, RunAgentAgentsMessage$inboundSchema, RunAgentAgentsMessage$outboundSchema, RunAgentStatus$inboundSchema, RunAgentStatus$outboundSchema, RunAgentResponseBody$inboundSchema, RunAgentResponseBody$outboundSchema;
|
|
65447
|
+
var RunAgentModelConfigurationVoice, RunAgentModelConfigurationFormat, RunAgentResponseFormatAgentsRequestType, RunAgentResponseFormatAgentsType, RunAgentResponseFormatType, RunAgentModelConfigurationType, RunAgentToolChoiceType, RunAgentToolChoice1, RunAgentModelConfigurationModalities, RunAgentFallbackModelConfigurationVoice, RunAgentFallbackModelConfigurationFormat, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, RunAgentResponseFormatAgentsRequestRequestBodyType, RunAgentFallbackModelConfigurationType, RunAgentToolChoiceAgentsType, RunAgentToolChoiceAgents1, RunAgentFallbackModelConfigurationModalities, RunAgentRoleToolMessage, RunAgentRoleUserMessage, RunAgentPublicMessagePartAgentsRequestKind, RunAgentPublicMessagePartAgentsKind, RunAgentPublicMessagePartKind, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, Language, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, Method, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, RunAgentAgentToolInputRunAgentsRequestRequestBodyType, RunAgentAgentToolInputRunAgentsRequestType, RunAgentAgentToolInputRunAgentsType, RunAgentAgentToolInputRunType, AgentToolInputRunType, RunAgentToolApprovalRequired, RunAgentExecuteOn, RunAgentAgentsExecuteOn, RunAgentKind, RunAgentState, RunAgentAgentsKind, RunAgentAgentsRole, RunAgentPartsAgentsResponse200ApplicationJSONKind, RunAgentPartsAgentsResponse200Kind, RunAgentPartsAgentsResponseKind, RunAgentPartsAgentsKind, RunAgentPartsKind, RunAgentModelConfigurationVoice$inboundSchema, RunAgentModelConfigurationVoice$outboundSchema, RunAgentModelConfigurationFormat$inboundSchema, RunAgentModelConfigurationFormat$outboundSchema, RunAgentModelConfigurationAudio$inboundSchema, RunAgentModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestType$inboundSchema, RunAgentResponseFormatAgentsRequestType$outboundSchema, RunAgentResponseFormatAgentsJsonSchema$inboundSchema, RunAgentResponseFormatAgentsJsonSchema$outboundSchema, RunAgentResponseFormatJSONSchema$inboundSchema, RunAgentResponseFormatJSONSchema$outboundSchema, RunAgentResponseFormatAgentsType$inboundSchema, RunAgentResponseFormatAgentsType$outboundSchema, RunAgentResponseFormatJSONObject$inboundSchema, RunAgentResponseFormatJSONObject$outboundSchema, RunAgentResponseFormatType$inboundSchema, RunAgentResponseFormatType$outboundSchema, RunAgentResponseFormatText$inboundSchema, RunAgentResponseFormatText$outboundSchema, RunAgentModelConfigurationResponseFormat$inboundSchema, RunAgentModelConfigurationResponseFormat$outboundSchema, RunAgentModelConfigurationStop$inboundSchema, RunAgentModelConfigurationStop$outboundSchema, RunAgentModelConfigurationStreamOptions$inboundSchema, RunAgentModelConfigurationStreamOptions$outboundSchema, RunAgentModelConfigurationType$inboundSchema, RunAgentModelConfigurationType$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, RunAgentModelConfigurationParameters$inboundSchema, RunAgentModelConfigurationParameters$outboundSchema, RunAgentModelConfiguration2$inboundSchema, RunAgentModelConfiguration2$outboundSchema, RunAgentModelConfiguration$inboundSchema, RunAgentModelConfiguration$outboundSchema, RunAgentFallbackModelConfigurationVoice$inboundSchema, RunAgentFallbackModelConfigurationVoice$outboundSchema, RunAgentFallbackModelConfigurationFormat$inboundSchema, RunAgentFallbackModelConfigurationFormat$outboundSchema, RunAgentFallbackModelConfigurationAudio$inboundSchema, RunAgentFallbackModelConfigurationAudio$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, RunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, RunAgentResponseFormatAgentsJSONObject$inboundSchema, RunAgentResponseFormatAgentsJSONObject$outboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, RunAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, RunAgentResponseFormatAgentsText$inboundSchema, RunAgentResponseFormatAgentsText$outboundSchema, RunAgentFallbackModelConfigurationResponseFormat$inboundSchema, RunAgentFallbackModelConfigurationResponseFormat$outboundSchema, RunAgentFallbackModelConfigurationStop$inboundSchema, RunAgentFallbackModelConfigurationStop$outboundSchema, RunAgentFallbackModelConfigurationStreamOptions$inboundSchema, RunAgentFallbackModelConfigurationStreamOptions$outboundSchema, RunAgentFallbackModelConfigurationType$inboundSchema, RunAgentFallbackModelConfigurationType$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, RunAgentFallbackModelConfigurationParameters$inboundSchema, RunAgentFallbackModelConfigurationParameters$outboundSchema, RunAgentFallbackModelConfiguration2$inboundSchema, RunAgentFallbackModelConfiguration2$outboundSchema, RunAgentFallbackModelConfiguration$inboundSchema, RunAgentFallbackModelConfiguration$outboundSchema, RunAgentRoleToolMessage$inboundSchema, RunAgentRoleToolMessage$outboundSchema, RunAgentRoleUserMessage$inboundSchema, RunAgentRoleUserMessage$outboundSchema, RunAgentRole$inboundSchema, RunAgentRole$outboundSchema, RunAgentPublicMessagePartAgentsRequestKind$inboundSchema, RunAgentPublicMessagePartAgentsRequestKind$outboundSchema, PublicMessagePartToolResultPart$inboundSchema, PublicMessagePartToolResultPart$outboundSchema, RunAgentPublicMessagePartAgentsKind$inboundSchema, RunAgentPublicMessagePartAgentsKind$outboundSchema, FileFileInURIFormat$inboundSchema, FileFileInURIFormat$outboundSchema, FileBinaryFormat$inboundSchema, FileBinaryFormat$outboundSchema, RunAgentPublicMessagePartFile$inboundSchema, RunAgentPublicMessagePartFile$outboundSchema, PublicMessagePartFilePart$inboundSchema, PublicMessagePartFilePart$outboundSchema, RunAgentPublicMessagePartKind$inboundSchema, RunAgentPublicMessagePartKind$outboundSchema, PublicMessagePartTextPart$inboundSchema, PublicMessagePartTextPart$outboundSchema, RunAgentPublicMessagePart$inboundSchema, RunAgentPublicMessagePart$outboundSchema, RunAgentMessage$inboundSchema, RunAgentMessage$outboundSchema, RunAgentContact$inboundSchema, RunAgentContact$outboundSchema, RunAgentThread$inboundSchema, RunAgentThread$outboundSchema, RunAgentMemory$inboundSchema, RunAgentMemory$outboundSchema, RunAgentKnowledgeBases$inboundSchema, RunAgentKnowledgeBases$outboundSchema, RunAgentTeamOfAgents$inboundSchema, RunAgentTeamOfAgents$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, AgentToolInputRunFunction$inboundSchema, AgentToolInputRunFunction$outboundSchema, FunctionToolRun$inboundSchema, FunctionToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, Language$inboundSchema, Language$outboundSchema, CodeTool$inboundSchema, CodeTool$outboundSchema, CodeToolRun$inboundSchema, CodeToolRun$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, Method$inboundSchema, Method$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, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, AgentToolInputRunCurrentDateTool$inboundSchema, AgentToolInputRunCurrentDateTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, AgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, AgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, AgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, AgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, AgentToolInputRunWriteMemoryStoreTool$inboundSchema, AgentToolInputRunWriteMemoryStoreTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, AgentToolInputRunQueryMemoryStoreTool$inboundSchema, AgentToolInputRunQueryMemoryStoreTool$outboundSchema, RunAgentAgentToolInputRunAgentsRequestType$inboundSchema, RunAgentAgentToolInputRunAgentsRequestType$outboundSchema, AgentToolInputRunRetrieveAgentsTool$inboundSchema, AgentToolInputRunRetrieveAgentsTool$outboundSchema, RunAgentAgentToolInputRunAgentsType$inboundSchema, RunAgentAgentToolInputRunAgentsType$outboundSchema, AgentToolInputRunCallSubAgentTool$inboundSchema, AgentToolInputRunCallSubAgentTool$outboundSchema, RunAgentAgentToolInputRunType$inboundSchema, RunAgentAgentToolInputRunType$outboundSchema, AgentToolInputRunWebScraperTool$inboundSchema, AgentToolInputRunWebScraperTool$outboundSchema, AgentToolInputRunType$inboundSchema, AgentToolInputRunType$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, RunAgentState$inboundSchema, RunAgentState$outboundSchema, RunAgentAgentsKind$inboundSchema, RunAgentAgentsKind$outboundSchema, RunAgentAgentsRole$inboundSchema, RunAgentAgentsRole$outboundSchema, RunAgentPartsAgentsResponse200ApplicationJSONKind$inboundSchema, RunAgentPartsAgentsResponse200ApplicationJSONKind$outboundSchema, RunAgentParts5$inboundSchema, RunAgentParts5$outboundSchema, RunAgentPartsAgentsResponse200Kind$inboundSchema, RunAgentPartsAgentsResponse200Kind$outboundSchema, RunAgentParts4$inboundSchema, RunAgentParts4$outboundSchema, RunAgentPartsAgentsResponseKind$inboundSchema, RunAgentPartsAgentsResponseKind$outboundSchema, RunAgentFileFileInURIFormat$inboundSchema, RunAgentFileFileInURIFormat$outboundSchema, RunAgentFileBinaryFormat$inboundSchema, RunAgentFileBinaryFormat$outboundSchema, RunAgentPartsFile$inboundSchema, RunAgentPartsFile$outboundSchema, RunAgentParts3$inboundSchema, RunAgentParts3$outboundSchema, RunAgentPartsAgentsKind$inboundSchema, RunAgentPartsAgentsKind$outboundSchema, RunAgentParts2$inboundSchema, RunAgentParts2$outboundSchema, RunAgentPartsKind$inboundSchema, RunAgentPartsKind$outboundSchema, RunAgentParts1$inboundSchema, RunAgentParts1$outboundSchema, RunAgentParts$inboundSchema, RunAgentParts$outboundSchema, RunAgentAgentsMessage$inboundSchema, RunAgentAgentsMessage$outboundSchema, RunAgentStatus$inboundSchema, RunAgentStatus$outboundSchema, RunAgentResponseBody$inboundSchema, RunAgentResponseBody$outboundSchema;
|
|
65164
65448
|
var init_runagent = __esm(() => {
|
|
65165
65449
|
init_esm();
|
|
65166
65450
|
init_primitives();
|
|
@@ -65320,6 +65604,14 @@ var init_runagent = __esm(() => {
|
|
|
65320
65604
|
RespectTool: "respect_tool",
|
|
65321
65605
|
None: "none"
|
|
65322
65606
|
};
|
|
65607
|
+
RunAgentExecuteOn = {
|
|
65608
|
+
Input: "input",
|
|
65609
|
+
Output: "output"
|
|
65610
|
+
};
|
|
65611
|
+
RunAgentAgentsExecuteOn = {
|
|
65612
|
+
Input: "input",
|
|
65613
|
+
Output: "output"
|
|
65614
|
+
};
|
|
65323
65615
|
RunAgentKind = {
|
|
65324
65616
|
Task: "task"
|
|
65325
65617
|
};
|
|
@@ -66434,6 +66726,50 @@ var init_runagent = __esm(() => {
|
|
|
66434
66726
|
]);
|
|
66435
66727
|
RunAgentToolApprovalRequired$inboundSchema = nativeEnumType(RunAgentToolApprovalRequired);
|
|
66436
66728
|
RunAgentToolApprovalRequired$outboundSchema = RunAgentToolApprovalRequired$inboundSchema;
|
|
66729
|
+
RunAgentExecuteOn$inboundSchema = nativeEnumType(RunAgentExecuteOn);
|
|
66730
|
+
RunAgentExecuteOn$outboundSchema = RunAgentExecuteOn$inboundSchema;
|
|
66731
|
+
RunAgentEvaluators$inboundSchema = objectType({
|
|
66732
|
+
id: stringType(),
|
|
66733
|
+
sample_rate: numberType().default(50),
|
|
66734
|
+
execute_on: RunAgentExecuteOn$inboundSchema
|
|
66735
|
+
}).transform((v2) => {
|
|
66736
|
+
return remap(v2, {
|
|
66737
|
+
sample_rate: "sampleRate",
|
|
66738
|
+
execute_on: "executeOn"
|
|
66739
|
+
});
|
|
66740
|
+
});
|
|
66741
|
+
RunAgentEvaluators$outboundSchema = objectType({
|
|
66742
|
+
id: stringType(),
|
|
66743
|
+
sampleRate: numberType().default(50),
|
|
66744
|
+
executeOn: RunAgentExecuteOn$outboundSchema
|
|
66745
|
+
}).transform((v2) => {
|
|
66746
|
+
return remap(v2, {
|
|
66747
|
+
sampleRate: "sample_rate",
|
|
66748
|
+
executeOn: "execute_on"
|
|
66749
|
+
});
|
|
66750
|
+
});
|
|
66751
|
+
RunAgentAgentsExecuteOn$inboundSchema = nativeEnumType(RunAgentAgentsExecuteOn);
|
|
66752
|
+
RunAgentAgentsExecuteOn$outboundSchema = RunAgentAgentsExecuteOn$inboundSchema;
|
|
66753
|
+
RunAgentGuardrails$inboundSchema = objectType({
|
|
66754
|
+
id: stringType(),
|
|
66755
|
+
sample_rate: numberType().default(50),
|
|
66756
|
+
execute_on: RunAgentAgentsExecuteOn$inboundSchema
|
|
66757
|
+
}).transform((v2) => {
|
|
66758
|
+
return remap(v2, {
|
|
66759
|
+
sample_rate: "sampleRate",
|
|
66760
|
+
execute_on: "executeOn"
|
|
66761
|
+
});
|
|
66762
|
+
});
|
|
66763
|
+
RunAgentGuardrails$outboundSchema = objectType({
|
|
66764
|
+
id: stringType(),
|
|
66765
|
+
sampleRate: numberType().default(50),
|
|
66766
|
+
executeOn: RunAgentAgentsExecuteOn$outboundSchema
|
|
66767
|
+
}).transform((v2) => {
|
|
66768
|
+
return remap(v2, {
|
|
66769
|
+
sampleRate: "sample_rate",
|
|
66770
|
+
executeOn: "execute_on"
|
|
66771
|
+
});
|
|
66772
|
+
});
|
|
66437
66773
|
RunAgentSettings$inboundSchema = objectType({
|
|
66438
66774
|
tools: arrayType(unionType([
|
|
66439
66775
|
lazyType(() => HTTPToolRun$inboundSchema),
|
|
@@ -66453,7 +66789,9 @@ var init_runagent = __esm(() => {
|
|
|
66453
66789
|
])).optional(),
|
|
66454
66790
|
tool_approval_required: RunAgentToolApprovalRequired$inboundSchema.default("none"),
|
|
66455
66791
|
max_iterations: numberType().int().default(15),
|
|
66456
|
-
max_execution_time: numberType().int().default(300)
|
|
66792
|
+
max_execution_time: numberType().int().default(300),
|
|
66793
|
+
evaluators: arrayType(lazyType(() => RunAgentEvaluators$inboundSchema)).optional(),
|
|
66794
|
+
guardrails: arrayType(lazyType(() => RunAgentGuardrails$inboundSchema)).optional()
|
|
66457
66795
|
}).transform((v2) => {
|
|
66458
66796
|
return remap(v2, {
|
|
66459
66797
|
tool_approval_required: "toolApprovalRequired",
|
|
@@ -66480,7 +66818,9 @@ var init_runagent = __esm(() => {
|
|
|
66480
66818
|
])).optional(),
|
|
66481
66819
|
toolApprovalRequired: RunAgentToolApprovalRequired$outboundSchema.default("none"),
|
|
66482
66820
|
maxIterations: numberType().int().default(15),
|
|
66483
|
-
maxExecutionTime: numberType().int().default(300)
|
|
66821
|
+
maxExecutionTime: numberType().int().default(300),
|
|
66822
|
+
evaluators: arrayType(lazyType(() => RunAgentEvaluators$outboundSchema)).optional(),
|
|
66823
|
+
guardrails: arrayType(lazyType(() => RunAgentGuardrails$outboundSchema)).optional()
|
|
66484
66824
|
}).transform((v2) => {
|
|
66485
66825
|
return remap(v2, {
|
|
66486
66826
|
toolApprovalRequired: "tool_approval_required",
|
|
@@ -67511,7 +67851,7 @@ var init_streamagent2 = __esm(() => {
|
|
|
67511
67851
|
});
|
|
67512
67852
|
|
|
67513
67853
|
// src/models/operations/streamrunagent.ts
|
|
67514
|
-
var StreamRunAgentModelConfigurationVoice, StreamRunAgentModelConfigurationFormat, StreamRunAgentResponseFormatAgentsRequestType, StreamRunAgentResponseFormatAgentsType, StreamRunAgentResponseFormatType, StreamRunAgentModelConfigurationType, StreamRunAgentToolChoiceType, StreamRunAgentToolChoice1, StreamRunAgentModelConfigurationModalities, StreamRunAgentFallbackModelConfigurationVoice, StreamRunAgentFallbackModelConfigurationFormat, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, StreamRunAgentResponseFormatAgentsRequestRequestBodyType, StreamRunAgentFallbackModelConfigurationType, StreamRunAgentToolChoiceAgentsType, StreamRunAgentToolChoiceAgents1, StreamRunAgentFallbackModelConfigurationModalities, StreamRunAgentRoleToolMessage, StreamRunAgentRoleUserMessage, StreamRunAgentPublicMessagePartAgentsRequestKind, StreamRunAgentPublicMessagePartAgentsKind, StreamRunAgentPublicMessagePartKind, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, AgentToolInputRunLanguage, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, AgentToolInputRunMethod, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType, StreamRunAgentAgentToolInputRunAgentsRequestType, StreamRunAgentAgentToolInputRunAgentsType, StreamRunAgentAgentToolInputRunType, StreamRunAgentToolApprovalRequired, StreamRunAgentModelConfigurationVoice$inboundSchema, StreamRunAgentModelConfigurationVoice$outboundSchema, StreamRunAgentModelConfigurationFormat$inboundSchema, StreamRunAgentModelConfigurationFormat$outboundSchema, StreamRunAgentModelConfigurationAudio$inboundSchema, StreamRunAgentModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestType$outboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema, StreamRunAgentResponseFormatJSONSchema$inboundSchema, StreamRunAgentResponseFormatJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsType$inboundSchema, StreamRunAgentResponseFormatAgentsType$outboundSchema, StreamRunAgentResponseFormatJSONObject$inboundSchema, StreamRunAgentResponseFormatJSONObject$outboundSchema, StreamRunAgentResponseFormatType$inboundSchema, StreamRunAgentResponseFormatType$outboundSchema, StreamRunAgentResponseFormatText$inboundSchema, StreamRunAgentResponseFormatText$outboundSchema, StreamRunAgentModelConfigurationResponseFormat$inboundSchema, StreamRunAgentModelConfigurationResponseFormat$outboundSchema, StreamRunAgentModelConfigurationStop$inboundSchema, StreamRunAgentModelConfigurationStop$outboundSchema, StreamRunAgentModelConfigurationStreamOptions$inboundSchema, StreamRunAgentModelConfigurationStreamOptions$outboundSchema, StreamRunAgentModelConfigurationType$inboundSchema, StreamRunAgentModelConfigurationType$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, StreamRunAgentModelConfigurationParameters$inboundSchema, StreamRunAgentModelConfigurationParameters$outboundSchema, StreamRunAgentModelConfiguration2$inboundSchema, StreamRunAgentModelConfiguration2$outboundSchema, StreamRunAgentModelConfiguration$inboundSchema, StreamRunAgentModelConfiguration$outboundSchema, StreamRunAgentFallbackModelConfigurationVoice$inboundSchema, StreamRunAgentFallbackModelConfigurationVoice$outboundSchema, StreamRunAgentFallbackModelConfigurationFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationAudio$inboundSchema, StreamRunAgentFallbackModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$inboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentResponseFormatAgentsText$inboundSchema, StreamRunAgentResponseFormatAgentsText$outboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationStop$inboundSchema, StreamRunAgentFallbackModelConfigurationStop$outboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$inboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$outboundSchema, StreamRunAgentFallbackModelConfigurationType$inboundSchema, StreamRunAgentFallbackModelConfigurationType$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, StreamRunAgentFallbackModelConfigurationParameters$inboundSchema, StreamRunAgentFallbackModelConfigurationParameters$outboundSchema, StreamRunAgentFallbackModelConfiguration2$inboundSchema, StreamRunAgentFallbackModelConfiguration2$outboundSchema, StreamRunAgentFallbackModelConfiguration$inboundSchema, StreamRunAgentFallbackModelConfiguration$outboundSchema, StreamRunAgentRoleToolMessage$inboundSchema, StreamRunAgentRoleToolMessage$outboundSchema, StreamRunAgentRoleUserMessage$inboundSchema, StreamRunAgentRoleUserMessage$outboundSchema, StreamRunAgentRole$inboundSchema, StreamRunAgentRole$outboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$outboundSchema, StreamRunAgentPublicMessagePartToolResultPart$inboundSchema, StreamRunAgentPublicMessagePartToolResultPart$outboundSchema, StreamRunAgentPublicMessagePartAgentsKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsKind$outboundSchema, StreamRunAgentFileFileInURIFormat$inboundSchema, StreamRunAgentFileFileInURIFormat$outboundSchema, StreamRunAgentFileBinaryFormat$inboundSchema, StreamRunAgentFileBinaryFormat$outboundSchema, StreamRunAgentPublicMessagePartFile$inboundSchema, StreamRunAgentPublicMessagePartFile$outboundSchema, StreamRunAgentPublicMessagePartFilePart$inboundSchema, StreamRunAgentPublicMessagePartFilePart$outboundSchema, StreamRunAgentPublicMessagePartKind$inboundSchema, StreamRunAgentPublicMessagePartKind$outboundSchema, StreamRunAgentPublicMessagePartTextPart$inboundSchema, StreamRunAgentPublicMessagePartTextPart$outboundSchema, StreamRunAgentPublicMessagePart$inboundSchema, StreamRunAgentPublicMessagePart$outboundSchema, StreamRunAgentMessage$inboundSchema, StreamRunAgentMessage$outboundSchema, StreamRunAgentContact$inboundSchema, StreamRunAgentContact$outboundSchema, StreamRunAgentThread$inboundSchema, StreamRunAgentThread$outboundSchema, StreamRunAgentMemory$inboundSchema, StreamRunAgentMemory$outboundSchema, StreamRunAgentKnowledgeBases$inboundSchema, StreamRunAgentKnowledgeBases$outboundSchema, StreamRunAgentTeamOfAgents$inboundSchema, StreamRunAgentTeamOfAgents$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, StreamRunAgentAgentToolInputRunFunction$inboundSchema, StreamRunAgentAgentToolInputRunFunction$outboundSchema, AgentToolInputRunFunctionToolRun$inboundSchema, AgentToolInputRunFunctionToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, AgentToolInputRunLanguage$inboundSchema, AgentToolInputRunLanguage$outboundSchema, AgentToolInputRunCodeTool$inboundSchema, AgentToolInputRunCodeTool$outboundSchema, AgentToolInputRunCodeToolRun$inboundSchema, AgentToolInputRunCodeToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, AgentToolInputRunMethod$inboundSchema, AgentToolInputRunMethod$outboundSchema, AgentToolInputRunHeaders$inboundSchema, AgentToolInputRunHeaders$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, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsType$outboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema, StreamRunAgentAgentToolInputRunType$inboundSchema, StreamRunAgentAgentToolInputRunType$outboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$inboundSchema, StreamRunAgentAgentToolInputRunGoogleSearchTool$outboundSchema, StreamRunAgentAgentToolInputRun$inboundSchema, StreamRunAgentAgentToolInputRun$outboundSchema, StreamRunAgentToolApprovalRequired$inboundSchema, StreamRunAgentToolApprovalRequired$outboundSchema, StreamRunAgentSettings$inboundSchema, StreamRunAgentSettings$outboundSchema, StreamRunAgentRequestBody$inboundSchema, StreamRunAgentRequestBody$outboundSchema, StreamRunAgentResponseBody$inboundSchema2, StreamRunAgentResponseBody$outboundSchema2;
|
|
67854
|
+
var StreamRunAgentModelConfigurationVoice, StreamRunAgentModelConfigurationFormat, StreamRunAgentResponseFormatAgentsRequestType, StreamRunAgentResponseFormatAgentsType, StreamRunAgentResponseFormatType, StreamRunAgentModelConfigurationType, StreamRunAgentToolChoiceType, StreamRunAgentToolChoice1, StreamRunAgentModelConfigurationModalities, StreamRunAgentFallbackModelConfigurationVoice, StreamRunAgentFallbackModelConfigurationFormat, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, StreamRunAgentResponseFormatAgentsRequestRequestBodyType, StreamRunAgentFallbackModelConfigurationType, StreamRunAgentToolChoiceAgentsType, StreamRunAgentToolChoiceAgents1, StreamRunAgentFallbackModelConfigurationModalities, StreamRunAgentRoleToolMessage, StreamRunAgentRoleUserMessage, StreamRunAgentPublicMessagePartAgentsRequestKind, StreamRunAgentPublicMessagePartAgentsKind, StreamRunAgentPublicMessagePartKind, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type, AgentToolInputRunLanguage, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type, AgentToolInputRunMethod, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12HttpType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType, StreamRunAgentAgentToolInputRunAgentsRequestType, StreamRunAgentAgentToolInputRunAgentsType, StreamRunAgentAgentToolInputRunType, StreamRunAgentToolApprovalRequired, StreamRunAgentExecuteOn, StreamRunAgentAgentsExecuteOn, StreamRunAgentModelConfigurationVoice$inboundSchema, StreamRunAgentModelConfigurationVoice$outboundSchema, StreamRunAgentModelConfigurationFormat$inboundSchema, StreamRunAgentModelConfigurationFormat$outboundSchema, StreamRunAgentModelConfigurationAudio$inboundSchema, StreamRunAgentModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestType$outboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsJsonSchema$outboundSchema, StreamRunAgentResponseFormatJSONSchema$inboundSchema, StreamRunAgentResponseFormatJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsType$inboundSchema, StreamRunAgentResponseFormatAgentsType$outboundSchema, StreamRunAgentResponseFormatJSONObject$inboundSchema, StreamRunAgentResponseFormatJSONObject$outboundSchema, StreamRunAgentResponseFormatType$inboundSchema, StreamRunAgentResponseFormatType$outboundSchema, StreamRunAgentResponseFormatText$inboundSchema, StreamRunAgentResponseFormatText$outboundSchema, StreamRunAgentModelConfigurationResponseFormat$inboundSchema, StreamRunAgentModelConfigurationResponseFormat$outboundSchema, StreamRunAgentModelConfigurationStop$inboundSchema, StreamRunAgentModelConfigurationStop$outboundSchema, StreamRunAgentModelConfigurationStreamOptions$inboundSchema, StreamRunAgentModelConfigurationStreamOptions$outboundSchema, StreamRunAgentModelConfigurationType$inboundSchema, StreamRunAgentModelConfigurationType$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, StreamRunAgentModelConfigurationParameters$inboundSchema, StreamRunAgentModelConfigurationParameters$outboundSchema, StreamRunAgentModelConfiguration2$inboundSchema, StreamRunAgentModelConfiguration2$outboundSchema, StreamRunAgentModelConfiguration$inboundSchema, StreamRunAgentModelConfiguration$outboundSchema, StreamRunAgentFallbackModelConfigurationVoice$inboundSchema, StreamRunAgentFallbackModelConfigurationVoice$outboundSchema, StreamRunAgentFallbackModelConfigurationFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationAudio$inboundSchema, StreamRunAgentFallbackModelConfigurationAudio$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, StreamRunAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$inboundSchema, StreamRunAgentResponseFormatAgentsJSONObject$outboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentResponseFormatAgentsText$inboundSchema, StreamRunAgentResponseFormatAgentsText$outboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$inboundSchema, StreamRunAgentFallbackModelConfigurationResponseFormat$outboundSchema, StreamRunAgentFallbackModelConfigurationStop$inboundSchema, StreamRunAgentFallbackModelConfigurationStop$outboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$inboundSchema, StreamRunAgentFallbackModelConfigurationStreamOptions$outboundSchema, StreamRunAgentFallbackModelConfigurationType$inboundSchema, StreamRunAgentFallbackModelConfigurationType$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, StreamRunAgentFallbackModelConfigurationParameters$inboundSchema, StreamRunAgentFallbackModelConfigurationParameters$outboundSchema, StreamRunAgentFallbackModelConfiguration2$inboundSchema, StreamRunAgentFallbackModelConfiguration2$outboundSchema, StreamRunAgentFallbackModelConfiguration$inboundSchema, StreamRunAgentFallbackModelConfiguration$outboundSchema, StreamRunAgentRoleToolMessage$inboundSchema, StreamRunAgentRoleToolMessage$outboundSchema, StreamRunAgentRoleUserMessage$inboundSchema, StreamRunAgentRoleUserMessage$outboundSchema, StreamRunAgentRole$inboundSchema, StreamRunAgentRole$outboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsRequestKind$outboundSchema, StreamRunAgentPublicMessagePartToolResultPart$inboundSchema, StreamRunAgentPublicMessagePartToolResultPart$outboundSchema, StreamRunAgentPublicMessagePartAgentsKind$inboundSchema, StreamRunAgentPublicMessagePartAgentsKind$outboundSchema, StreamRunAgentFileFileInURIFormat$inboundSchema, StreamRunAgentFileFileInURIFormat$outboundSchema, StreamRunAgentFileBinaryFormat$inboundSchema, StreamRunAgentFileBinaryFormat$outboundSchema, StreamRunAgentPublicMessagePartFile$inboundSchema, StreamRunAgentPublicMessagePartFile$outboundSchema, StreamRunAgentPublicMessagePartFilePart$inboundSchema, StreamRunAgentPublicMessagePartFilePart$outboundSchema, StreamRunAgentPublicMessagePartKind$inboundSchema, StreamRunAgentPublicMessagePartKind$outboundSchema, StreamRunAgentPublicMessagePartTextPart$inboundSchema, StreamRunAgentPublicMessagePartTextPart$outboundSchema, StreamRunAgentPublicMessagePart$inboundSchema, StreamRunAgentPublicMessagePart$outboundSchema, StreamRunAgentMessage$inboundSchema, StreamRunAgentMessage$outboundSchema, StreamRunAgentContact$inboundSchema, StreamRunAgentContact$outboundSchema, StreamRunAgentThread$inboundSchema, StreamRunAgentThread$outboundSchema, StreamRunAgentMemory$inboundSchema, StreamRunAgentMemory$outboundSchema, StreamRunAgentKnowledgeBases$inboundSchema, StreamRunAgentKnowledgeBases$outboundSchema, StreamRunAgentTeamOfAgents$inboundSchema, StreamRunAgentTeamOfAgents$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools14Type$outboundSchema, StreamRunAgentAgentToolInputRunFunction$inboundSchema, StreamRunAgentAgentToolInputRunFunction$outboundSchema, AgentToolInputRunFunctionToolRun$inboundSchema, AgentToolInputRunFunctionToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Type$outboundSchema, AgentToolInputRunLanguage$inboundSchema, AgentToolInputRunLanguage$outboundSchema, AgentToolInputRunCodeTool$inboundSchema, AgentToolInputRunCodeTool$outboundSchema, AgentToolInputRunCodeToolRun$inboundSchema, AgentToolInputRunCodeToolRun$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools12Type$outboundSchema, AgentToolInputRunMethod$inboundSchema, AgentToolInputRunMethod$outboundSchema, AgentToolInputRunHeaders$inboundSchema, AgentToolInputRunHeaders$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, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools11Type$outboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$inboundSchema, StreamRunAgentAgentToolInputRunCurrentDateTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools10Type$outboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryKnowledgeBaseTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools9Type$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveKnowledgeBasesTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools8Type$outboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$inboundSchema, StreamRunAgentAgentToolInputRunDeleteMemoryDocumentTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools7Type$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveMemoryStoresTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsToolsType$outboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunWriteMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodySettingsType$outboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$inboundSchema, StreamRunAgentAgentToolInputRunQueryMemoryStoreTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestRequestBodyType$outboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$inboundSchema, StreamRunAgentAgentToolInputRunRetrieveAgentsTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsRequestType$outboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$inboundSchema, StreamRunAgentAgentToolInputRunCallSubAgentTool$outboundSchema, StreamRunAgentAgentToolInputRunAgentsType$inboundSchema, StreamRunAgentAgentToolInputRunAgentsType$outboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$inboundSchema, StreamRunAgentAgentToolInputRunWebScraperTool$outboundSchema, StreamRunAgentAgentToolInputRunType$inboundSchema, StreamRunAgentAgentToolInputRunType$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, StreamRunAgentResponseBody$inboundSchema2, StreamRunAgentResponseBody$outboundSchema2;
|
|
67515
67855
|
var init_streamrunagent2 = __esm(() => {
|
|
67516
67856
|
init_esm();
|
|
67517
67857
|
init_primitives();
|
|
@@ -67671,6 +68011,14 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
67671
68011
|
RespectTool: "respect_tool",
|
|
67672
68012
|
None: "none"
|
|
67673
68013
|
};
|
|
68014
|
+
StreamRunAgentExecuteOn = {
|
|
68015
|
+
Input: "input",
|
|
68016
|
+
Output: "output"
|
|
68017
|
+
};
|
|
68018
|
+
StreamRunAgentAgentsExecuteOn = {
|
|
68019
|
+
Input: "input",
|
|
68020
|
+
Output: "output"
|
|
68021
|
+
};
|
|
67674
68022
|
StreamRunAgentModelConfigurationVoice$inboundSchema = nativeEnumType(StreamRunAgentModelConfigurationVoice);
|
|
67675
68023
|
StreamRunAgentModelConfigurationVoice$outboundSchema = StreamRunAgentModelConfigurationVoice$inboundSchema;
|
|
67676
68024
|
StreamRunAgentModelConfigurationFormat$inboundSchema = nativeEnumType(StreamRunAgentModelConfigurationFormat);
|
|
@@ -68747,6 +69095,50 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
68747
69095
|
]);
|
|
68748
69096
|
StreamRunAgentToolApprovalRequired$inboundSchema = nativeEnumType(StreamRunAgentToolApprovalRequired);
|
|
68749
69097
|
StreamRunAgentToolApprovalRequired$outboundSchema = StreamRunAgentToolApprovalRequired$inboundSchema;
|
|
69098
|
+
StreamRunAgentExecuteOn$inboundSchema = nativeEnumType(StreamRunAgentExecuteOn);
|
|
69099
|
+
StreamRunAgentExecuteOn$outboundSchema = StreamRunAgentExecuteOn$inboundSchema;
|
|
69100
|
+
StreamRunAgentEvaluators$inboundSchema = objectType({
|
|
69101
|
+
id: stringType(),
|
|
69102
|
+
sample_rate: numberType().default(50),
|
|
69103
|
+
execute_on: StreamRunAgentExecuteOn$inboundSchema
|
|
69104
|
+
}).transform((v2) => {
|
|
69105
|
+
return remap(v2, {
|
|
69106
|
+
sample_rate: "sampleRate",
|
|
69107
|
+
execute_on: "executeOn"
|
|
69108
|
+
});
|
|
69109
|
+
});
|
|
69110
|
+
StreamRunAgentEvaluators$outboundSchema = objectType({
|
|
69111
|
+
id: stringType(),
|
|
69112
|
+
sampleRate: numberType().default(50),
|
|
69113
|
+
executeOn: StreamRunAgentExecuteOn$outboundSchema
|
|
69114
|
+
}).transform((v2) => {
|
|
69115
|
+
return remap(v2, {
|
|
69116
|
+
sampleRate: "sample_rate",
|
|
69117
|
+
executeOn: "execute_on"
|
|
69118
|
+
});
|
|
69119
|
+
});
|
|
69120
|
+
StreamRunAgentAgentsExecuteOn$inboundSchema = nativeEnumType(StreamRunAgentAgentsExecuteOn);
|
|
69121
|
+
StreamRunAgentAgentsExecuteOn$outboundSchema = StreamRunAgentAgentsExecuteOn$inboundSchema;
|
|
69122
|
+
StreamRunAgentGuardrails$inboundSchema = objectType({
|
|
69123
|
+
id: stringType(),
|
|
69124
|
+
sample_rate: numberType().default(50),
|
|
69125
|
+
execute_on: StreamRunAgentAgentsExecuteOn$inboundSchema
|
|
69126
|
+
}).transform((v2) => {
|
|
69127
|
+
return remap(v2, {
|
|
69128
|
+
sample_rate: "sampleRate",
|
|
69129
|
+
execute_on: "executeOn"
|
|
69130
|
+
});
|
|
69131
|
+
});
|
|
69132
|
+
StreamRunAgentGuardrails$outboundSchema = objectType({
|
|
69133
|
+
id: stringType(),
|
|
69134
|
+
sampleRate: numberType().default(50),
|
|
69135
|
+
executeOn: StreamRunAgentAgentsExecuteOn$outboundSchema
|
|
69136
|
+
}).transform((v2) => {
|
|
69137
|
+
return remap(v2, {
|
|
69138
|
+
sampleRate: "sample_rate",
|
|
69139
|
+
executeOn: "execute_on"
|
|
69140
|
+
});
|
|
69141
|
+
});
|
|
68750
69142
|
StreamRunAgentSettings$inboundSchema = objectType({
|
|
68751
69143
|
tools: arrayType(unionType([
|
|
68752
69144
|
lazyType(() => AgentToolInputRunHTTPToolRun$inboundSchema),
|
|
@@ -68766,7 +69158,9 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
68766
69158
|
])).optional(),
|
|
68767
69159
|
tool_approval_required: StreamRunAgentToolApprovalRequired$inboundSchema.default("none"),
|
|
68768
69160
|
max_iterations: numberType().int().default(15),
|
|
68769
|
-
max_execution_time: numberType().int().default(300)
|
|
69161
|
+
max_execution_time: numberType().int().default(300),
|
|
69162
|
+
evaluators: arrayType(lazyType(() => StreamRunAgentEvaluators$inboundSchema)).optional(),
|
|
69163
|
+
guardrails: arrayType(lazyType(() => StreamRunAgentGuardrails$inboundSchema)).optional()
|
|
68770
69164
|
}).transform((v2) => {
|
|
68771
69165
|
return remap(v2, {
|
|
68772
69166
|
tool_approval_required: "toolApprovalRequired",
|
|
@@ -68793,7 +69187,9 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
68793
69187
|
])).optional(),
|
|
68794
69188
|
toolApprovalRequired: StreamRunAgentToolApprovalRequired$outboundSchema.default("none"),
|
|
68795
69189
|
maxIterations: numberType().int().default(15),
|
|
68796
|
-
maxExecutionTime: numberType().int().default(300)
|
|
69190
|
+
maxExecutionTime: numberType().int().default(300),
|
|
69191
|
+
evaluators: arrayType(lazyType(() => StreamRunAgentEvaluators$outboundSchema)).optional(),
|
|
69192
|
+
guardrails: arrayType(lazyType(() => StreamRunAgentGuardrails$outboundSchema)).optional()
|
|
68797
69193
|
}).transform((v2) => {
|
|
68798
69194
|
return remap(v2, {
|
|
68799
69195
|
toolApprovalRequired: "tool_approval_required",
|
|
@@ -68886,7 +69282,7 @@ var init_streamrunagent2 = __esm(() => {
|
|
|
68886
69282
|
});
|
|
68887
69283
|
|
|
68888
69284
|
// src/models/operations/updateagent.ts
|
|
68889
|
-
var ModelConfigurationVoice, UpdateAgentModelConfigurationFormat, UpdateAgentResponseFormatAgentsRequestType, UpdateAgentResponseFormatAgentsType, UpdateAgentResponseFormatType, UpdateAgentModelConfigurationType, UpdateAgentToolChoiceType, UpdateAgentToolChoice1, ModelConfigurationModalities, UpdateAgentFallbackModelConfigurationVoice, UpdateAgentFallbackModelConfigurationFormat, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, UpdateAgentResponseFormatAgentsRequestRequestBodyType, UpdateAgentFallbackModelConfigurationType, UpdateAgentToolChoiceAgentsType, UpdateAgentToolChoiceAgents1, UpdateAgentFallbackModelConfigurationModalities, UpdateAgentToolApprovalRequired, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, UpdateAgentAgentToolInputCRUDAgentsRequestType, UpdateAgentAgentToolInputCRUDAgentsType, UpdateAgentAgentToolInputCRUDType, CollapsedConfigurationSections, UpdateAgentStatus, UpdateAgentAgentsToolApprovalRequired, UpdateAgentVoice, UpdateAgentFormat, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType, UpdateAgentResponseFormatAgentsResponse200Type, UpdateAgentResponseFormatAgentsResponseType, UpdateAgentType, UpdateAgentToolChoiceAgentsResponseType, UpdateAgentToolChoiceAgentsResponse1, UpdateAgentModalities, UpdateAgentFallbackModelConfigurationAgentsVoice, UpdateAgentFallbackModelConfigurationAgentsFormat, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType, UpdateAgentFallbackModelConfigurationAgentsType, UpdateAgentToolChoiceAgentsResponse200Type, UpdateAgentToolChoiceAgentsResponse2001, UpdateAgentFallbackModelConfigurationAgentsModalities, UpdateAgentCollapsedConfigurationSections, ModelConfigurationVoice$inboundSchema, ModelConfigurationVoice$outboundSchema, UpdateAgentModelConfigurationFormat$inboundSchema, UpdateAgentModelConfigurationFormat$outboundSchema, UpdateAgentModelConfigurationAudio$inboundSchema, UpdateAgentModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestType$inboundSchema, UpdateAgentResponseFormatAgentsRequestType$outboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema, UpdateAgentResponseFormatJSONSchema$inboundSchema, UpdateAgentResponseFormatJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsType$inboundSchema, UpdateAgentResponseFormatAgentsType$outboundSchema, UpdateAgentResponseFormatJSONObject$inboundSchema, UpdateAgentResponseFormatJSONObject$outboundSchema, UpdateAgentResponseFormatType$inboundSchema, UpdateAgentResponseFormatType$outboundSchema, UpdateAgentResponseFormatText$inboundSchema, UpdateAgentResponseFormatText$outboundSchema, ModelConfigurationResponseFormat$inboundSchema, ModelConfigurationResponseFormat$outboundSchema, ModelConfigurationStop$inboundSchema, ModelConfigurationStop$outboundSchema, ModelConfigurationStreamOptions$inboundSchema, ModelConfigurationStreamOptions$outboundSchema, UpdateAgentModelConfigurationType$inboundSchema, UpdateAgentModelConfigurationType$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, ModelConfigurationParameters$inboundSchema, ModelConfigurationParameters$outboundSchema, UpdateAgentModelConfiguration2$inboundSchema, UpdateAgentModelConfiguration2$outboundSchema, UpdateAgentModelConfiguration$inboundSchema, UpdateAgentModelConfiguration$outboundSchema, UpdateAgentFallbackModelConfigurationVoice$inboundSchema, UpdateAgentFallbackModelConfigurationVoice$outboundSchema, UpdateAgentFallbackModelConfigurationFormat$inboundSchema, UpdateAgentFallbackModelConfigurationFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, UpdateAgentResponseFormatAgentsJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, UpdateAgentResponseFormatAgentsText$inboundSchema, UpdateAgentResponseFormatAgentsText$outboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationStop$inboundSchema, UpdateAgentFallbackModelConfigurationStop$outboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationType$inboundSchema, UpdateAgentFallbackModelConfigurationType$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, UpdateAgentFallbackModelConfigurationParameters$inboundSchema, UpdateAgentFallbackModelConfigurationParameters$outboundSchema, UpdateAgentFallbackModelConfiguration2$inboundSchema, UpdateAgentFallbackModelConfiguration2$outboundSchema, UpdateAgentFallbackModelConfiguration$inboundSchema, UpdateAgentFallbackModelConfiguration$outboundSchema, UpdateAgentToolApprovalRequired$inboundSchema, UpdateAgentToolApprovalRequired$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, UpdateAgentSettings$inboundSchema, UpdateAgentSettings$outboundSchema, UpdateAgentKnowledgeBases$inboundSchema, UpdateAgentKnowledgeBases$outboundSchema, UpdateAgentTeamOfAgents$inboundSchema, UpdateAgentTeamOfAgents$outboundSchema, CollapsedConfigurationSections$inboundSchema, CollapsedConfigurationSections$outboundSchema, UpdateAgentRequestBody$inboundSchema, UpdateAgentRequestBody$outboundSchema, UpdateAgentRequest$inboundSchema, UpdateAgentRequest$outboundSchema, UpdateAgentStatus$inboundSchema, UpdateAgentStatus$outboundSchema, UpdateAgentAgentsToolApprovalRequired$inboundSchema, UpdateAgentAgentsToolApprovalRequired$outboundSchema, UpdateAgentConditions$inboundSchema, UpdateAgentConditions$outboundSchema, UpdateAgentTools$inboundSchema, UpdateAgentTools$outboundSchema, UpdateAgentAgentsSettings$inboundSchema, UpdateAgentAgentsSettings$outboundSchema, UpdateAgentVoice$inboundSchema, UpdateAgentVoice$outboundSchema, UpdateAgentFormat$inboundSchema, UpdateAgentFormat$outboundSchema, UpdateAgentAudio$inboundSchema, UpdateAgentAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$outboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Type$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Type$outboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponseType$inboundSchema, UpdateAgentResponseFormatAgentsResponseType$outboundSchema, UpdateAgentResponseFormatAgentsResponseText$inboundSchema, UpdateAgentResponseFormatAgentsResponseText$outboundSchema, UpdateAgentResponseFormat$inboundSchema, UpdateAgentResponseFormat$outboundSchema, UpdateAgentStop$inboundSchema, UpdateAgentStop$outboundSchema, UpdateAgentStreamOptions$inboundSchema, UpdateAgentStreamOptions$outboundSchema, UpdateAgentType$inboundSchema, UpdateAgentType$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, UpdateAgentParameters$inboundSchema, UpdateAgentParameters$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsType$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsType$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, UpdateAgentFallbackModelConfigurationAgentsParameters$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$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, UpdateAgentCollapsedConfigurationSections$inboundSchema, UpdateAgentCollapsedConfigurationSections$outboundSchema, UpdateAgentResponseBody$inboundSchema2, UpdateAgentResponseBody$outboundSchema2;
|
|
69285
|
+
var ModelConfigurationVoice, UpdateAgentModelConfigurationFormat, UpdateAgentResponseFormatAgentsRequestType, UpdateAgentResponseFormatAgentsType, UpdateAgentResponseFormatType, UpdateAgentModelConfigurationType, UpdateAgentToolChoiceType, UpdateAgentToolChoice1, ModelConfigurationModalities, UpdateAgentFallbackModelConfigurationVoice, UpdateAgentFallbackModelConfigurationFormat, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType, UpdateAgentResponseFormatAgentsRequestRequestBodyType, UpdateAgentFallbackModelConfigurationType, UpdateAgentToolChoiceAgentsType, UpdateAgentToolChoiceAgents1, UpdateAgentFallbackModelConfigurationModalities, UpdateAgentToolApprovalRequired, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools13Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools12Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsTools7Type, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodySettingsType, UpdateAgentAgentToolInputCRUDAgentsRequestRequestBodyType, UpdateAgentAgentToolInputCRUDAgentsRequestType, UpdateAgentAgentToolInputCRUDAgentsType, UpdateAgentAgentToolInputCRUDType, UpdateAgentExecuteOn, UpdateAgentAgentsExecuteOn, CollapsedConfigurationSections, UpdateAgentStatus, UpdateAgentAgentsToolApprovalRequired, UpdateAgentAgentsResponseExecuteOn, UpdateAgentAgentsResponse200ExecuteOn, UpdateAgentVoice, UpdateAgentFormat, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType, UpdateAgentResponseFormatAgentsResponse200Type, UpdateAgentResponseFormatAgentsResponseType, UpdateAgentType, UpdateAgentToolChoiceAgentsResponseType, UpdateAgentToolChoiceAgentsResponse1, UpdateAgentModalities, UpdateAgentFallbackModelConfigurationAgentsVoice, UpdateAgentFallbackModelConfigurationAgentsFormat, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType, UpdateAgentFallbackModelConfigurationAgentsType, UpdateAgentToolChoiceAgentsResponse200Type, UpdateAgentToolChoiceAgentsResponse2001, UpdateAgentFallbackModelConfigurationAgentsModalities, UpdateAgentCollapsedConfigurationSections, ModelConfigurationVoice$inboundSchema, ModelConfigurationVoice$outboundSchema, UpdateAgentModelConfigurationFormat$inboundSchema, UpdateAgentModelConfigurationFormat$outboundSchema, UpdateAgentModelConfigurationAudio$inboundSchema, UpdateAgentModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestType$inboundSchema, UpdateAgentResponseFormatAgentsRequestType$outboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsJsonSchema$outboundSchema, UpdateAgentResponseFormatJSONSchema$inboundSchema, UpdateAgentResponseFormatJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsType$inboundSchema, UpdateAgentResponseFormatAgentsType$outboundSchema, UpdateAgentResponseFormatJSONObject$inboundSchema, UpdateAgentResponseFormatJSONObject$outboundSchema, UpdateAgentResponseFormatType$inboundSchema, UpdateAgentResponseFormatType$outboundSchema, UpdateAgentResponseFormatText$inboundSchema, UpdateAgentResponseFormatText$outboundSchema, ModelConfigurationResponseFormat$inboundSchema, ModelConfigurationResponseFormat$outboundSchema, ModelConfigurationStop$inboundSchema, ModelConfigurationStop$outboundSchema, ModelConfigurationStreamOptions$inboundSchema, ModelConfigurationStreamOptions$outboundSchema, UpdateAgentModelConfigurationType$inboundSchema, UpdateAgentModelConfigurationType$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, ModelConfigurationParameters$inboundSchema, ModelConfigurationParameters$outboundSchema, UpdateAgentModelConfiguration2$inboundSchema, UpdateAgentModelConfiguration2$outboundSchema, UpdateAgentModelConfiguration$inboundSchema, UpdateAgentModelConfiguration$outboundSchema, UpdateAgentFallbackModelConfigurationVoice$inboundSchema, UpdateAgentFallbackModelConfigurationVoice$outboundSchema, UpdateAgentFallbackModelConfigurationFormat$inboundSchema, UpdateAgentFallbackModelConfigurationFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAudio$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsFallbackModelConfigurationType$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsRequestJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyFallbackModelsType$outboundSchema, UpdateAgentResponseFormatAgentsJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyType$inboundSchema, UpdateAgentResponseFormatAgentsRequestRequestBodyType$outboundSchema, UpdateAgentResponseFormatAgentsText$inboundSchema, UpdateAgentResponseFormatAgentsText$outboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationStop$inboundSchema, UpdateAgentFallbackModelConfigurationStop$outboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationType$inboundSchema, UpdateAgentFallbackModelConfigurationType$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, UpdateAgentFallbackModelConfigurationParameters$inboundSchema, UpdateAgentFallbackModelConfigurationParameters$outboundSchema, UpdateAgentFallbackModelConfiguration2$inboundSchema, UpdateAgentFallbackModelConfiguration2$outboundSchema, UpdateAgentFallbackModelConfiguration$inboundSchema, UpdateAgentFallbackModelConfiguration$outboundSchema, UpdateAgentToolApprovalRequired$inboundSchema, UpdateAgentToolApprovalRequired$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, CollapsedConfigurationSections$inboundSchema, CollapsedConfigurationSections$outboundSchema, UpdateAgentRequestBody$inboundSchema, UpdateAgentRequestBody$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, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONType$outboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponseJsonSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Type$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Type$outboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponseJSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponseType$inboundSchema, UpdateAgentResponseFormatAgentsResponseType$outboundSchema, UpdateAgentResponseFormatAgentsResponseText$inboundSchema, UpdateAgentResponseFormatAgentsResponseText$outboundSchema, UpdateAgentResponseFormat$inboundSchema, UpdateAgentResponseFormat$outboundSchema, UpdateAgentStop$inboundSchema, UpdateAgentStop$outboundSchema, UpdateAgentStreamOptions$inboundSchema, UpdateAgentStreamOptions$outboundSchema, UpdateAgentType$inboundSchema, UpdateAgentType$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, UpdateAgentParameters$inboundSchema, UpdateAgentParameters$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsVoice$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsAudio$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelFallbackModelsType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyJSONSchema$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyModelType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$inboundSchema, UpdateAgentResponseFormatAgentsResponse200JSONObject$outboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateAgentResponseFormatAgentsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$inboundSchema, UpdateAgentResponseFormatAgentsResponse200Text$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsResponseFormat$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStop$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsStreamOptions$outboundSchema, UpdateAgentFallbackModelConfigurationAgentsType$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsType$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, UpdateAgentFallbackModelConfigurationAgentsParameters$inboundSchema, UpdateAgentFallbackModelConfigurationAgentsParameters$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, UpdateAgentCollapsedConfigurationSections$inboundSchema, UpdateAgentCollapsedConfigurationSections$outboundSchema, UpdateAgentResponseBody$inboundSchema2, UpdateAgentResponseBody$outboundSchema2;
|
|
68890
69286
|
var init_updateagent2 = __esm(() => {
|
|
68891
69287
|
init_esm();
|
|
68892
69288
|
init_primitives();
|
|
@@ -69017,12 +69413,22 @@ var init_updateagent2 = __esm(() => {
|
|
|
69017
69413
|
UpdateAgentAgentToolInputCRUDType = {
|
|
69018
69414
|
GoogleSearch: "google_search"
|
|
69019
69415
|
};
|
|
69416
|
+
UpdateAgentExecuteOn = {
|
|
69417
|
+
Input: "input",
|
|
69418
|
+
Output: "output"
|
|
69419
|
+
};
|
|
69420
|
+
UpdateAgentAgentsExecuteOn = {
|
|
69421
|
+
Input: "input",
|
|
69422
|
+
Output: "output"
|
|
69423
|
+
};
|
|
69020
69424
|
CollapsedConfigurationSections = {
|
|
69021
69425
|
Information: "information",
|
|
69022
69426
|
Model: "model",
|
|
69023
69427
|
Tools: "tools",
|
|
69024
69428
|
Context: "context",
|
|
69025
|
-
RuntimeConstraints: "runtime_constraints"
|
|
69429
|
+
RuntimeConstraints: "runtime_constraints",
|
|
69430
|
+
Evaluators: "evaluators",
|
|
69431
|
+
Guardrails: "guardrails"
|
|
69026
69432
|
};
|
|
69027
69433
|
UpdateAgentStatus = {
|
|
69028
69434
|
Live: "live",
|
|
@@ -69035,6 +69441,14 @@ var init_updateagent2 = __esm(() => {
|
|
|
69035
69441
|
RespectTool: "respect_tool",
|
|
69036
69442
|
None: "none"
|
|
69037
69443
|
};
|
|
69444
|
+
UpdateAgentAgentsResponseExecuteOn = {
|
|
69445
|
+
Input: "input",
|
|
69446
|
+
Output: "output"
|
|
69447
|
+
};
|
|
69448
|
+
UpdateAgentAgentsResponse200ExecuteOn = {
|
|
69449
|
+
Input: "input",
|
|
69450
|
+
Output: "output"
|
|
69451
|
+
};
|
|
69038
69452
|
UpdateAgentVoice = {
|
|
69039
69453
|
Alloy: "alloy",
|
|
69040
69454
|
Echo: "echo",
|
|
@@ -69120,7 +69534,9 @@ var init_updateagent2 = __esm(() => {
|
|
|
69120
69534
|
Model: "model",
|
|
69121
69535
|
Tools: "tools",
|
|
69122
69536
|
Context: "context",
|
|
69123
|
-
RuntimeConstraints: "runtime_constraints"
|
|
69537
|
+
RuntimeConstraints: "runtime_constraints",
|
|
69538
|
+
Evaluators: "evaluators",
|
|
69539
|
+
Guardrails: "guardrails"
|
|
69124
69540
|
};
|
|
69125
69541
|
ModelConfigurationVoice$inboundSchema = nativeEnumType(ModelConfigurationVoice);
|
|
69126
69542
|
ModelConfigurationVoice$outboundSchema = ModelConfigurationVoice$inboundSchema;
|
|
@@ -69892,6 +70308,50 @@ var init_updateagent2 = __esm(() => {
|
|
|
69892
70308
|
lazyType(() => AgentToolInputCRUDCodeExecutionTool$outboundSchema),
|
|
69893
70309
|
lazyType(() => AgentToolInputCRUDFunctionTool$outboundSchema)
|
|
69894
70310
|
]);
|
|
70311
|
+
UpdateAgentExecuteOn$inboundSchema = nativeEnumType(UpdateAgentExecuteOn);
|
|
70312
|
+
UpdateAgentExecuteOn$outboundSchema = UpdateAgentExecuteOn$inboundSchema;
|
|
70313
|
+
UpdateAgentEvaluators$inboundSchema = objectType({
|
|
70314
|
+
id: stringType(),
|
|
70315
|
+
sample_rate: numberType().default(50),
|
|
70316
|
+
execute_on: UpdateAgentExecuteOn$inboundSchema
|
|
70317
|
+
}).transform((v2) => {
|
|
70318
|
+
return remap(v2, {
|
|
70319
|
+
sample_rate: "sampleRate",
|
|
70320
|
+
execute_on: "executeOn"
|
|
70321
|
+
});
|
|
70322
|
+
});
|
|
70323
|
+
UpdateAgentEvaluators$outboundSchema = objectType({
|
|
70324
|
+
id: stringType(),
|
|
70325
|
+
sampleRate: numberType().default(50),
|
|
70326
|
+
executeOn: UpdateAgentExecuteOn$outboundSchema
|
|
70327
|
+
}).transform((v2) => {
|
|
70328
|
+
return remap(v2, {
|
|
70329
|
+
sampleRate: "sample_rate",
|
|
70330
|
+
executeOn: "execute_on"
|
|
70331
|
+
});
|
|
70332
|
+
});
|
|
70333
|
+
UpdateAgentAgentsExecuteOn$inboundSchema = nativeEnumType(UpdateAgentAgentsExecuteOn);
|
|
70334
|
+
UpdateAgentAgentsExecuteOn$outboundSchema = UpdateAgentAgentsExecuteOn$inboundSchema;
|
|
70335
|
+
UpdateAgentGuardrails$inboundSchema = objectType({
|
|
70336
|
+
id: stringType(),
|
|
70337
|
+
sample_rate: numberType().default(50),
|
|
70338
|
+
execute_on: UpdateAgentAgentsExecuteOn$inboundSchema
|
|
70339
|
+
}).transform((v2) => {
|
|
70340
|
+
return remap(v2, {
|
|
70341
|
+
sample_rate: "sampleRate",
|
|
70342
|
+
execute_on: "executeOn"
|
|
70343
|
+
});
|
|
70344
|
+
});
|
|
70345
|
+
UpdateAgentGuardrails$outboundSchema = objectType({
|
|
70346
|
+
id: stringType(),
|
|
70347
|
+
sampleRate: numberType().default(50),
|
|
70348
|
+
executeOn: UpdateAgentAgentsExecuteOn$outboundSchema
|
|
70349
|
+
}).transform((v2) => {
|
|
70350
|
+
return remap(v2, {
|
|
70351
|
+
sampleRate: "sample_rate",
|
|
70352
|
+
executeOn: "execute_on"
|
|
70353
|
+
});
|
|
70354
|
+
});
|
|
69895
70355
|
UpdateAgentSettings$inboundSchema = objectType({
|
|
69896
70356
|
max_iterations: numberType().int().default(15),
|
|
69897
70357
|
max_execution_time: numberType().int().default(300),
|
|
@@ -69911,7 +70371,9 @@ var init_updateagent2 = __esm(() => {
|
|
|
69911
70371
|
lazyType(() => AgentToolInputCRUDHTTPTool$inboundSchema),
|
|
69912
70372
|
lazyType(() => AgentToolInputCRUDCodeExecutionTool$inboundSchema),
|
|
69913
70373
|
lazyType(() => AgentToolInputCRUDFunctionTool$inboundSchema)
|
|
69914
|
-
])).optional()
|
|
70374
|
+
])).optional(),
|
|
70375
|
+
evaluators: arrayType(lazyType(() => UpdateAgentEvaluators$inboundSchema)).optional(),
|
|
70376
|
+
guardrails: arrayType(lazyType(() => UpdateAgentGuardrails$inboundSchema)).optional()
|
|
69915
70377
|
}).transform((v2) => {
|
|
69916
70378
|
return remap(v2, {
|
|
69917
70379
|
max_iterations: "maxIterations",
|
|
@@ -69938,7 +70400,9 @@ var init_updateagent2 = __esm(() => {
|
|
|
69938
70400
|
lazyType(() => AgentToolInputCRUDHTTPTool$outboundSchema),
|
|
69939
70401
|
lazyType(() => AgentToolInputCRUDCodeExecutionTool$outboundSchema),
|
|
69940
70402
|
lazyType(() => AgentToolInputCRUDFunctionTool$outboundSchema)
|
|
69941
|
-
])).optional()
|
|
70403
|
+
])).optional(),
|
|
70404
|
+
evaluators: arrayType(lazyType(() => UpdateAgentEvaluators$outboundSchema)).optional(),
|
|
70405
|
+
guardrails: arrayType(lazyType(() => UpdateAgentGuardrails$outboundSchema)).optional()
|
|
69942
70406
|
}).transform((v2) => {
|
|
69943
70407
|
return remap(v2, {
|
|
69944
70408
|
maxIterations: "max_iterations",
|
|
@@ -70100,11 +70564,57 @@ var init_updateagent2 = __esm(() => {
|
|
|
70100
70564
|
requiresApproval: "requires_approval"
|
|
70101
70565
|
});
|
|
70102
70566
|
});
|
|
70567
|
+
UpdateAgentAgentsResponseExecuteOn$inboundSchema = nativeEnumType(UpdateAgentAgentsResponseExecuteOn);
|
|
70568
|
+
UpdateAgentAgentsResponseExecuteOn$outboundSchema = UpdateAgentAgentsResponseExecuteOn$inboundSchema;
|
|
70569
|
+
UpdateAgentAgentsEvaluators$inboundSchema = objectType({
|
|
70570
|
+
id: stringType(),
|
|
70571
|
+
sample_rate: numberType().default(50),
|
|
70572
|
+
execute_on: UpdateAgentAgentsResponseExecuteOn$inboundSchema
|
|
70573
|
+
}).transform((v2) => {
|
|
70574
|
+
return remap(v2, {
|
|
70575
|
+
sample_rate: "sampleRate",
|
|
70576
|
+
execute_on: "executeOn"
|
|
70577
|
+
});
|
|
70578
|
+
});
|
|
70579
|
+
UpdateAgentAgentsEvaluators$outboundSchema = objectType({
|
|
70580
|
+
id: stringType(),
|
|
70581
|
+
sampleRate: numberType().default(50),
|
|
70582
|
+
executeOn: UpdateAgentAgentsResponseExecuteOn$outboundSchema
|
|
70583
|
+
}).transform((v2) => {
|
|
70584
|
+
return remap(v2, {
|
|
70585
|
+
sampleRate: "sample_rate",
|
|
70586
|
+
executeOn: "execute_on"
|
|
70587
|
+
});
|
|
70588
|
+
});
|
|
70589
|
+
UpdateAgentAgentsResponse200ExecuteOn$inboundSchema = nativeEnumType(UpdateAgentAgentsResponse200ExecuteOn);
|
|
70590
|
+
UpdateAgentAgentsResponse200ExecuteOn$outboundSchema = UpdateAgentAgentsResponse200ExecuteOn$inboundSchema;
|
|
70591
|
+
UpdateAgentAgentsGuardrails$inboundSchema = objectType({
|
|
70592
|
+
id: stringType(),
|
|
70593
|
+
sample_rate: numberType().default(50),
|
|
70594
|
+
execute_on: UpdateAgentAgentsResponse200ExecuteOn$inboundSchema
|
|
70595
|
+
}).transform((v2) => {
|
|
70596
|
+
return remap(v2, {
|
|
70597
|
+
sample_rate: "sampleRate",
|
|
70598
|
+
execute_on: "executeOn"
|
|
70599
|
+
});
|
|
70600
|
+
});
|
|
70601
|
+
UpdateAgentAgentsGuardrails$outboundSchema = objectType({
|
|
70602
|
+
id: stringType(),
|
|
70603
|
+
sampleRate: numberType().default(50),
|
|
70604
|
+
executeOn: UpdateAgentAgentsResponse200ExecuteOn$outboundSchema
|
|
70605
|
+
}).transform((v2) => {
|
|
70606
|
+
return remap(v2, {
|
|
70607
|
+
sampleRate: "sample_rate",
|
|
70608
|
+
executeOn: "execute_on"
|
|
70609
|
+
});
|
|
70610
|
+
});
|
|
70103
70611
|
UpdateAgentAgentsSettings$inboundSchema = objectType({
|
|
70104
70612
|
max_iterations: numberType().int().default(15),
|
|
70105
70613
|
max_execution_time: numberType().int().default(300),
|
|
70106
70614
|
tool_approval_required: UpdateAgentAgentsToolApprovalRequired$inboundSchema.default("respect_tool"),
|
|
70107
|
-
tools: arrayType(lazyType(() => UpdateAgentTools$inboundSchema)).optional()
|
|
70615
|
+
tools: arrayType(lazyType(() => UpdateAgentTools$inboundSchema)).optional(),
|
|
70616
|
+
evaluators: arrayType(lazyType(() => UpdateAgentAgentsEvaluators$inboundSchema)).optional(),
|
|
70617
|
+
guardrails: arrayType(lazyType(() => UpdateAgentAgentsGuardrails$inboundSchema)).optional()
|
|
70108
70618
|
}).transform((v2) => {
|
|
70109
70619
|
return remap(v2, {
|
|
70110
70620
|
max_iterations: "maxIterations",
|
|
@@ -70116,7 +70626,9 @@ var init_updateagent2 = __esm(() => {
|
|
|
70116
70626
|
maxIterations: numberType().int().default(15),
|
|
70117
70627
|
maxExecutionTime: numberType().int().default(300),
|
|
70118
70628
|
toolApprovalRequired: UpdateAgentAgentsToolApprovalRequired$outboundSchema.default("respect_tool"),
|
|
70119
|
-
tools: arrayType(lazyType(() => UpdateAgentTools$outboundSchema)).optional()
|
|
70629
|
+
tools: arrayType(lazyType(() => UpdateAgentTools$outboundSchema)).optional(),
|
|
70630
|
+
evaluators: arrayType(lazyType(() => UpdateAgentAgentsEvaluators$outboundSchema)).optional(),
|
|
70631
|
+
guardrails: arrayType(lazyType(() => UpdateAgentAgentsGuardrails$outboundSchema)).optional()
|
|
70120
70632
|
}).transform((v2) => {
|
|
70121
70633
|
return remap(v2, {
|
|
70122
70634
|
maxIterations: "max_iterations",
|
|
@@ -70838,7 +71350,7 @@ var init_updatebudget = __esm(() => {
|
|
|
70838
71350
|
is_active: booleanType(),
|
|
70839
71351
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
70840
71352
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
70841
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
71353
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:06.136Z").transform((v2) => new Date(v2))
|
|
70842
71354
|
}).transform((v2) => {
|
|
70843
71355
|
return remap(v2, {
|
|
70844
71356
|
_id: "id",
|
|
@@ -70856,7 +71368,7 @@ var init_updatebudget = __esm(() => {
|
|
|
70856
71368
|
isActive: booleanType(),
|
|
70857
71369
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
70858
71370
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
70859
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
71371
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:06.136Z")).transform((v2) => v2.toISOString())
|
|
70860
71372
|
}).transform((v2) => {
|
|
70861
71373
|
return remap(v2, {
|
|
70862
71374
|
id: "_id",
|
|
@@ -71011,7 +71523,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
71011
71523
|
tags: arrayType(stringType()).optional(),
|
|
71012
71524
|
metadata: recordType(anyType()).optional(),
|
|
71013
71525
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
71014
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
71526
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
71015
71527
|
}).transform((v2) => {
|
|
71016
71528
|
return remap(v2, {
|
|
71017
71529
|
_id: "id",
|
|
@@ -71029,7 +71541,7 @@ var init_updatecontact2 = __esm(() => {
|
|
|
71029
71541
|
tags: arrayType(stringType()).optional(),
|
|
71030
71542
|
metadata: recordType(anyType()).optional(),
|
|
71031
71543
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
71032
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
71544
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
71033
71545
|
}).transform((v2) => {
|
|
71034
71546
|
return remap(v2, {
|
|
71035
71547
|
id: "_id",
|
|
@@ -72105,7 +72617,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72105
72617
|
human_review_id: stringType(),
|
|
72106
72618
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema.default("orq"),
|
|
72107
72619
|
reviewed_by_id: stringType(),
|
|
72108
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
72620
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.933Z").transform((v2) => new Date(v2)),
|
|
72109
72621
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
72110
72622
|
values: arrayType(stringType())
|
|
72111
72623
|
}).transform((v2) => {
|
|
@@ -72122,7 +72634,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72122
72634
|
humanReviewId: stringType(),
|
|
72123
72635
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema.default("orq"),
|
|
72124
72636
|
reviewedById: stringType(),
|
|
72125
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
72637
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.933Z")).transform((v2) => v2.toISOString()),
|
|
72126
72638
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
72127
72639
|
values: arrayType(stringType())
|
|
72128
72640
|
}).transform((v2) => {
|
|
@@ -72145,7 +72657,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72145
72657
|
human_review_id: stringType(),
|
|
72146
72658
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
72147
72659
|
reviewed_by_id: stringType(),
|
|
72148
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
72660
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.932Z").transform((v2) => new Date(v2)),
|
|
72149
72661
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
72150
72662
|
value: numberType()
|
|
72151
72663
|
}).transform((v2) => {
|
|
@@ -72162,7 +72674,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72162
72674
|
humanReviewId: stringType(),
|
|
72163
72675
|
source: UpdateDatapointEvaluationsDatasetsSource$outboundSchema.default("orq"),
|
|
72164
72676
|
reviewedById: stringType(),
|
|
72165
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
72677
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.932Z")).transform((v2) => v2.toISOString()),
|
|
72166
72678
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
72167
72679
|
value: numberType()
|
|
72168
72680
|
}).transform((v2) => {
|
|
@@ -72185,7 +72697,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72185
72697
|
human_review_id: stringType(),
|
|
72186
72698
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
72187
72699
|
reviewed_by_id: stringType(),
|
|
72188
|
-
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-
|
|
72700
|
+
reviewed_at: stringType().datetime({ offset: true }).default("2025-11-13T09:21:16.932Z").transform((v2) => new Date(v2)),
|
|
72189
72701
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
72190
72702
|
value: stringType()
|
|
72191
72703
|
}).transform((v2) => {
|
|
@@ -72202,7 +72714,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72202
72714
|
humanReviewId: stringType(),
|
|
72203
72715
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
72204
72716
|
reviewedById: stringType(),
|
|
72205
|
-
reviewedAt: dateType().default(() => new Date("2025-11-
|
|
72717
|
+
reviewedAt: dateType().default(() => new Date("2025-11-13T09:21:16.932Z")).transform((v2) => v2.toISOString()),
|
|
72206
72718
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
72207
72719
|
value: stringType()
|
|
72208
72720
|
}).transform((v2) => {
|
|
@@ -72245,7 +72757,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72245
72757
|
created_by_id: stringType().optional(),
|
|
72246
72758
|
updated_by_id: stringType().optional(),
|
|
72247
72759
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72248
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72760
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
72249
72761
|
}).transform((v2) => {
|
|
72250
72762
|
return remap(v2, {
|
|
72251
72763
|
_id: "id",
|
|
@@ -72279,7 +72791,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
72279
72791
|
createdById: stringType().optional(),
|
|
72280
72792
|
updatedById: stringType().optional(),
|
|
72281
72793
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72282
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72794
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
72283
72795
|
}).transform((v2) => {
|
|
72284
72796
|
return remap(v2, {
|
|
72285
72797
|
id: "_id",
|
|
@@ -72363,7 +72875,7 @@ var init_updatedataset = __esm(() => {
|
|
|
72363
72875
|
created_by_id: stringType().optional(),
|
|
72364
72876
|
updated_by_id: stringType().optional(),
|
|
72365
72877
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
72366
|
-
updated: stringType().datetime({ offset: true }).default("2025-11-
|
|
72878
|
+
updated: stringType().datetime({ offset: true }).default("2025-11-13T09:21:05.843Z").transform((v2) => new Date(v2))
|
|
72367
72879
|
}).transform((v2) => {
|
|
72368
72880
|
return remap(v2, {
|
|
72369
72881
|
_id: "id",
|
|
@@ -72383,7 +72895,7 @@ var init_updatedataset = __esm(() => {
|
|
|
72383
72895
|
createdById: stringType().optional(),
|
|
72384
72896
|
updatedById: stringType().optional(),
|
|
72385
72897
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
72386
|
-
updated: dateType().default(() => new Date("2025-11-
|
|
72898
|
+
updated: dateType().default(() => new Date("2025-11-13T09:21:05.843Z")).transform((v2) => v2.toISOString())
|
|
72387
72899
|
}).transform((v2) => {
|
|
72388
72900
|
return remap(v2, {
|
|
72389
72901
|
id: "_id",
|
|
@@ -72447,7 +72959,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
72447
72959
|
UpdateDatasourceStatus$inboundSchema = nativeEnumType(UpdateDatasourceStatus);
|
|
72448
72960
|
UpdateDatasourceStatus$outboundSchema = UpdateDatasourceStatus$inboundSchema;
|
|
72449
72961
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
72450
|
-
_id: stringType().default("
|
|
72962
|
+
_id: stringType().default("01K9Y89TFZWV55DD8B5VCQ0GJR"),
|
|
72451
72963
|
display_name: stringType(),
|
|
72452
72964
|
description: stringType().optional(),
|
|
72453
72965
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -72470,7 +72982,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
72470
72982
|
});
|
|
72471
72983
|
});
|
|
72472
72984
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
72473
|
-
id: stringType().default("
|
|
72985
|
+
id: stringType().default("01K9Y89TFZWV55DD8B5VCQ0GJR"),
|
|
72474
72986
|
displayName: stringType(),
|
|
72475
72987
|
description: stringType().optional(),
|
|
72476
72988
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -72536,6 +73048,7 @@ var init_updateeval2 = __esm(() => {
|
|
|
72536
73048
|
};
|
|
72537
73049
|
UpdateEvalRequestBodyEvalsRequestOutputType = {
|
|
72538
73050
|
Boolean: "boolean",
|
|
73051
|
+
Categorical: "categorical",
|
|
72539
73052
|
Number: "number",
|
|
72540
73053
|
String: "string"
|
|
72541
73054
|
};
|
|
@@ -72582,6 +73095,7 @@ var init_updateeval2 = __esm(() => {
|
|
|
72582
73095
|
};
|
|
72583
73096
|
UpdateEvalRequestBodyOutputType = {
|
|
72584
73097
|
Boolean: "boolean",
|
|
73098
|
+
Categorical: "categorical",
|
|
72585
73099
|
Number: "number",
|
|
72586
73100
|
String: "string"
|
|
72587
73101
|
};
|
|
@@ -73215,8 +73729,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73215
73729
|
ResponseBodyTypescript$inboundSchema = objectType({
|
|
73216
73730
|
_id: stringType(),
|
|
73217
73731
|
description: stringType(),
|
|
73218
|
-
created: stringType().default("2025-11-
|
|
73219
|
-
updated: stringType().default("2025-11-
|
|
73732
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73733
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73220
73734
|
guardrail_config: unionType([
|
|
73221
73735
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
73222
73736
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema)
|
|
@@ -73233,8 +73747,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73233
73747
|
ResponseBodyTypescript$outboundSchema = objectType({
|
|
73234
73748
|
id: stringType(),
|
|
73235
73749
|
description: stringType(),
|
|
73236
|
-
created: stringType().default("2025-11-
|
|
73237
|
-
updated: stringType().default("2025-11-
|
|
73750
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73751
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73238
73752
|
guardrailConfig: unionType([
|
|
73239
73753
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema),
|
|
73240
73754
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$outboundSchema)
|
|
@@ -73291,8 +73805,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73291
73805
|
ResponseBodyRagas$inboundSchema = objectType({
|
|
73292
73806
|
_id: stringType(),
|
|
73293
73807
|
description: stringType(),
|
|
73294
|
-
created: stringType().default("2025-11-
|
|
73295
|
-
updated: stringType().default("2025-11-
|
|
73808
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73809
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73296
73810
|
guardrail_config: unionType([
|
|
73297
73811
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
73298
73812
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema)
|
|
@@ -73311,8 +73825,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73311
73825
|
ResponseBodyRagas$outboundSchema = objectType({
|
|
73312
73826
|
id: stringType(),
|
|
73313
73827
|
description: stringType(),
|
|
73314
|
-
created: stringType().default("2025-11-
|
|
73315
|
-
updated: stringType().default("2025-11-
|
|
73828
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73829
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73316
73830
|
guardrailConfig: unionType([
|
|
73317
73831
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema),
|
|
73318
73832
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$outboundSchema)
|
|
@@ -73749,8 +74263,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73749
74263
|
ResponseBodyFunction$inboundSchema = objectType({
|
|
73750
74264
|
_id: stringType(),
|
|
73751
74265
|
description: stringType(),
|
|
73752
|
-
created: stringType().default("2025-11-
|
|
73753
|
-
updated: stringType().default("2025-11-
|
|
74266
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74267
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73754
74268
|
guardrail_config: unionType([
|
|
73755
74269
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
73756
74270
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema)
|
|
@@ -73804,8 +74318,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73804
74318
|
ResponseBodyFunction$outboundSchema = objectType({
|
|
73805
74319
|
id: stringType(),
|
|
73806
74320
|
description: stringType(),
|
|
73807
|
-
created: stringType().default("2025-11-
|
|
73808
|
-
updated: stringType().default("2025-11-
|
|
74321
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74322
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73809
74323
|
guardrailConfig: unionType([
|
|
73810
74324
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema),
|
|
73811
74325
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema)
|
|
@@ -73897,8 +74411,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73897
74411
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
73898
74412
|
_id: stringType(),
|
|
73899
74413
|
description: stringType(),
|
|
73900
|
-
created: stringType().default("2025-11-
|
|
73901
|
-
updated: stringType().default("2025-11-
|
|
74414
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74415
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73902
74416
|
guardrail_config: unionType([
|
|
73903
74417
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
73904
74418
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -73915,8 +74429,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73915
74429
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
73916
74430
|
id: stringType(),
|
|
73917
74431
|
description: stringType(),
|
|
73918
|
-
created: stringType().default("2025-11-
|
|
73919
|
-
updated: stringType().default("2025-11-
|
|
74432
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74433
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73920
74434
|
guardrailConfig: unionType([
|
|
73921
74435
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
73922
74436
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -73973,8 +74487,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73973
74487
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
73974
74488
|
_id: stringType(),
|
|
73975
74489
|
description: stringType(),
|
|
73976
|
-
created: stringType().default("2025-11-
|
|
73977
|
-
updated: stringType().default("2025-11-
|
|
74490
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74491
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73978
74492
|
guardrail_config: unionType([
|
|
73979
74493
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
73980
74494
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -73994,8 +74508,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
73994
74508
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
73995
74509
|
id: stringType(),
|
|
73996
74510
|
description: stringType(),
|
|
73997
|
-
created: stringType().default("2025-11-
|
|
73998
|
-
updated: stringType().default("2025-11-
|
|
74511
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74512
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
73999
74513
|
guardrailConfig: unionType([
|
|
74000
74514
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
74001
74515
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -74053,8 +74567,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74053
74567
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
74054
74568
|
_id: stringType(),
|
|
74055
74569
|
description: stringType(),
|
|
74056
|
-
created: stringType().default("2025-11-
|
|
74057
|
-
updated: stringType().default("2025-11-
|
|
74570
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74571
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74058
74572
|
guardrail_config: unionType([
|
|
74059
74573
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
74060
74574
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -74071,8 +74585,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74071
74585
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
74072
74586
|
id: stringType(),
|
|
74073
74587
|
description: stringType(),
|
|
74074
|
-
created: stringType().default("2025-11-
|
|
74075
|
-
updated: stringType().default("2025-11-
|
|
74588
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74589
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74076
74590
|
guardrailConfig: unionType([
|
|
74077
74591
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
74078
74592
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -74127,8 +74641,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74127
74641
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
74128
74642
|
_id: stringType(),
|
|
74129
74643
|
description: stringType(),
|
|
74130
|
-
created: stringType().default("2025-11-
|
|
74131
|
-
updated: stringType().default("2025-11-
|
|
74644
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74645
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74132
74646
|
guardrail_config: unionType([
|
|
74133
74647
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
74134
74648
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -74146,8 +74660,8 @@ var init_updateeval2 = __esm(() => {
|
|
|
74146
74660
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
74147
74661
|
id: stringType(),
|
|
74148
74662
|
description: stringType(),
|
|
74149
|
-
created: stringType().default("2025-11-
|
|
74150
|
-
updated: stringType().default("2025-11-
|
|
74663
|
+
created: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74664
|
+
updated: stringType().default("2025-11-13T09:21:08.239Z"),
|
|
74151
74665
|
guardrailConfig: unionType([
|
|
74152
74666
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
74153
74667
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -75830,7 +76344,6 @@ var init_updateprompt2 = __esm(() => {
|
|
|
75830
76344
|
PromptConfig$inboundSchema = objectType({
|
|
75831
76345
|
stream: booleanType().optional(),
|
|
75832
76346
|
model: stringType().optional(),
|
|
75833
|
-
display_name: stringType().optional(),
|
|
75834
76347
|
model_parameters: lazyType(() => UpdatePromptModelParameters$inboundSchema).optional(),
|
|
75835
76348
|
provider: Provider$inboundSchema.optional(),
|
|
75836
76349
|
version: stringType().optional(),
|
|
@@ -75840,7 +76353,6 @@ var init_updateprompt2 = __esm(() => {
|
|
|
75840
76353
|
is_private: booleanType().default(false)
|
|
75841
76354
|
}).transform((v2) => {
|
|
75842
76355
|
return remap(v2, {
|
|
75843
|
-
display_name: "displayName",
|
|
75844
76356
|
model_parameters: "modelParameters",
|
|
75845
76357
|
model_db_id: "modelDbId",
|
|
75846
76358
|
model_type: "modelType",
|
|
@@ -75850,7 +76362,6 @@ var init_updateprompt2 = __esm(() => {
|
|
|
75850
76362
|
PromptConfig$outboundSchema = objectType({
|
|
75851
76363
|
stream: booleanType().optional(),
|
|
75852
76364
|
model: stringType().optional(),
|
|
75853
|
-
displayName: stringType().optional(),
|
|
75854
76365
|
modelParameters: lazyType(() => UpdatePromptModelParameters$outboundSchema).optional(),
|
|
75855
76366
|
provider: Provider$outboundSchema.optional(),
|
|
75856
76367
|
version: stringType().optional(),
|
|
@@ -75860,7 +76371,6 @@ var init_updateprompt2 = __esm(() => {
|
|
|
75860
76371
|
isPrivate: booleanType().default(false)
|
|
75861
76372
|
}).transform((v2) => {
|
|
75862
76373
|
return remap(v2, {
|
|
75863
|
-
displayName: "display_name",
|
|
75864
76374
|
modelParameters: "model_parameters",
|
|
75865
76375
|
modelDbId: "model_db_id",
|
|
75866
76376
|
modelType: "model_type",
|
|
@@ -76774,7 +77284,6 @@ var init_updateprompt2 = __esm(() => {
|
|
|
76774
77284
|
UpdatePromptPromptConfig$inboundSchema = objectType({
|
|
76775
77285
|
stream: booleanType().optional(),
|
|
76776
77286
|
model: stringType().optional(),
|
|
76777
|
-
display_name: stringType().optional(),
|
|
76778
77287
|
model_db_id: nullableType(stringType()).optional(),
|
|
76779
77288
|
model_type: nullableType(UpdatePromptModelType$inboundSchema).optional(),
|
|
76780
77289
|
model_parameters: lazyType(() => UpdatePromptPromptsModelParameters$inboundSchema).optional(),
|
|
@@ -76784,7 +77293,6 @@ var init_updateprompt2 = __esm(() => {
|
|
|
76784
77293
|
messages: arrayType(lazyType(() => UpdatePromptPromptsResponseMessages$inboundSchema))
|
|
76785
77294
|
}).transform((v2) => {
|
|
76786
77295
|
return remap(v2, {
|
|
76787
|
-
display_name: "displayName",
|
|
76788
77296
|
model_db_id: "modelDbId",
|
|
76789
77297
|
model_type: "modelType",
|
|
76790
77298
|
model_parameters: "modelParameters",
|
|
@@ -76794,7 +77302,6 @@ var init_updateprompt2 = __esm(() => {
|
|
|
76794
77302
|
UpdatePromptPromptConfig$outboundSchema = objectType({
|
|
76795
77303
|
stream: booleanType().optional(),
|
|
76796
77304
|
model: stringType().optional(),
|
|
76797
|
-
displayName: stringType().optional(),
|
|
76798
77305
|
modelDbId: nullableType(stringType()).optional(),
|
|
76799
77306
|
modelType: nullableType(UpdatePromptModelType$outboundSchema).optional(),
|
|
76800
77307
|
modelParameters: lazyType(() => UpdatePromptPromptsModelParameters$outboundSchema).optional(),
|
|
@@ -76804,7 +77311,6 @@ var init_updateprompt2 = __esm(() => {
|
|
|
76804
77311
|
messages: arrayType(lazyType(() => UpdatePromptPromptsResponseMessages$outboundSchema))
|
|
76805
77312
|
}).transform((v2) => {
|
|
76806
77313
|
return remap(v2, {
|
|
76807
|
-
displayName: "display_name",
|
|
76808
77314
|
modelDbId: "model_db_id",
|
|
76809
77315
|
modelType: "model_type",
|
|
76810
77316
|
modelParameters: "model_parameters",
|
|
@@ -77375,7 +77881,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77375
77881
|
code: stringType()
|
|
77376
77882
|
});
|
|
77377
77883
|
UpdateToolResponseBody5$inboundSchema = objectType({
|
|
77378
|
-
_id: stringType().default("
|
|
77884
|
+
_id: stringType().default("01K9Y89TCEYX1S3DWVMVAF11RF"),
|
|
77379
77885
|
path: stringType(),
|
|
77380
77886
|
key: stringType(),
|
|
77381
77887
|
display_name: stringType().optional(),
|
|
@@ -77403,7 +77909,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77403
77909
|
});
|
|
77404
77910
|
});
|
|
77405
77911
|
UpdateToolResponseBody5$outboundSchema = objectType({
|
|
77406
|
-
id: stringType().default("
|
|
77912
|
+
id: stringType().default("01K9Y89TCEYX1S3DWVMVAF11RF"),
|
|
77407
77913
|
path: stringType(),
|
|
77408
77914
|
key: stringType(),
|
|
77409
77915
|
displayName: stringType().optional(),
|
|
@@ -77489,7 +77995,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77489
77995
|
});
|
|
77490
77996
|
});
|
|
77491
77997
|
UpdateToolResponseBody4$inboundSchema = objectType({
|
|
77492
|
-
_id: stringType().default("
|
|
77998
|
+
_id: stringType().default("01K9Y89TCDHHYY1WKCGYXHJBB0"),
|
|
77493
77999
|
path: stringType(),
|
|
77494
78000
|
key: stringType(),
|
|
77495
78001
|
display_name: stringType().optional(),
|
|
@@ -77516,7 +78022,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77516
78022
|
});
|
|
77517
78023
|
});
|
|
77518
78024
|
UpdateToolResponseBody4$outboundSchema = objectType({
|
|
77519
|
-
id: stringType().default("
|
|
78025
|
+
id: stringType().default("01K9Y89TCDHHYY1WKCGYXHJBB0"),
|
|
77520
78026
|
path: stringType(),
|
|
77521
78027
|
key: stringType(),
|
|
77522
78028
|
displayName: stringType().optional(),
|
|
@@ -77603,7 +78109,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77603
78109
|
arguments: recordType(lazyType(() => UpdateToolResponseBodyArguments$outboundSchema)).optional()
|
|
77604
78110
|
});
|
|
77605
78111
|
UpdateToolResponseBody3$inboundSchema = objectType({
|
|
77606
|
-
_id: stringType().default("
|
|
78112
|
+
_id: stringType().default("01K9Y89TCBXD7YFM1XQP4P822T"),
|
|
77607
78113
|
path: stringType(),
|
|
77608
78114
|
key: stringType(),
|
|
77609
78115
|
display_name: stringType().optional(),
|
|
@@ -77630,7 +78136,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77630
78136
|
});
|
|
77631
78137
|
});
|
|
77632
78138
|
UpdateToolResponseBody3$outboundSchema = objectType({
|
|
77633
|
-
id: stringType().default("
|
|
78139
|
+
id: stringType().default("01K9Y89TCBXD7YFM1XQP4P822T"),
|
|
77634
78140
|
path: stringType(),
|
|
77635
78141
|
key: stringType(),
|
|
77636
78142
|
displayName: stringType().optional(),
|
|
@@ -77673,7 +78179,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77673
78179
|
strict: booleanType().optional()
|
|
77674
78180
|
});
|
|
77675
78181
|
UpdateToolResponseBody2$inboundSchema = objectType({
|
|
77676
|
-
_id: stringType().default("
|
|
78182
|
+
_id: stringType().default("01K9Y89TCA1VGQQAFQZ6X0NFY5"),
|
|
77677
78183
|
path: stringType(),
|
|
77678
78184
|
key: stringType(),
|
|
77679
78185
|
display_name: stringType().optional(),
|
|
@@ -77701,7 +78207,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77701
78207
|
});
|
|
77702
78208
|
});
|
|
77703
78209
|
UpdateToolResponseBody2$outboundSchema = objectType({
|
|
77704
|
-
id: stringType().default("
|
|
78210
|
+
id: stringType().default("01K9Y89TCA1VGQQAFQZ6X0NFY5"),
|
|
77705
78211
|
path: stringType(),
|
|
77706
78212
|
key: stringType(),
|
|
77707
78213
|
displayName: stringType().optional(),
|
|
@@ -77745,7 +78251,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77745
78251
|
parameters: recordType(anyType()).optional()
|
|
77746
78252
|
});
|
|
77747
78253
|
UpdateToolResponseBody1$inboundSchema = objectType({
|
|
77748
|
-
_id: stringType().default("
|
|
78254
|
+
_id: stringType().default("01K9Y89TC9KYK2NMREWMZNR3B0"),
|
|
77749
78255
|
path: stringType(),
|
|
77750
78256
|
key: stringType(),
|
|
77751
78257
|
display_name: stringType().optional(),
|
|
@@ -77772,7 +78278,7 @@ var init_updatetool2 = __esm(() => {
|
|
|
77772
78278
|
});
|
|
77773
78279
|
});
|
|
77774
78280
|
UpdateToolResponseBody1$outboundSchema = objectType({
|
|
77775
|
-
id: stringType().default("
|
|
78281
|
+
id: stringType().default("01K9Y89TC9KYK2NMREWMZNR3B0"),
|
|
77776
78282
|
path: stringType(),
|
|
77777
78283
|
key: stringType(),
|
|
77778
78284
|
displayName: stringType().optional(),
|
|
@@ -89705,7 +90211,7 @@ async function $do96(client, request, options) {
|
|
|
89705
90211
|
return [parsed, { status: "invalid" }];
|
|
89706
90212
|
}
|
|
89707
90213
|
const payload = parsed.value;
|
|
89708
|
-
const body =
|
|
90214
|
+
const body = encodeJSON("body", payload.RequestBody, { explode: true });
|
|
89709
90215
|
const pathParams = {
|
|
89710
90216
|
tool_id: encodeSimple("tool_id", payload.tool_id, {
|
|
89711
90217
|
explode: false,
|
|
@@ -89714,6 +90220,7 @@ async function $do96(client, request, options) {
|
|
|
89714
90220
|
};
|
|
89715
90221
|
const path = pathToFunc("/v2/tools/{tool_id}/duplicate")(pathParams);
|
|
89716
90222
|
const headers = new Headers(compactMap({
|
|
90223
|
+
"Content-Type": "application/json",
|
|
89717
90224
|
Accept: "application/json"
|
|
89718
90225
|
}));
|
|
89719
90226
|
const secConfig = await extractSecurity(client._options.apiKey);
|
|
@@ -90128,7 +90635,7 @@ Updates a tool in the workspace.`,
|
|
|
90128
90635
|
function createMCPServer(deps) {
|
|
90129
90636
|
const server = new McpServer({
|
|
90130
90637
|
name: "Orq",
|
|
90131
|
-
version: "4.0.0-rc.
|
|
90638
|
+
version: "4.0.0-rc.29"
|
|
90132
90639
|
});
|
|
90133
90640
|
const client = new OrqCore({
|
|
90134
90641
|
apiKey: deps.apiKey,
|
|
@@ -91546,7 +92053,7 @@ var routes = rn({
|
|
|
91546
92053
|
var app = Ve(routes, {
|
|
91547
92054
|
name: "mcp",
|
|
91548
92055
|
versionInfo: {
|
|
91549
|
-
currentVersion: "4.0.0-rc.
|
|
92056
|
+
currentVersion: "4.0.0-rc.29"
|
|
91550
92057
|
}
|
|
91551
92058
|
});
|
|
91552
92059
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -91554,5 +92061,5 @@ export {
|
|
|
91554
92061
|
app
|
|
91555
92062
|
};
|
|
91556
92063
|
|
|
91557
|
-
//# debugId=
|
|
92064
|
+
//# debugId=229FFC03906F564764756E2164756E21
|
|
91558
92065
|
//# sourceMappingURL=mcp-server.js.map
|