@orq-ai/node 4.13.0-rc.4 → 4.13.0-rc.5
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/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/agenttoolinputcrud.d.ts +69 -3
- package/models/components/agenttoolinputcrud.d.ts.map +1 -1
- package/models/components/agenttoolinputcrud.js +42 -4
- package/models/components/agenttoolinputcrud.js.map +1 -1
- package/models/components/evaluatorresponsefunction.js +2 -2
- package/models/components/evaluatorresponsehttp.js +2 -2
- package/models/components/evaluatorresponsejsonschema.js +2 -2
- package/models/components/evaluatorresponsellm.js +2 -2
- package/models/components/evaluatorresponsepython.js +2 -2
- package/models/components/evaluatorresponseragas.js +2 -2
- package/models/components/evaluatorresponsetypescript.js +2 -2
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +5 -5
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +5 -5
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +4 -4
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +5 -5
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.d.ts +74 -20
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +48 -16
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +74 -20
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +48 -16
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updatedatapoint.js +5 -5
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +1 -1
- package/sdk/feedback.d.ts +6 -0
- package/sdk/feedback.d.ts.map +1 -1
- package/sdk/feedback.js +6 -0
- package/sdk/feedback.js.map +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/agenttoolinputcrud.ts +113 -7
- package/src/models/components/evaluatorresponsefunction.ts +2 -2
- package/src/models/components/evaluatorresponsehttp.ts +2 -2
- package/src/models/components/evaluatorresponsejsonschema.ts +2 -2
- package/src/models/components/evaluatorresponsellm.ts +2 -2
- package/src/models/components/evaluatorresponsepython.ts +2 -2
- package/src/models/components/evaluatorresponseragas.ts +2 -2
- package/src/models/components/evaluatorresponsetypescript.ts +2 -2
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +5 -5
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +5 -5
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +4 -4
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +5 -5
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +127 -33
- package/src/models/operations/streamrunagent.ts +139 -33
- package/src/models/operations/updatedatapoint.ts +5 -5
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
- package/src/sdk/feedback.ts +6 -0
|
@@ -1167,17 +1167,17 @@ export type AgentToolInputRunHeaders = {
|
|
|
1167
1167
|
encrypted?: boolean | undefined;
|
|
1168
1168
|
};
|
|
1169
1169
|
|
|
1170
|
-
export const
|
|
1170
|
+
export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools19McpType =
|
|
1171
1171
|
{
|
|
1172
1172
|
Object: "object",
|
|
1173
1173
|
} as const;
|
|
1174
|
-
export type
|
|
1174
|
+
export type RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools19McpType =
|
|
1175
1175
|
ClosedEnum<
|
|
1176
|
-
typeof
|
|
1176
|
+
typeof RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools19McpType
|
|
1177
1177
|
>;
|
|
1178
1178
|
|
|
1179
1179
|
export type AgentToolInputRunSchema = {
|
|
1180
|
-
type:
|
|
1180
|
+
type: RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools19McpType;
|
|
1181
1181
|
properties?: { [k: string]: any } | undefined;
|
|
1182
1182
|
required?: Array<string> | undefined;
|
|
1183
1183
|
};
|
|
@@ -1299,16 +1299,16 @@ export type JSONSchemaToolRun = {
|
|
|
1299
1299
|
/**
|
|
1300
1300
|
* The type must be "object"
|
|
1301
1301
|
*/
|
|
1302
|
-
export const
|
|
1302
|
+
export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools17FunctionType =
|
|
1303
1303
|
{
|
|
1304
1304
|
Object: "object",
|
|
1305
1305
|
} as const;
|
|
1306
1306
|
/**
|
|
1307
1307
|
* The type must be "object"
|
|
1308
1308
|
*/
|
|
1309
|
-
export type
|
|
1309
|
+
export type RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools17FunctionType =
|
|
1310
1310
|
ClosedEnum<
|
|
1311
|
-
typeof
|
|
1311
|
+
typeof RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools17FunctionType
|
|
1312
1312
|
>;
|
|
1313
1313
|
|
|
1314
1314
|
/**
|
|
@@ -1319,7 +1319,7 @@ export type RunAgentAgentToolInputRunParameters = {
|
|
|
1319
1319
|
* The type must be "object"
|
|
1320
1320
|
*/
|
|
1321
1321
|
type:
|
|
1322
|
-
|
|
1322
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools17FunctionType;
|
|
1323
1323
|
/**
|
|
1324
1324
|
* The properties of the function parameters
|
|
1325
1325
|
*/
|
|
@@ -1369,16 +1369,16 @@ export type FunctionToolRun = {
|
|
|
1369
1369
|
/**
|
|
1370
1370
|
* The type must be "object"
|
|
1371
1371
|
*/
|
|
1372
|
-
export const
|
|
1372
|
+
export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16CodeToolType =
|
|
1373
1373
|
{
|
|
1374
1374
|
Object: "object",
|
|
1375
1375
|
} as const;
|
|
1376
1376
|
/**
|
|
1377
1377
|
* The type must be "object"
|
|
1378
1378
|
*/
|
|
1379
|
-
export type
|
|
1379
|
+
export type RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16CodeToolType =
|
|
1380
1380
|
ClosedEnum<
|
|
1381
|
-
typeof
|
|
1381
|
+
typeof RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16CodeToolType
|
|
1382
1382
|
>;
|
|
1383
1383
|
|
|
1384
1384
|
/**
|
|
@@ -1389,7 +1389,7 @@ export type AgentToolInputRunParameters = {
|
|
|
1389
1389
|
* The type must be "object"
|
|
1390
1390
|
*/
|
|
1391
1391
|
type:
|
|
1392
|
-
|
|
1392
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16CodeToolType;
|
|
1393
1393
|
/**
|
|
1394
1394
|
* The properties of the function parameters
|
|
1395
1395
|
*/
|
|
@@ -1491,7 +1491,7 @@ export type Blueprint = {
|
|
|
1491
1491
|
/**
|
|
1492
1492
|
* The type of the argument.
|
|
1493
1493
|
*/
|
|
1494
|
-
export const
|
|
1494
|
+
export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15HttpType =
|
|
1495
1495
|
{
|
|
1496
1496
|
String: "string",
|
|
1497
1497
|
Number: "number",
|
|
@@ -1500,9 +1500,9 @@ export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools13Htt
|
|
|
1500
1500
|
/**
|
|
1501
1501
|
* The type of the argument.
|
|
1502
1502
|
*/
|
|
1503
|
-
export type
|
|
1503
|
+
export type RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15HttpType =
|
|
1504
1504
|
ClosedEnum<
|
|
1505
|
-
typeof
|
|
1505
|
+
typeof RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15HttpType
|
|
1506
1506
|
>;
|
|
1507
1507
|
|
|
1508
1508
|
/**
|
|
@@ -1515,7 +1515,7 @@ export type Arguments = {
|
|
|
1515
1515
|
* The type of the argument.
|
|
1516
1516
|
*/
|
|
1517
1517
|
type:
|
|
1518
|
-
|
|
1518
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15HttpType;
|
|
1519
1519
|
/**
|
|
1520
1520
|
* A description of the argument.
|
|
1521
1521
|
*/
|
|
@@ -1579,6 +1579,36 @@ export type CodeInterpreterTool = {
|
|
|
1579
1579
|
configuration?: { [k: string]: any } | undefined;
|
|
1580
1580
|
};
|
|
1581
1581
|
|
|
1582
|
+
/**
|
|
1583
|
+
* Delegate a subtask to a secondary model for execution
|
|
1584
|
+
*/
|
|
1585
|
+
export type SidekickTool = {
|
|
1586
|
+
type: "sidekick";
|
|
1587
|
+
/**
|
|
1588
|
+
* Whether this tool requires approval before execution
|
|
1589
|
+
*/
|
|
1590
|
+
requiresApproval?: boolean | undefined;
|
|
1591
|
+
/**
|
|
1592
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1593
|
+
*/
|
|
1594
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1595
|
+
};
|
|
1596
|
+
|
|
1597
|
+
/**
|
|
1598
|
+
* Consult a secondary model for advice on the current task
|
|
1599
|
+
*/
|
|
1600
|
+
export type AdvisorTool = {
|
|
1601
|
+
type: "advisor";
|
|
1602
|
+
/**
|
|
1603
|
+
* Whether this tool requires approval before execution
|
|
1604
|
+
*/
|
|
1605
|
+
requiresApproval?: boolean | undefined;
|
|
1606
|
+
/**
|
|
1607
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1608
|
+
*/
|
|
1609
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1610
|
+
};
|
|
1611
|
+
|
|
1582
1612
|
/**
|
|
1583
1613
|
* Returns the current date and time
|
|
1584
1614
|
*/
|
|
@@ -1759,6 +1789,8 @@ export type AgentToolInputRun =
|
|
|
1759
1789
|
| RetrieveKnowledgeBasesTool
|
|
1760
1790
|
| QueryKnowledgeBaseTool
|
|
1761
1791
|
| CurrentDateTool
|
|
1792
|
+
| AdvisorTool
|
|
1793
|
+
| SidekickTool
|
|
1762
1794
|
| CodeInterpreterTool
|
|
1763
1795
|
| HTTPToolRun
|
|
1764
1796
|
| CodeToolRun
|
|
@@ -1854,6 +1886,8 @@ export type RunAgentSettings = {
|
|
|
1854
1886
|
| RetrieveKnowledgeBasesTool
|
|
1855
1887
|
| QueryKnowledgeBaseTool
|
|
1856
1888
|
| CurrentDateTool
|
|
1889
|
+
| AdvisorTool
|
|
1890
|
+
| SidekickTool
|
|
1857
1891
|
| CodeInterpreterTool
|
|
1858
1892
|
| HTTPToolRun
|
|
1859
1893
|
| CodeToolRun
|
|
@@ -4006,11 +4040,11 @@ export function agentToolInputRunHeadersToJSON(
|
|
|
4006
4040
|
}
|
|
4007
4041
|
|
|
4008
4042
|
/** @internal */
|
|
4009
|
-
export const
|
|
4043
|
+
export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools19McpType$outboundSchema:
|
|
4010
4044
|
z.ZodNativeEnum<
|
|
4011
|
-
typeof
|
|
4045
|
+
typeof RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools19McpType
|
|
4012
4046
|
> = z.nativeEnum(
|
|
4013
|
-
|
|
4047
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools19McpType,
|
|
4014
4048
|
);
|
|
4015
4049
|
|
|
4016
4050
|
/** @internal */
|
|
@@ -4027,7 +4061,7 @@ export const AgentToolInputRunSchema$outboundSchema: z.ZodType<
|
|
|
4027
4061
|
AgentToolInputRunSchema
|
|
4028
4062
|
> = z.object({
|
|
4029
4063
|
type:
|
|
4030
|
-
|
|
4064
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools19McpType$outboundSchema,
|
|
4031
4065
|
properties: z.record(z.any()).optional(),
|
|
4032
4066
|
required: z.array(z.string()).optional(),
|
|
4033
4067
|
});
|
|
@@ -4054,7 +4088,7 @@ export const Tools$outboundSchema: z.ZodType<
|
|
|
4054
4088
|
z.ZodTypeDef,
|
|
4055
4089
|
Tools
|
|
4056
4090
|
> = z.object({
|
|
4057
|
-
id: z.string().default("
|
|
4091
|
+
id: z.string().default("01KYDMWCQJKCPX2G9FRS7JR8FW"),
|
|
4058
4092
|
name: z.string(),
|
|
4059
4093
|
description: z.string().optional(),
|
|
4060
4094
|
schema: z.lazy(() => AgentToolInputRunSchema$outboundSchema),
|
|
@@ -4235,11 +4269,11 @@ export function jsonSchemaToolRunToJSON(
|
|
|
4235
4269
|
}
|
|
4236
4270
|
|
|
4237
4271
|
/** @internal */
|
|
4238
|
-
export const
|
|
4272
|
+
export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools17FunctionType$outboundSchema:
|
|
4239
4273
|
z.ZodNativeEnum<
|
|
4240
|
-
typeof
|
|
4274
|
+
typeof RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools17FunctionType
|
|
4241
4275
|
> = z.nativeEnum(
|
|
4242
|
-
|
|
4276
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools17FunctionType,
|
|
4243
4277
|
);
|
|
4244
4278
|
|
|
4245
4279
|
/** @internal */
|
|
@@ -4257,7 +4291,7 @@ export const RunAgentAgentToolInputRunParameters$outboundSchema: z.ZodType<
|
|
|
4257
4291
|
RunAgentAgentToolInputRunParameters
|
|
4258
4292
|
> = z.object({
|
|
4259
4293
|
type:
|
|
4260
|
-
|
|
4294
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools17FunctionType$outboundSchema,
|
|
4261
4295
|
properties: z.record(z.any()),
|
|
4262
4296
|
required: z.array(z.string()),
|
|
4263
4297
|
additionalProperties: z.record(z.any()).optional(),
|
|
@@ -4348,11 +4382,11 @@ export function functionToolRunToJSON(
|
|
|
4348
4382
|
}
|
|
4349
4383
|
|
|
4350
4384
|
/** @internal */
|
|
4351
|
-
export const
|
|
4385
|
+
export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16CodeToolType$outboundSchema:
|
|
4352
4386
|
z.ZodNativeEnum<
|
|
4353
|
-
typeof
|
|
4387
|
+
typeof RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16CodeToolType
|
|
4354
4388
|
> = z.nativeEnum(
|
|
4355
|
-
|
|
4389
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16CodeToolType,
|
|
4356
4390
|
);
|
|
4357
4391
|
|
|
4358
4392
|
/** @internal */
|
|
@@ -4370,7 +4404,7 @@ export const AgentToolInputRunParameters$outboundSchema: z.ZodType<
|
|
|
4370
4404
|
AgentToolInputRunParameters
|
|
4371
4405
|
> = z.object({
|
|
4372
4406
|
type:
|
|
4373
|
-
|
|
4407
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools16CodeToolType$outboundSchema,
|
|
4374
4408
|
properties: z.record(z.any()),
|
|
4375
4409
|
required: z.array(z.string()),
|
|
4376
4410
|
additionalProperties: z.record(z.any()).optional(),
|
|
@@ -4526,11 +4560,11 @@ export function blueprintToJSON(blueprint: Blueprint): string {
|
|
|
4526
4560
|
}
|
|
4527
4561
|
|
|
4528
4562
|
/** @internal */
|
|
4529
|
-
export const
|
|
4563
|
+
export const RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15HttpType$outboundSchema:
|
|
4530
4564
|
z.ZodNativeEnum<
|
|
4531
|
-
typeof
|
|
4565
|
+
typeof RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15HttpType
|
|
4532
4566
|
> = z.nativeEnum(
|
|
4533
|
-
|
|
4567
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15HttpType,
|
|
4534
4568
|
);
|
|
4535
4569
|
|
|
4536
4570
|
/** @internal */
|
|
@@ -4562,7 +4596,7 @@ export const Arguments$outboundSchema: z.ZodType<
|
|
|
4562
4596
|
Arguments
|
|
4563
4597
|
> = z.object({
|
|
4564
4598
|
type:
|
|
4565
|
-
|
|
4599
|
+
RunAgentAgentToolInputRunAgentsRequestRequestBodySettingsTools15HttpType$outboundSchema,
|
|
4566
4600
|
description: z.string(),
|
|
4567
4601
|
sendToModel: z.boolean().default(true),
|
|
4568
4602
|
defaultValue: z.union([z.string(), z.number(), z.boolean()]).optional(),
|
|
@@ -4662,6 +4696,58 @@ export function codeInterpreterToolToJSON(
|
|
|
4662
4696
|
);
|
|
4663
4697
|
}
|
|
4664
4698
|
|
|
4699
|
+
/** @internal */
|
|
4700
|
+
export type SidekickTool$Outbound = {
|
|
4701
|
+
type: "sidekick";
|
|
4702
|
+
requires_approval?: boolean | undefined;
|
|
4703
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4704
|
+
};
|
|
4705
|
+
|
|
4706
|
+
/** @internal */
|
|
4707
|
+
export const SidekickTool$outboundSchema: z.ZodType<
|
|
4708
|
+
SidekickTool$Outbound,
|
|
4709
|
+
z.ZodTypeDef,
|
|
4710
|
+
SidekickTool
|
|
4711
|
+
> = z.object({
|
|
4712
|
+
type: z.literal("sidekick"),
|
|
4713
|
+
requiresApproval: z.boolean().optional(),
|
|
4714
|
+
configuration: z.record(z.any()).optional(),
|
|
4715
|
+
}).transform((v) => {
|
|
4716
|
+
return remap$(v, {
|
|
4717
|
+
requiresApproval: "requires_approval",
|
|
4718
|
+
});
|
|
4719
|
+
});
|
|
4720
|
+
|
|
4721
|
+
export function sidekickToolToJSON(sidekickTool: SidekickTool): string {
|
|
4722
|
+
return JSON.stringify(SidekickTool$outboundSchema.parse(sidekickTool));
|
|
4723
|
+
}
|
|
4724
|
+
|
|
4725
|
+
/** @internal */
|
|
4726
|
+
export type AdvisorTool$Outbound = {
|
|
4727
|
+
type: "advisor";
|
|
4728
|
+
requires_approval?: boolean | undefined;
|
|
4729
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4730
|
+
};
|
|
4731
|
+
|
|
4732
|
+
/** @internal */
|
|
4733
|
+
export const AdvisorTool$outboundSchema: z.ZodType<
|
|
4734
|
+
AdvisorTool$Outbound,
|
|
4735
|
+
z.ZodTypeDef,
|
|
4736
|
+
AdvisorTool
|
|
4737
|
+
> = z.object({
|
|
4738
|
+
type: z.literal("advisor"),
|
|
4739
|
+
requiresApproval: z.boolean().optional(),
|
|
4740
|
+
configuration: z.record(z.any()).optional(),
|
|
4741
|
+
}).transform((v) => {
|
|
4742
|
+
return remap$(v, {
|
|
4743
|
+
requiresApproval: "requires_approval",
|
|
4744
|
+
});
|
|
4745
|
+
});
|
|
4746
|
+
|
|
4747
|
+
export function advisorToolToJSON(advisorTool: AdvisorTool): string {
|
|
4748
|
+
return JSON.stringify(AdvisorTool$outboundSchema.parse(advisorTool));
|
|
4749
|
+
}
|
|
4750
|
+
|
|
4665
4751
|
/** @internal */
|
|
4666
4752
|
export type CurrentDateTool$Outbound = {
|
|
4667
4753
|
type: "current_date";
|
|
@@ -4999,6 +5085,8 @@ export type AgentToolInputRun$Outbound =
|
|
|
4999
5085
|
| RetrieveKnowledgeBasesTool$Outbound
|
|
5000
5086
|
| QueryKnowledgeBaseTool$Outbound
|
|
5001
5087
|
| CurrentDateTool$Outbound
|
|
5088
|
+
| AdvisorTool$Outbound
|
|
5089
|
+
| SidekickTool$Outbound
|
|
5002
5090
|
| CodeInterpreterTool$Outbound
|
|
5003
5091
|
| HTTPToolRun$Outbound
|
|
5004
5092
|
| CodeToolRun$Outbound
|
|
@@ -5023,6 +5111,8 @@ export const AgentToolInputRun$outboundSchema: z.ZodType<
|
|
|
5023
5111
|
z.lazy(() => RetrieveKnowledgeBasesTool$outboundSchema),
|
|
5024
5112
|
z.lazy(() => QueryKnowledgeBaseTool$outboundSchema),
|
|
5025
5113
|
z.lazy(() => CurrentDateTool$outboundSchema),
|
|
5114
|
+
z.lazy(() => AdvisorTool$outboundSchema),
|
|
5115
|
+
z.lazy(() => SidekickTool$outboundSchema),
|
|
5026
5116
|
z.lazy(() => CodeInterpreterTool$outboundSchema),
|
|
5027
5117
|
z.lazy(() => HTTPToolRun$outboundSchema),
|
|
5028
5118
|
z.lazy(() => CodeToolRun$outboundSchema),
|
|
@@ -5131,6 +5221,8 @@ export type RunAgentSettings$Outbound = {
|
|
|
5131
5221
|
| RetrieveKnowledgeBasesTool$Outbound
|
|
5132
5222
|
| QueryKnowledgeBaseTool$Outbound
|
|
5133
5223
|
| CurrentDateTool$Outbound
|
|
5224
|
+
| AdvisorTool$Outbound
|
|
5225
|
+
| SidekickTool$Outbound
|
|
5134
5226
|
| CodeInterpreterTool$Outbound
|
|
5135
5227
|
| HTTPToolRun$Outbound
|
|
5136
5228
|
| CodeToolRun$Outbound
|
|
@@ -5167,6 +5259,8 @@ export const RunAgentSettings$outboundSchema: z.ZodType<
|
|
|
5167
5259
|
z.lazy(() => RetrieveKnowledgeBasesTool$outboundSchema),
|
|
5168
5260
|
z.lazy(() => QueryKnowledgeBaseTool$outboundSchema),
|
|
5169
5261
|
z.lazy(() => CurrentDateTool$outboundSchema),
|
|
5262
|
+
z.lazy(() => AdvisorTool$outboundSchema),
|
|
5263
|
+
z.lazy(() => SidekickTool$outboundSchema),
|
|
5170
5264
|
z.lazy(() => CodeInterpreterTool$outboundSchema),
|
|
5171
5265
|
z.lazy(() => HTTPToolRun$outboundSchema),
|
|
5172
5266
|
z.lazy(() => CodeToolRun$outboundSchema),
|