@orq-ai/node 4.2.0-rc.28 → 4.2.0-rc.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +458 -268
- package/bin/mcp-server.js.map +43 -43
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/conversationresponse.js +2 -2
- package/models/components/conversationwithmessagesresponse.js +2 -2
- package/models/components/partdoneevent.js +2 -2
- package/models/components/reasoningpart.js +2 -2
- package/models/operations/createagentrequest.d.ts +58 -10
- package/models/operations/createagentrequest.d.ts.map +1 -1
- package/models/operations/createagentrequest.js +59 -13
- package/models/operations/createagentrequest.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createconversation.js +2 -2
- package/models/operations/createconversationresponse.js +4 -4
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.d.ts +8 -8
- package/models/operations/createtool.d.ts.map +1 -1
- package/models/operations/createtool.js +23 -23
- package/models/operations/createtool.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/generateconversationname.js +2 -2
- package/models/operations/getalltools.js +12 -12
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- package/models/operations/runagent.d.ts +120 -18
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +117 -22
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +120 -18
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +117 -20
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +58 -10
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +59 -13
- package/models/operations/updateagent.js.map +1 -1
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updateconversation.js +2 -2
- package/models/operations/updatedatapoint.js +8 -8
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/conversationresponse.ts +2 -2
- package/src/models/components/conversationwithmessagesresponse.ts +2 -2
- package/src/models/components/partdoneevent.ts +2 -2
- package/src/models/components/reasoningpart.ts +2 -2
- package/src/models/operations/createagentrequest.ts +132 -15
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createconversation.ts +2 -2
- package/src/models/operations/createconversationresponse.ts +4 -4
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +33 -29
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/generateconversationname.ts +2 -2
- package/src/models/operations/getalltools.ts +12 -12
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +8 -8
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- package/src/models/operations/runagent.ts +280 -36
- package/src/models/operations/streamrunagent.ts +323 -46
- package/src/models/operations/updateagent.ts +138 -15
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updateconversation.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +8 -8
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
package/jsr.json
CHANGED
package/lib/config.d.ts
CHANGED
|
@@ -39,8 +39,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
|
|
|
39
39
|
export declare const SDK_METADATA: {
|
|
40
40
|
readonly language: "typescript";
|
|
41
41
|
readonly openapiDocVersion: "2.0";
|
|
42
|
-
readonly sdkVersion: "4.2.0-rc.
|
|
42
|
+
readonly sdkVersion: "4.2.0-rc.29";
|
|
43
43
|
readonly genVersion: "2.794.1";
|
|
44
|
-
readonly userAgent: "speakeasy-sdk/typescript 4.2.0-rc.
|
|
44
|
+
readonly userAgent: "speakeasy-sdk/typescript 4.2.0-rc.29 2.794.1 2.0 @orq-ai/node";
|
|
45
45
|
};
|
|
46
46
|
//# sourceMappingURL=config.d.ts.map
|
package/lib/config.js
CHANGED
|
@@ -28,8 +28,8 @@ function serverURLFromOptions(options) {
|
|
|
28
28
|
exports.SDK_METADATA = {
|
|
29
29
|
language: "typescript",
|
|
30
30
|
openapiDocVersion: "2.0",
|
|
31
|
-
sdkVersion: "4.2.0-rc.
|
|
31
|
+
sdkVersion: "4.2.0-rc.29",
|
|
32
32
|
genVersion: "2.794.1",
|
|
33
|
-
userAgent: "speakeasy-sdk/typescript 4.2.0-rc.
|
|
33
|
+
userAgent: "speakeasy-sdk/typescript 4.2.0-rc.29 2.794.1 2.0 @orq-ai/node",
|
|
34
34
|
};
|
|
35
35
|
//# sourceMappingURL=config.js.map
|
package/mcp-server/mcp-server.js
CHANGED
|
@@ -22,7 +22,7 @@ const routes = (0, core_1.buildRouteMap)({
|
|
|
22
22
|
exports.app = (0, core_1.buildApplication)(routes, {
|
|
23
23
|
name: "mcp",
|
|
24
24
|
versionInfo: {
|
|
25
|
-
currentVersion: "4.2.0-rc.
|
|
25
|
+
currentVersion: "4.2.0-rc.29",
|
|
26
26
|
},
|
|
27
27
|
});
|
|
28
28
|
(0, core_1.run)(exports.app, node_process_1.default.argv.slice(2), (0, cli_js_1.buildContext)(node_process_1.default));
|
package/mcp-server/server.js
CHANGED
|
@@ -114,7 +114,7 @@ const toolsUpdate_js_1 = require("./tools/toolsUpdate.js");
|
|
|
114
114
|
function createMCPServer(deps) {
|
|
115
115
|
const server = new mcp_js_1.McpServer({
|
|
116
116
|
name: "Orq",
|
|
117
|
-
version: "4.2.0-rc.
|
|
117
|
+
version: "4.2.0-rc.29",
|
|
118
118
|
});
|
|
119
119
|
const client = new core_js_1.OrqCore({
|
|
120
120
|
apiKey: deps.apiKey,
|
|
@@ -74,7 +74,7 @@ function metadataFromJSON(jsonString) {
|
|
|
74
74
|
}
|
|
75
75
|
/** @internal */
|
|
76
76
|
exports.ConversationResponse$inboundSchema = z.object({
|
|
77
|
-
_id: z.string().default("
|
|
77
|
+
_id: z.string().default("conv_01keyb6f8a77pvq81kwd4vpj0y"),
|
|
78
78
|
kind: exports.ConversationResponseKind$inboundSchema,
|
|
79
79
|
displayName: z.string(),
|
|
80
80
|
createdAt: z.number(),
|
|
@@ -89,7 +89,7 @@ exports.ConversationResponse$inboundSchema = z.object({
|
|
|
89
89
|
});
|
|
90
90
|
/** @internal */
|
|
91
91
|
exports.ConversationResponse$outboundSchema = z.object({
|
|
92
|
-
id: z.string().default("
|
|
92
|
+
id: z.string().default("conv_01keyb6f8a77pvq81kwd4vpj0y"),
|
|
93
93
|
kind: exports.ConversationResponseKind$outboundSchema,
|
|
94
94
|
displayName: z.string(),
|
|
95
95
|
createdAt: z.number(),
|
|
@@ -75,7 +75,7 @@ function conversationWithMessagesResponseMetadataFromJSON(jsonString) {
|
|
|
75
75
|
}
|
|
76
76
|
/** @internal */
|
|
77
77
|
exports.ConversationWithMessagesResponse$inboundSchema = z.object({
|
|
78
|
-
_id: z.string().default("
|
|
78
|
+
_id: z.string().default("conv_01keyb6f8fdc01mq7784dpmkjx"),
|
|
79
79
|
kind: exports.ConversationWithMessagesResponseKind$inboundSchema,
|
|
80
80
|
displayName: z.string(),
|
|
81
81
|
createdAt: z.number(),
|
|
@@ -92,7 +92,7 @@ exports.ConversationWithMessagesResponse$inboundSchema = z.object({
|
|
|
92
92
|
});
|
|
93
93
|
/** @internal */
|
|
94
94
|
exports.ConversationWithMessagesResponse$outboundSchema = z.object({
|
|
95
|
-
id: z.string().default("
|
|
95
|
+
id: z.string().default("conv_01keyb6f8fdc01mq7784dpmkjx"),
|
|
96
96
|
kind: exports.ConversationWithMessagesResponseKind$outboundSchema,
|
|
97
97
|
displayName: z.string(),
|
|
98
98
|
createdAt: z.number(),
|
|
@@ -59,7 +59,7 @@ exports.PartKind$inboundSchema = z
|
|
|
59
59
|
exports.PartKind$outboundSchema = exports.PartKind$inboundSchema;
|
|
60
60
|
/** @internal */
|
|
61
61
|
exports.PartReasoningPart$inboundSchema = z.object({
|
|
62
|
-
_id: z.string().default("
|
|
62
|
+
_id: z.string().default("reasoning_01keyb6ez0f714kz21hdw6zvax"),
|
|
63
63
|
metadata: z.record(z.any()).optional(),
|
|
64
64
|
kind: exports.PartKind$inboundSchema,
|
|
65
65
|
reasoning: z.string(),
|
|
@@ -71,7 +71,7 @@ exports.PartReasoningPart$inboundSchema = z.object({
|
|
|
71
71
|
});
|
|
72
72
|
/** @internal */
|
|
73
73
|
exports.PartReasoningPart$outboundSchema = z.object({
|
|
74
|
-
id: z.string().default("
|
|
74
|
+
id: z.string().default("reasoning_01keyb6ez0f714kz21hdw6zvax"),
|
|
75
75
|
metadata: z.record(z.any()).optional(),
|
|
76
76
|
kind: exports.PartKind$outboundSchema,
|
|
77
77
|
reasoning: z.string(),
|
|
@@ -44,7 +44,7 @@ const primitives_js_1 = require("../../lib/primitives.js");
|
|
|
44
44
|
const schemas_js_1 = require("../../lib/schemas.js");
|
|
45
45
|
/** @internal */
|
|
46
46
|
exports.ReasoningPart$inboundSchema = z.object({
|
|
47
|
-
_id: z.string().default("
|
|
47
|
+
_id: z.string().default("reasoning_01keyb6eyp0g01fa3cdebhbhmy"),
|
|
48
48
|
metadata: z.record(z.any()).optional(),
|
|
49
49
|
kind: z.literal("reasoning"),
|
|
50
50
|
reasoning: z.string(),
|
|
@@ -56,7 +56,7 @@ exports.ReasoningPart$inboundSchema = z.object({
|
|
|
56
56
|
});
|
|
57
57
|
/** @internal */
|
|
58
58
|
exports.ReasoningPart$outboundSchema = z.object({
|
|
59
|
-
id: z.string().default("
|
|
59
|
+
id: z.string().default("reasoning_01keyb6eyp0g01fa3cdebhbhmy"),
|
|
60
60
|
metadata: z.record(z.any()).optional(),
|
|
61
61
|
kind: z.literal("reasoning"),
|
|
62
62
|
reasoning: z.string(),
|
|
@@ -704,13 +704,13 @@ export type ToolApprovalRequired = ClosedEnum<typeof ToolApprovalRequired>;
|
|
|
704
704
|
/**
|
|
705
705
|
* MCP tool type
|
|
706
706
|
*/
|
|
707
|
-
export declare const
|
|
707
|
+
export declare const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type: {
|
|
708
708
|
readonly Mcp: "mcp";
|
|
709
709
|
};
|
|
710
710
|
/**
|
|
711
711
|
* MCP tool type
|
|
712
712
|
*/
|
|
713
|
-
export type
|
|
713
|
+
export type CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type = ClosedEnum<typeof CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type>;
|
|
714
714
|
/**
|
|
715
715
|
* Executes tools from Model Context Protocol (MCP) servers. Specify the parent MCP tool using "key" or "id", and the specific nested tool using "tool_id".
|
|
716
716
|
*/
|
|
@@ -718,7 +718,7 @@ export type MCPTool = {
|
|
|
718
718
|
/**
|
|
719
719
|
* MCP tool type
|
|
720
720
|
*/
|
|
721
|
-
type?:
|
|
721
|
+
type?: CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type | undefined;
|
|
722
722
|
/**
|
|
723
723
|
* The key of the parent MCP tool
|
|
724
724
|
*/
|
|
@@ -736,6 +736,37 @@ export type MCPTool = {
|
|
|
736
736
|
*/
|
|
737
737
|
requiresApproval?: boolean | undefined;
|
|
738
738
|
};
|
|
739
|
+
/**
|
|
740
|
+
* JSON Schema tool type
|
|
741
|
+
*/
|
|
742
|
+
export declare const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type: {
|
|
743
|
+
readonly JsonSchema: "json_schema";
|
|
744
|
+
};
|
|
745
|
+
/**
|
|
746
|
+
* JSON Schema tool type
|
|
747
|
+
*/
|
|
748
|
+
export type CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type = ClosedEnum<typeof CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type>;
|
|
749
|
+
/**
|
|
750
|
+
* Enforces structured output format using JSON Schema. Must reference a pre-created JSON Schema tool by key or id.
|
|
751
|
+
*/
|
|
752
|
+
export type JSONSchemaTool = {
|
|
753
|
+
/**
|
|
754
|
+
* JSON Schema tool type
|
|
755
|
+
*/
|
|
756
|
+
type?: CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type | undefined;
|
|
757
|
+
/**
|
|
758
|
+
* The key of the pre-created JSON Schema tool
|
|
759
|
+
*/
|
|
760
|
+
key?: string | undefined;
|
|
761
|
+
/**
|
|
762
|
+
* The ID of the pre-created JSON Schema tool
|
|
763
|
+
*/
|
|
764
|
+
id?: string | undefined;
|
|
765
|
+
/**
|
|
766
|
+
* Whether this tool requires approval before execution
|
|
767
|
+
*/
|
|
768
|
+
requiresApproval?: boolean | undefined;
|
|
769
|
+
};
|
|
739
770
|
/**
|
|
740
771
|
* Function tool type
|
|
741
772
|
*/
|
|
@@ -984,9 +1015,9 @@ export type GoogleSearchTool = {
|
|
|
984
1015
|
requiresApproval?: boolean | undefined;
|
|
985
1016
|
};
|
|
986
1017
|
/**
|
|
987
|
-
* Tool configuration for agent create/update operations. Built-in tools only require a type, while custom tools (HTTP, Code, Function, MCP) must reference pre-created tools by key or id.
|
|
1018
|
+
* Tool configuration for agent create/update operations. Built-in tools only require a type, while custom tools (HTTP, Code, Function, JSON Schema, MCP) must reference pre-created tools by key or id.
|
|
988
1019
|
*/
|
|
989
|
-
export type AgentToolInputCRUD = GoogleSearchTool | WebScraperTool | CallSubAgentTool | RetrieveAgentsTool | QueryMemoryStoreTool | WriteMemoryStoreTool | RetrieveMemoryStoresTool | DeleteMemoryDocumentTool | RetrieveKnowledgeBasesTool | QueryKnowledgeBaseTool | CurrentDateTool | MCPTool | HTTPTool | CodeExecutionTool | FunctionTool;
|
|
1020
|
+
export type AgentToolInputCRUD = GoogleSearchTool | WebScraperTool | CallSubAgentTool | RetrieveAgentsTool | QueryMemoryStoreTool | WriteMemoryStoreTool | RetrieveMemoryStoresTool | DeleteMemoryDocumentTool | RetrieveKnowledgeBasesTool | QueryKnowledgeBaseTool | CurrentDateTool | MCPTool | HTTPTool | CodeExecutionTool | FunctionTool | JSONSchemaTool;
|
|
990
1021
|
/**
|
|
991
1022
|
* Determines whether the evaluator runs on the agent input (user message) or output (agent response).
|
|
992
1023
|
*/
|
|
@@ -1056,7 +1087,7 @@ export type Settings = {
|
|
|
1056
1087
|
/**
|
|
1057
1088
|
* Tools available to the agent. Built-in tools only need a type, while custom tools (http, code, function) must reference pre-created tools by key or id.
|
|
1058
1089
|
*/
|
|
1059
|
-
tools?: Array<GoogleSearchTool | WebScraperTool | CallSubAgentTool | RetrieveAgentsTool | QueryMemoryStoreTool | WriteMemoryStoreTool | RetrieveMemoryStoresTool | DeleteMemoryDocumentTool | RetrieveKnowledgeBasesTool | QueryKnowledgeBaseTool | CurrentDateTool | MCPTool | HTTPTool | CodeExecutionTool | FunctionTool> | undefined;
|
|
1090
|
+
tools?: Array<GoogleSearchTool | WebScraperTool | CallSubAgentTool | RetrieveAgentsTool | QueryMemoryStoreTool | WriteMemoryStoreTool | RetrieveMemoryStoresTool | DeleteMemoryDocumentTool | RetrieveKnowledgeBasesTool | QueryKnowledgeBaseTool | CurrentDateTool | MCPTool | HTTPTool | CodeExecutionTool | FunctionTool | JSONSchemaTool> | undefined;
|
|
1060
1091
|
/**
|
|
1061
1092
|
* Configuration for an evaluator applied to the agent
|
|
1062
1093
|
*/
|
|
@@ -2522,9 +2553,9 @@ export declare const ToolApprovalRequired$inboundSchema: z.ZodNativeEnum<typeof
|
|
|
2522
2553
|
/** @internal */
|
|
2523
2554
|
export declare const ToolApprovalRequired$outboundSchema: z.ZodNativeEnum<typeof ToolApprovalRequired>;
|
|
2524
2555
|
/** @internal */
|
|
2525
|
-
export declare const
|
|
2556
|
+
export declare const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$inboundSchema: z.ZodNativeEnum<typeof CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type>;
|
|
2526
2557
|
/** @internal */
|
|
2527
|
-
export declare const
|
|
2558
|
+
export declare const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type$outboundSchema: z.ZodNativeEnum<typeof CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools16Type>;
|
|
2528
2559
|
/** @internal */
|
|
2529
2560
|
export declare const MCPTool$inboundSchema: z.ZodType<MCPTool, z.ZodTypeDef, unknown>;
|
|
2530
2561
|
/** @internal */
|
|
@@ -2540,6 +2571,23 @@ export declare const MCPTool$outboundSchema: z.ZodType<MCPTool$Outbound, z.ZodTy
|
|
|
2540
2571
|
export declare function mcpToolToJSON(mcpTool: MCPTool): string;
|
|
2541
2572
|
export declare function mcpToolFromJSON(jsonString: string): SafeParseResult<MCPTool, SDKValidationError>;
|
|
2542
2573
|
/** @internal */
|
|
2574
|
+
export declare const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$inboundSchema: z.ZodNativeEnum<typeof CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type>;
|
|
2575
|
+
/** @internal */
|
|
2576
|
+
export declare const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type$outboundSchema: z.ZodNativeEnum<typeof CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools15Type>;
|
|
2577
|
+
/** @internal */
|
|
2578
|
+
export declare const JSONSchemaTool$inboundSchema: z.ZodType<JSONSchemaTool, z.ZodTypeDef, unknown>;
|
|
2579
|
+
/** @internal */
|
|
2580
|
+
export type JSONSchemaTool$Outbound = {
|
|
2581
|
+
type: string;
|
|
2582
|
+
key?: string | undefined;
|
|
2583
|
+
id?: string | undefined;
|
|
2584
|
+
requires_approval: boolean;
|
|
2585
|
+
};
|
|
2586
|
+
/** @internal */
|
|
2587
|
+
export declare const JSONSchemaTool$outboundSchema: z.ZodType<JSONSchemaTool$Outbound, z.ZodTypeDef, JSONSchemaTool>;
|
|
2588
|
+
export declare function jsonSchemaToolToJSON(jsonSchemaTool: JSONSchemaTool): string;
|
|
2589
|
+
export declare function jsonSchemaToolFromJSON(jsonString: string): SafeParseResult<JSONSchemaTool, SDKValidationError>;
|
|
2590
|
+
/** @internal */
|
|
2543
2591
|
export declare const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$inboundSchema: z.ZodNativeEnum<typeof CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type>;
|
|
2544
2592
|
/** @internal */
|
|
2545
2593
|
export declare const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type$outboundSchema: z.ZodNativeEnum<typeof CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools14Type>;
|
|
@@ -2758,7 +2806,7 @@ export declare function googleSearchToolFromJSON(jsonString: string): SafeParseR
|
|
|
2758
2806
|
/** @internal */
|
|
2759
2807
|
export declare const AgentToolInputCRUD$inboundSchema: z.ZodType<AgentToolInputCRUD, z.ZodTypeDef, unknown>;
|
|
2760
2808
|
/** @internal */
|
|
2761
|
-
export type AgentToolInputCRUD$Outbound = GoogleSearchTool$Outbound | WebScraperTool$Outbound | CallSubAgentTool$Outbound | RetrieveAgentsTool$Outbound | QueryMemoryStoreTool$Outbound | WriteMemoryStoreTool$Outbound | RetrieveMemoryStoresTool$Outbound | DeleteMemoryDocumentTool$Outbound | RetrieveKnowledgeBasesTool$Outbound | QueryKnowledgeBaseTool$Outbound | CurrentDateTool$Outbound | MCPTool$Outbound | HTTPTool$Outbound | CodeExecutionTool$Outbound | FunctionTool$Outbound;
|
|
2809
|
+
export type AgentToolInputCRUD$Outbound = GoogleSearchTool$Outbound | WebScraperTool$Outbound | CallSubAgentTool$Outbound | RetrieveAgentsTool$Outbound | QueryMemoryStoreTool$Outbound | WriteMemoryStoreTool$Outbound | RetrieveMemoryStoresTool$Outbound | DeleteMemoryDocumentTool$Outbound | RetrieveKnowledgeBasesTool$Outbound | QueryKnowledgeBaseTool$Outbound | CurrentDateTool$Outbound | MCPTool$Outbound | HTTPTool$Outbound | CodeExecutionTool$Outbound | FunctionTool$Outbound | JSONSchemaTool$Outbound;
|
|
2762
2810
|
/** @internal */
|
|
2763
2811
|
export declare const AgentToolInputCRUD$outboundSchema: z.ZodType<AgentToolInputCRUD$Outbound, z.ZodTypeDef, AgentToolInputCRUD>;
|
|
2764
2812
|
export declare function agentToolInputCRUDToJSON(agentToolInputCRUD: AgentToolInputCRUD): string;
|
|
@@ -2802,7 +2850,7 @@ export type Settings$Outbound = {
|
|
|
2802
2850
|
max_iterations: number;
|
|
2803
2851
|
max_execution_time: number;
|
|
2804
2852
|
tool_approval_required: string;
|
|
2805
|
-
tools?: Array<GoogleSearchTool$Outbound | WebScraperTool$Outbound | CallSubAgentTool$Outbound | RetrieveAgentsTool$Outbound | QueryMemoryStoreTool$Outbound | WriteMemoryStoreTool$Outbound | RetrieveMemoryStoresTool$Outbound | DeleteMemoryDocumentTool$Outbound | RetrieveKnowledgeBasesTool$Outbound | QueryKnowledgeBaseTool$Outbound | CurrentDateTool$Outbound | MCPTool$Outbound | HTTPTool$Outbound | CodeExecutionTool$Outbound | FunctionTool$Outbound> | undefined;
|
|
2853
|
+
tools?: Array<GoogleSearchTool$Outbound | WebScraperTool$Outbound | CallSubAgentTool$Outbound | RetrieveAgentsTool$Outbound | QueryMemoryStoreTool$Outbound | WriteMemoryStoreTool$Outbound | RetrieveMemoryStoresTool$Outbound | DeleteMemoryDocumentTool$Outbound | RetrieveKnowledgeBasesTool$Outbound | QueryKnowledgeBaseTool$Outbound | CurrentDateTool$Outbound | MCPTool$Outbound | HTTPTool$Outbound | CodeExecutionTool$Outbound | FunctionTool$Outbound | JSONSchemaTool$Outbound> | undefined;
|
|
2806
2854
|
evaluators?: Array<Evaluators$Outbound> | undefined;
|
|
2807
2855
|
guardrails?: Array<CreateAgentRequestGuardrails$Outbound> | undefined;
|
|
2808
2856
|
};
|