@orq-ai/node 4.11.0 → 4.11.3
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/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 +4 -4
- 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 +4 -4
- 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 +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- 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.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +3 -3
- package/packages/orq-rc/src/funcs/notifiersCreate.ts +162 -0
- package/packages/orq-rc/src/funcs/notifiersDelete.ts +168 -0
- package/packages/orq-rc/src/funcs/notifiersGet.ts +168 -0
- package/packages/orq-rc/src/funcs/notifiersList.ts +171 -0
- package/packages/orq-rc/src/funcs/notifiersUpdate.ts +171 -0
- package/packages/orq-rc/src/funcs/tracesAggregate.ts +162 -0
- package/packages/orq-rc/src/funcs/tracesGet.ts +168 -0
- package/packages/orq-rc/src/funcs/tracesGetSpan.ts +172 -0
- package/packages/orq-rc/src/funcs/tracesListFacetValues.ts +177 -0
- package/packages/orq-rc/src/funcs/tracesListFacets.ts +144 -0
- package/packages/orq-rc/src/funcs/tracesListFields.ts +144 -0
- package/packages/orq-rc/src/funcs/tracesListSpans.ts +174 -0
- package/packages/orq-rc/src/funcs/tracesQuery.ts +162 -0
- package/packages/orq-rc/src/funcs/tracesSearch.ts +162 -0
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/models/components/actionreviewrequestedstreamingevent.ts +5 -0
- package/packages/orq-rc/src/models/components/agentstartedstreamingevent.ts +5 -0
- package/packages/orq-rc/src/models/components/aggregatetracesrequest.ts +65 -0
- package/packages/orq-rc/src/models/components/aggregatetracesresponse.ts +37 -0
- package/packages/orq-rc/src/models/components/createnotifierrequest.ts +433 -0
- package/packages/orq-rc/src/models/components/createnotifierresponse.ts +35 -0
- package/packages/orq-rc/src/models/components/deletenotifierresponse.ts +27 -0
- package/packages/orq-rc/src/models/components/evaluatorresponsefunction.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsehttp.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsejsonschema.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsellm.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsepython.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponseragas.ts +2 -2
- package/packages/orq-rc/src/models/components/evaluatorresponsetypescript.ts +2 -2
- package/packages/orq-rc/src/models/components/getnotifierresponse.ts +35 -0
- package/packages/orq-rc/src/models/components/gettraceresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/gettracespanresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/index.ts +36 -0
- package/packages/orq-rc/src/models/components/listnotifiersresponse.ts +50 -0
- package/packages/orq-rc/src/models/components/listtracefacetsresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/listtracefacetvaluesresponse.ts +44 -0
- package/packages/orq-rc/src/models/components/listtracefieldsresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/listtracespansresponse.ts +44 -0
- package/packages/orq-rc/src/models/components/notifier.ts +465 -0
- package/packages/orq-rc/src/models/components/notifiertype.ts +21 -0
- package/packages/orq-rc/src/models/components/querytracesrequest.ts +48 -0
- package/packages/orq-rc/src/models/components/querytracesresponse.ts +37 -0
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/components/searchtracesrequest.ts +68 -0
- package/packages/orq-rc/src/models/components/searchtracesresponse.ts +72 -0
- package/packages/orq-rc/src/models/components/spandetail.ts +53 -0
- package/packages/orq-rc/src/models/components/spansummary.ts +76 -0
- package/packages/orq-rc/src/models/components/traceagent.ts +33 -0
- package/packages/orq-rc/src/models/components/traceaggregaterow.ts +33 -0
- package/packages/orq-rc/src/models/components/tracecompute.ts +30 -0
- package/packages/orq-rc/src/models/components/tracecontext.ts +39 -0
- package/packages/orq-rc/src/models/components/tracecost.ts +77 -0
- package/packages/orq-rc/src/models/components/tracefacet.ts +35 -0
- package/packages/orq-rc/src/models/components/tracefacetvalue.ts +33 -0
- package/packages/orq-rc/src/models/components/tracefield.ts +56 -0
- package/packages/orq-rc/src/models/components/tracefilter.ts +33 -0
- package/packages/orq-rc/src/models/components/tracesearchmeta.ts +45 -0
- package/packages/orq-rc/src/models/components/tracesort.ts +30 -0
- package/packages/orq-rc/src/models/components/tracesummary.ts +152 -0
- package/packages/orq-rc/src/models/components/traceusage.ts +62 -0
- package/packages/orq-rc/src/models/components/updatenotifierrequest.ts +130 -0
- package/packages/orq-rc/src/models/components/updatenotifierresponse.ts +35 -0
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +77 -0
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createprompt.ts +2 -0
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +2 -0
- package/packages/orq-rc/src/models/operations/deployments.ts +2 -0
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +2 -0
- package/packages/orq-rc/src/models/operations/getallprompts.ts +2 -0
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +2 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +2 -0
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/index.ts +8 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +5 -0
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +2 -0
- package/packages/orq-rc/src/models/operations/notifierdelete.ts +36 -0
- package/packages/orq-rc/src/models/operations/notifierget.ts +36 -0
- package/packages/orq-rc/src/models/operations/notifierlist.ts +59 -0
- package/packages/orq-rc/src/models/operations/notifierupdate.ts +41 -0
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +5 -0
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +67 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +67 -1
- package/packages/orq-rc/src/models/operations/tracesget.ts +36 -0
- package/packages/orq-rc/src/models/operations/tracesgetspan.ts +40 -0
- package/packages/orq-rc/src/models/operations/traceslistfacetvalues.ts +50 -0
- package/packages/orq-rc/src/models/operations/traceslistspans.ts +43 -0
- package/packages/orq-rc/src/models/operations/updateagent.ts +77 -0
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateprompt.ts +2 -0
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/sdk/feedback.ts +2 -2
- package/packages/orq-rc/src/sdk/notifiers.ts +100 -0
- package/packages/orq-rc/src/sdk/sdk.ts +12 -0
- package/packages/orq-rc/src/sdk/traces.ts +168 -0
- package/sdk/feedback.d.ts +2 -2
- package/sdk/feedback.js +2 -2
- package/src/lib/config.ts +2 -2
- 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 +4 -4
- 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 +4 -4
- 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 +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- 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 +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- 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 +2 -2
|
@@ -990,6 +990,10 @@ export type ProviderBuiltInTool = {
|
|
|
990
990
|
* Whether this tool requires approval before execution
|
|
991
991
|
*/
|
|
992
992
|
requiresApproval?: boolean | undefined;
|
|
993
|
+
/**
|
|
994
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
995
|
+
*/
|
|
996
|
+
configuration?: { [k: string]: any } | undefined;
|
|
993
997
|
};
|
|
994
998
|
|
|
995
999
|
/**
|
|
@@ -1210,6 +1214,10 @@ export type CurrentDateTool = {
|
|
|
1210
1214
|
* Whether this tool requires approval before execution
|
|
1211
1215
|
*/
|
|
1212
1216
|
requiresApproval?: boolean | undefined;
|
|
1217
|
+
/**
|
|
1218
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1219
|
+
*/
|
|
1220
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1213
1221
|
};
|
|
1214
1222
|
|
|
1215
1223
|
export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type =
|
|
@@ -1231,6 +1239,10 @@ export type QueryKnowledgeBaseTool = {
|
|
|
1231
1239
|
* Whether this tool requires approval before execution
|
|
1232
1240
|
*/
|
|
1233
1241
|
requiresApproval?: boolean | undefined;
|
|
1242
|
+
/**
|
|
1243
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1244
|
+
*/
|
|
1245
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1234
1246
|
};
|
|
1235
1247
|
|
|
1236
1248
|
export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type =
|
|
@@ -1252,6 +1264,10 @@ export type RetrieveKnowledgeBasesTool = {
|
|
|
1252
1264
|
* Whether this tool requires approval before execution
|
|
1253
1265
|
*/
|
|
1254
1266
|
requiresApproval?: boolean | undefined;
|
|
1267
|
+
/**
|
|
1268
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1269
|
+
*/
|
|
1270
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1255
1271
|
};
|
|
1256
1272
|
|
|
1257
1273
|
export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type =
|
|
@@ -1273,6 +1289,10 @@ export type DeleteMemoryDocumentTool = {
|
|
|
1273
1289
|
* Whether this tool requires approval before execution
|
|
1274
1290
|
*/
|
|
1275
1291
|
requiresApproval?: boolean | undefined;
|
|
1292
|
+
/**
|
|
1293
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1294
|
+
*/
|
|
1295
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1276
1296
|
};
|
|
1277
1297
|
|
|
1278
1298
|
export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType =
|
|
@@ -1294,6 +1314,10 @@ export type RetrieveMemoryStoresTool = {
|
|
|
1294
1314
|
* Whether this tool requires approval before execution
|
|
1295
1315
|
*/
|
|
1296
1316
|
requiresApproval?: boolean | undefined;
|
|
1317
|
+
/**
|
|
1318
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1319
|
+
*/
|
|
1320
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1297
1321
|
};
|
|
1298
1322
|
|
|
1299
1323
|
export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsType =
|
|
@@ -1315,6 +1339,10 @@ export type WriteMemoryStoreTool = {
|
|
|
1315
1339
|
* Whether this tool requires approval before execution
|
|
1316
1340
|
*/
|
|
1317
1341
|
requiresApproval?: boolean | undefined;
|
|
1342
|
+
/**
|
|
1343
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1344
|
+
*/
|
|
1345
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1318
1346
|
};
|
|
1319
1347
|
|
|
1320
1348
|
export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType =
|
|
@@ -1335,6 +1363,10 @@ export type QueryMemoryStoreTool = {
|
|
|
1335
1363
|
* Whether this tool requires approval before execution
|
|
1336
1364
|
*/
|
|
1337
1365
|
requiresApproval?: boolean | undefined;
|
|
1366
|
+
/**
|
|
1367
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1368
|
+
*/
|
|
1369
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1338
1370
|
};
|
|
1339
1371
|
|
|
1340
1372
|
export const CreateAgentRequestAgentToolInputCRUDAgentsRequestType = {
|
|
@@ -1353,6 +1385,10 @@ export type RetrieveAgentsTool = {
|
|
|
1353
1385
|
* Whether this tool requires approval before execution
|
|
1354
1386
|
*/
|
|
1355
1387
|
requiresApproval?: boolean | undefined;
|
|
1388
|
+
/**
|
|
1389
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1390
|
+
*/
|
|
1391
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1356
1392
|
};
|
|
1357
1393
|
|
|
1358
1394
|
export const CreateAgentRequestAgentToolInputCRUDAgentsType = {
|
|
@@ -1371,6 +1407,10 @@ export type CallSubAgentTool = {
|
|
|
1371
1407
|
* Whether this tool requires approval before execution
|
|
1372
1408
|
*/
|
|
1373
1409
|
requiresApproval?: boolean | undefined;
|
|
1410
|
+
/**
|
|
1411
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1412
|
+
*/
|
|
1413
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1374
1414
|
};
|
|
1375
1415
|
|
|
1376
1416
|
export const CreateAgentRequestAgentToolInputCRUDType = {
|
|
@@ -1389,6 +1429,10 @@ export type WebScraperTool = {
|
|
|
1389
1429
|
* Whether this tool requires approval before execution
|
|
1390
1430
|
*/
|
|
1391
1431
|
requiresApproval?: boolean | undefined;
|
|
1432
|
+
/**
|
|
1433
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1434
|
+
*/
|
|
1435
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1392
1436
|
};
|
|
1393
1437
|
|
|
1394
1438
|
export const AgentToolInputCRUDType = {
|
|
@@ -1405,6 +1449,10 @@ export type GoogleSearchTool = {
|
|
|
1405
1449
|
* Whether this tool requires approval before execution
|
|
1406
1450
|
*/
|
|
1407
1451
|
requiresApproval?: boolean | undefined;
|
|
1452
|
+
/**
|
|
1453
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1454
|
+
*/
|
|
1455
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1408
1456
|
};
|
|
1409
1457
|
|
|
1410
1458
|
/**
|
|
@@ -1752,6 +1800,10 @@ export type CreateAgentRequestTools = {
|
|
|
1752
1800
|
* Optional tool description
|
|
1753
1801
|
*/
|
|
1754
1802
|
description?: string | undefined;
|
|
1803
|
+
/**
|
|
1804
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
1805
|
+
*/
|
|
1806
|
+
configuration?: { [k: string]: any } | undefined;
|
|
1755
1807
|
requiresApproval: boolean;
|
|
1756
1808
|
/**
|
|
1757
1809
|
* Nested tool ID for MCP tools (identifies specific tool within MCP server)
|
|
@@ -4352,6 +4404,7 @@ export const ToolApprovalRequired$outboundSchema: z.ZodNativeEnum<
|
|
|
4352
4404
|
export type ProviderBuiltInTool$Outbound = {
|
|
4353
4405
|
type: string;
|
|
4354
4406
|
requires_approval?: boolean | undefined;
|
|
4407
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4355
4408
|
};
|
|
4356
4409
|
|
|
4357
4410
|
/** @internal */
|
|
@@ -4362,6 +4415,7 @@ export const ProviderBuiltInTool$outboundSchema: z.ZodType<
|
|
|
4362
4415
|
> = z.object({
|
|
4363
4416
|
type: z.string(),
|
|
4364
4417
|
requiresApproval: z.boolean().optional(),
|
|
4418
|
+
configuration: z.record(z.any()).optional(),
|
|
4365
4419
|
}).transform((v) => {
|
|
4366
4420
|
return remap$(v, {
|
|
4367
4421
|
requiresApproval: "requires_approval",
|
|
@@ -4585,6 +4639,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySetting
|
|
|
4585
4639
|
export type CurrentDateTool$Outbound = {
|
|
4586
4640
|
type: string;
|
|
4587
4641
|
requires_approval?: boolean | undefined;
|
|
4642
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4588
4643
|
};
|
|
4589
4644
|
|
|
4590
4645
|
/** @internal */
|
|
@@ -4596,6 +4651,7 @@ export const CurrentDateTool$outboundSchema: z.ZodType<
|
|
|
4596
4651
|
type:
|
|
4597
4652
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools11Type$outboundSchema,
|
|
4598
4653
|
requiresApproval: z.boolean().optional(),
|
|
4654
|
+
configuration: z.record(z.any()).optional(),
|
|
4599
4655
|
}).transform((v) => {
|
|
4600
4656
|
return remap$(v, {
|
|
4601
4657
|
requiresApproval: "requires_approval",
|
|
@@ -4620,6 +4676,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySetting
|
|
|
4620
4676
|
export type QueryKnowledgeBaseTool$Outbound = {
|
|
4621
4677
|
type: string;
|
|
4622
4678
|
requires_approval?: boolean | undefined;
|
|
4679
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4623
4680
|
};
|
|
4624
4681
|
|
|
4625
4682
|
/** @internal */
|
|
@@ -4631,6 +4688,7 @@ export const QueryKnowledgeBaseTool$outboundSchema: z.ZodType<
|
|
|
4631
4688
|
type:
|
|
4632
4689
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools10Type$outboundSchema,
|
|
4633
4690
|
requiresApproval: z.boolean().optional(),
|
|
4691
|
+
configuration: z.record(z.any()).optional(),
|
|
4634
4692
|
}).transform((v) => {
|
|
4635
4693
|
return remap$(v, {
|
|
4636
4694
|
requiresApproval: "requires_approval",
|
|
@@ -4657,6 +4715,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySetting
|
|
|
4657
4715
|
export type RetrieveKnowledgeBasesTool$Outbound = {
|
|
4658
4716
|
type: string;
|
|
4659
4717
|
requires_approval?: boolean | undefined;
|
|
4718
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4660
4719
|
};
|
|
4661
4720
|
|
|
4662
4721
|
/** @internal */
|
|
@@ -4668,6 +4727,7 @@ export const RetrieveKnowledgeBasesTool$outboundSchema: z.ZodType<
|
|
|
4668
4727
|
type:
|
|
4669
4728
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools9Type$outboundSchema,
|
|
4670
4729
|
requiresApproval: z.boolean().optional(),
|
|
4730
|
+
configuration: z.record(z.any()).optional(),
|
|
4671
4731
|
}).transform((v) => {
|
|
4672
4732
|
return remap$(v, {
|
|
4673
4733
|
requiresApproval: "requires_approval",
|
|
@@ -4694,6 +4754,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySetting
|
|
|
4694
4754
|
export type DeleteMemoryDocumentTool$Outbound = {
|
|
4695
4755
|
type: string;
|
|
4696
4756
|
requires_approval?: boolean | undefined;
|
|
4757
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4697
4758
|
};
|
|
4698
4759
|
|
|
4699
4760
|
/** @internal */
|
|
@@ -4705,6 +4766,7 @@ export const DeleteMemoryDocumentTool$outboundSchema: z.ZodType<
|
|
|
4705
4766
|
type:
|
|
4706
4767
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsTools8Type$outboundSchema,
|
|
4707
4768
|
requiresApproval: z.boolean().optional(),
|
|
4769
|
+
configuration: z.record(z.any()).optional(),
|
|
4708
4770
|
}).transform((v) => {
|
|
4709
4771
|
return remap$(v, {
|
|
4710
4772
|
requiresApproval: "requires_approval",
|
|
@@ -4731,6 +4793,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySetting
|
|
|
4731
4793
|
export type RetrieveMemoryStoresTool$Outbound = {
|
|
4732
4794
|
type: string;
|
|
4733
4795
|
requires_approval?: boolean | undefined;
|
|
4796
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4734
4797
|
};
|
|
4735
4798
|
|
|
4736
4799
|
/** @internal */
|
|
@@ -4742,6 +4805,7 @@ export const RetrieveMemoryStoresTool$outboundSchema: z.ZodType<
|
|
|
4742
4805
|
type:
|
|
4743
4806
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsToolsType$outboundSchema,
|
|
4744
4807
|
requiresApproval: z.boolean().optional(),
|
|
4808
|
+
configuration: z.record(z.any()).optional(),
|
|
4745
4809
|
}).transform((v) => {
|
|
4746
4810
|
return remap$(v, {
|
|
4747
4811
|
requiresApproval: "requires_approval",
|
|
@@ -4768,6 +4832,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySetting
|
|
|
4768
4832
|
export type WriteMemoryStoreTool$Outbound = {
|
|
4769
4833
|
type: string;
|
|
4770
4834
|
requires_approval?: boolean | undefined;
|
|
4835
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4771
4836
|
};
|
|
4772
4837
|
|
|
4773
4838
|
/** @internal */
|
|
@@ -4779,6 +4844,7 @@ export const WriteMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
4779
4844
|
type:
|
|
4780
4845
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodySettingsType$outboundSchema,
|
|
4781
4846
|
requiresApproval: z.boolean().optional(),
|
|
4847
|
+
configuration: z.record(z.any()).optional(),
|
|
4782
4848
|
}).transform((v) => {
|
|
4783
4849
|
return remap$(v, {
|
|
4784
4850
|
requiresApproval: "requires_approval",
|
|
@@ -4805,6 +4871,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType$ou
|
|
|
4805
4871
|
export type QueryMemoryStoreTool$Outbound = {
|
|
4806
4872
|
type: string;
|
|
4807
4873
|
requires_approval?: boolean | undefined;
|
|
4874
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4808
4875
|
};
|
|
4809
4876
|
|
|
4810
4877
|
/** @internal */
|
|
@@ -4816,6 +4883,7 @@ export const QueryMemoryStoreTool$outboundSchema: z.ZodType<
|
|
|
4816
4883
|
type:
|
|
4817
4884
|
CreateAgentRequestAgentToolInputCRUDAgentsRequestRequestBodyType$outboundSchema,
|
|
4818
4885
|
requiresApproval: z.boolean().optional(),
|
|
4886
|
+
configuration: z.record(z.any()).optional(),
|
|
4819
4887
|
}).transform((v) => {
|
|
4820
4888
|
return remap$(v, {
|
|
4821
4889
|
requiresApproval: "requires_approval",
|
|
@@ -4840,6 +4908,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsRequestType$outboundSchem
|
|
|
4840
4908
|
export type RetrieveAgentsTool$Outbound = {
|
|
4841
4909
|
type: string;
|
|
4842
4910
|
requires_approval?: boolean | undefined;
|
|
4911
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4843
4912
|
};
|
|
4844
4913
|
|
|
4845
4914
|
/** @internal */
|
|
@@ -4850,6 +4919,7 @@ export const RetrieveAgentsTool$outboundSchema: z.ZodType<
|
|
|
4850
4919
|
> = z.object({
|
|
4851
4920
|
type: CreateAgentRequestAgentToolInputCRUDAgentsRequestType$outboundSchema,
|
|
4852
4921
|
requiresApproval: z.boolean().optional(),
|
|
4922
|
+
configuration: z.record(z.any()).optional(),
|
|
4853
4923
|
}).transform((v) => {
|
|
4854
4924
|
return remap$(v, {
|
|
4855
4925
|
requiresApproval: "requires_approval",
|
|
@@ -4873,6 +4943,7 @@ export const CreateAgentRequestAgentToolInputCRUDAgentsType$outboundSchema:
|
|
|
4873
4943
|
export type CallSubAgentTool$Outbound = {
|
|
4874
4944
|
type: string;
|
|
4875
4945
|
requires_approval?: boolean | undefined;
|
|
4946
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4876
4947
|
};
|
|
4877
4948
|
|
|
4878
4949
|
/** @internal */
|
|
@@ -4883,6 +4954,7 @@ export const CallSubAgentTool$outboundSchema: z.ZodType<
|
|
|
4883
4954
|
> = z.object({
|
|
4884
4955
|
type: CreateAgentRequestAgentToolInputCRUDAgentsType$outboundSchema,
|
|
4885
4956
|
requiresApproval: z.boolean().optional(),
|
|
4957
|
+
configuration: z.record(z.any()).optional(),
|
|
4886
4958
|
}).transform((v) => {
|
|
4887
4959
|
return remap$(v, {
|
|
4888
4960
|
requiresApproval: "requires_approval",
|
|
@@ -4906,6 +4978,7 @@ export const CreateAgentRequestAgentToolInputCRUDType$outboundSchema:
|
|
|
4906
4978
|
export type WebScraperTool$Outbound = {
|
|
4907
4979
|
type: string;
|
|
4908
4980
|
requires_approval?: boolean | undefined;
|
|
4981
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4909
4982
|
};
|
|
4910
4983
|
|
|
4911
4984
|
/** @internal */
|
|
@@ -4916,6 +4989,7 @@ export const WebScraperTool$outboundSchema: z.ZodType<
|
|
|
4916
4989
|
> = z.object({
|
|
4917
4990
|
type: CreateAgentRequestAgentToolInputCRUDType$outboundSchema,
|
|
4918
4991
|
requiresApproval: z.boolean().optional(),
|
|
4992
|
+
configuration: z.record(z.any()).optional(),
|
|
4919
4993
|
}).transform((v) => {
|
|
4920
4994
|
return remap$(v, {
|
|
4921
4995
|
requiresApproval: "requires_approval",
|
|
@@ -4935,6 +5009,7 @@ export const AgentToolInputCRUDType$outboundSchema: z.ZodNativeEnum<
|
|
|
4935
5009
|
export type GoogleSearchTool$Outbound = {
|
|
4936
5010
|
type: string;
|
|
4937
5011
|
requires_approval?: boolean | undefined;
|
|
5012
|
+
configuration?: { [k: string]: any } | undefined;
|
|
4938
5013
|
};
|
|
4939
5014
|
|
|
4940
5015
|
/** @internal */
|
|
@@ -4945,6 +5020,7 @@ export const GoogleSearchTool$outboundSchema: z.ZodType<
|
|
|
4945
5020
|
> = z.object({
|
|
4946
5021
|
type: AgentToolInputCRUDType$outboundSchema,
|
|
4947
5022
|
requiresApproval: z.boolean().optional(),
|
|
5023
|
+
configuration: z.record(z.any()).optional(),
|
|
4948
5024
|
}).transform((v) => {
|
|
4949
5025
|
return remap$(v, {
|
|
4950
5026
|
requiresApproval: "requires_approval",
|
|
@@ -5409,6 +5485,7 @@ export const CreateAgentRequestTools$inboundSchema: z.ZodType<
|
|
|
5409
5485
|
action_type: z.string(),
|
|
5410
5486
|
display_name: z.string().optional(),
|
|
5411
5487
|
description: z.string().optional(),
|
|
5488
|
+
configuration: z.record(z.any()).optional(),
|
|
5412
5489
|
requires_approval: z.boolean().default(false),
|
|
5413
5490
|
tool_id: z.string().optional(),
|
|
5414
5491
|
conditions: z.array(z.lazy(() => Conditions$inboundSchema)).optional(),
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-07-
|
|
141
|
+
"2026-07-06T07:43:53.778Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2607,7 +2607,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2607
2607
|
explanation: z.string().optional(),
|
|
2608
2608
|
reviewed_by_id: z.string(),
|
|
2609
2609
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2610
|
-
"2026-07-
|
|
2610
|
+
"2026-07-06T07:44:15.823Z",
|
|
2611
2611
|
).transform(v => new Date(v)),
|
|
2612
2612
|
type: z.literal("string_array"),
|
|
2613
2613
|
values: z.array(z.string()),
|
|
@@ -2692,7 +2692,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2692
2692
|
explanation: z.string().optional(),
|
|
2693
2693
|
reviewed_by_id: z.string(),
|
|
2694
2694
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2695
|
-
"2026-07-
|
|
2695
|
+
"2026-07-06T07:44:15.821Z",
|
|
2696
2696
|
).transform(v => new Date(v)),
|
|
2697
2697
|
type: z.literal("number"),
|
|
2698
2698
|
value: z.number(),
|
|
@@ -2777,7 +2777,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2777
2777
|
explanation: z.string().optional(),
|
|
2778
2778
|
reviewed_by_id: z.string(),
|
|
2779
2779
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2780
|
-
"2026-07-
|
|
2780
|
+
"2026-07-06T07:44:15.820Z",
|
|
2781
2781
|
).transform(v => new Date(v)),
|
|
2782
2782
|
type: z.literal("string"),
|
|
2783
2783
|
value: z.string(),
|
|
@@ -2862,7 +2862,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2862
2862
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2863
2863
|
.optional(),
|
|
2864
2864
|
updated: z.string().datetime({ offset: true }).default(
|
|
2865
|
-
"2026-07-
|
|
2865
|
+
"2026-07-06T07:43:53.778Z",
|
|
2866
2866
|
).transform(v => new Date(v)),
|
|
2867
2867
|
}).transform((v) => {
|
|
2868
2868
|
return remap$(v, {
|
|
@@ -412,7 +412,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
412
412
|
z.ZodTypeDef,
|
|
413
413
|
unknown
|
|
414
414
|
> = z.object({
|
|
415
|
-
_id: z.string().default("
|
|
415
|
+
_id: z.string().default("01KWV652VXCDXE6A65CDV0A48R"),
|
|
416
416
|
display_name: z.string(),
|
|
417
417
|
description: z.nullable(z.string()).optional(),
|
|
418
418
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -1896,7 +1896,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1896
1896
|
z.ZodTypeDef,
|
|
1897
1897
|
unknown
|
|
1898
1898
|
> = z.object({
|
|
1899
|
-
_id: z.string().default("
|
|
1899
|
+
_id: z.string().default("tool_01KWV652P5Z6MZSZMVQVG471XX"),
|
|
1900
1900
|
path: z.string(),
|
|
1901
1901
|
key: z.string(),
|
|
1902
1902
|
display_name: z.string().optional(),
|
|
@@ -1993,7 +1993,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1993
1993
|
z.ZodTypeDef,
|
|
1994
1994
|
unknown
|
|
1995
1995
|
> = z.object({
|
|
1996
|
-
id: z.string().default("
|
|
1996
|
+
id: z.string().default("01KWV652P3DVRBTYE1ZT597X3A"),
|
|
1997
1997
|
name: z.string(),
|
|
1998
1998
|
description: z.string().optional(),
|
|
1999
1999
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2049,7 +2049,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2049
2049
|
z.ZodTypeDef,
|
|
2050
2050
|
unknown
|
|
2051
2051
|
> = z.object({
|
|
2052
|
-
_id: z.string().default("
|
|
2052
|
+
_id: z.string().default("tool_01KWV652P1B4YFH4MMMDP4KN96"),
|
|
2053
2053
|
path: z.string(),
|
|
2054
2054
|
key: z.string(),
|
|
2055
2055
|
display_name: z.string().optional(),
|
|
@@ -2235,7 +2235,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2235
2235
|
z.ZodTypeDef,
|
|
2236
2236
|
unknown
|
|
2237
2237
|
> = z.object({
|
|
2238
|
-
_id: z.string().default("
|
|
2238
|
+
_id: z.string().default("tool_01KWV652NX0BF8NV1P3MBXDTYA"),
|
|
2239
2239
|
path: z.string(),
|
|
2240
2240
|
key: z.string(),
|
|
2241
2241
|
display_name: z.string().optional(),
|
|
@@ -2328,7 +2328,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2328
2328
|
z.ZodTypeDef,
|
|
2329
2329
|
unknown
|
|
2330
2330
|
> = z.object({
|
|
2331
|
-
_id: z.string().default("
|
|
2331
|
+
_id: z.string().default("tool_01KWV652NT1135JHGMYJQTGW3Z"),
|
|
2332
2332
|
path: z.string(),
|
|
2333
2333
|
key: z.string(),
|
|
2334
2334
|
display_name: z.string().optional(),
|
|
@@ -2429,7 +2429,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2429
2429
|
z.ZodTypeDef,
|
|
2430
2430
|
unknown
|
|
2431
2431
|
> = z.object({
|
|
2432
|
-
_id: z.string().default("
|
|
2432
|
+
_id: z.string().default("tool_01KWV652NQEZKKZQMKPAR3C17F"),
|
|
2433
2433
|
path: z.string(),
|
|
2434
2434
|
key: z.string(),
|
|
2435
2435
|
display_name: z.string().optional(),
|
|
@@ -766,7 +766,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
766
766
|
z.ZodTypeDef,
|
|
767
767
|
unknown
|
|
768
768
|
> = z.object({
|
|
769
|
-
_id: z.string().default("
|
|
769
|
+
_id: z.string().default("tool_01KWV652N62D89XGMGF7S7AVGK"),
|
|
770
770
|
path: z.string(),
|
|
771
771
|
key: z.string(),
|
|
772
772
|
display_name: z.string().optional(),
|
|
@@ -863,7 +863,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
863
863
|
z.ZodTypeDef,
|
|
864
864
|
unknown
|
|
865
865
|
> = z.object({
|
|
866
|
-
id: z.string().default("
|
|
866
|
+
id: z.string().default("01KWV652N5HY03QMXWVHJXJ7VB"),
|
|
867
867
|
name: z.string(),
|
|
868
868
|
description: z.string().optional(),
|
|
869
869
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -916,7 +916,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
916
916
|
z.ZodTypeDef,
|
|
917
917
|
unknown
|
|
918
918
|
> = z.object({
|
|
919
|
-
_id: z.string().default("
|
|
919
|
+
_id: z.string().default("tool_01KWV652N3DE5Q0WRF6EZ5SR9F"),
|
|
920
920
|
path: z.string(),
|
|
921
921
|
key: z.string(),
|
|
922
922
|
display_name: z.string().optional(),
|
|
@@ -1100,7 +1100,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1100
1100
|
z.ZodTypeDef,
|
|
1101
1101
|
unknown
|
|
1102
1102
|
> = z.object({
|
|
1103
|
-
_id: z.string().default("
|
|
1103
|
+
_id: z.string().default("tool_01KWV652N0VANRVZM0QPTRY114"),
|
|
1104
1104
|
path: z.string(),
|
|
1105
1105
|
key: z.string(),
|
|
1106
1106
|
display_name: z.string().optional(),
|
|
@@ -1193,7 +1193,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1193
1193
|
z.ZodTypeDef,
|
|
1194
1194
|
unknown
|
|
1195
1195
|
> = z.object({
|
|
1196
|
-
_id: z.string().default("
|
|
1196
|
+
_id: z.string().default("tool_01KWV652MYHX4VWP3VHPHJ4GH3"),
|
|
1197
1197
|
path: z.string(),
|
|
1198
1198
|
key: z.string(),
|
|
1199
1199
|
display_name: z.string().optional(),
|
|
@@ -1291,7 +1291,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1291
1291
|
z.ZodTypeDef,
|
|
1292
1292
|
unknown
|
|
1293
1293
|
> = z.object({
|
|
1294
|
-
_id: z.string().default("
|
|
1294
|
+
_id: z.string().default("tool_01KWV652MWX82GDPZHS1FMNKYM"),
|
|
1295
1295
|
path: z.string(),
|
|
1296
1296
|
key: z.string(),
|
|
1297
1297
|
display_name: z.string().optional(),
|
|
@@ -140,7 +140,7 @@ export const GetV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
|
|
|
140
140
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
141
141
|
.optional(),
|
|
142
142
|
updated: z.string().datetime({ offset: true }).default(
|
|
143
|
-
"2026-07-
|
|
143
|
+
"2026-07-06T07:43:53.778Z",
|
|
144
144
|
).transform(v => new Date(v)),
|
|
145
145
|
filter_type: z.literal("name"),
|
|
146
146
|
filter_value: z.string(),
|
|
@@ -185,7 +185,7 @@ export const GetV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
|
|
|
185
185
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
186
186
|
.optional(),
|
|
187
187
|
updated: z.string().datetime({ offset: true }).default(
|
|
188
|
-
"2026-07-
|
|
188
|
+
"2026-07-06T07:43:53.778Z",
|
|
189
189
|
).transform(v => new Date(v)),
|
|
190
190
|
filter_type: z.literal("span_type"),
|
|
191
191
|
filter_values: z.array(z.string()),
|
|
@@ -141,7 +141,7 @@ export const GetV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
|
|
|
141
141
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
142
142
|
.optional(),
|
|
143
143
|
updated: z.string().datetime({ offset: true }).default(
|
|
144
|
-
"2026-07-
|
|
144
|
+
"2026-07-06T07:43:53.778Z",
|
|
145
145
|
).transform(v => new Date(v)),
|
|
146
146
|
filter_type: z.literal("name"),
|
|
147
147
|
filter_value: z.string(),
|
|
@@ -186,7 +186,7 @@ export const GetV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
|
|
|
186
186
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
187
187
|
.optional(),
|
|
188
188
|
updated: z.string().datetime({ offset: true }).default(
|
|
189
|
-
"2026-07-
|
|
189
|
+
"2026-07-06T07:43:53.778Z",
|
|
190
190
|
).transform(v => new Date(v)),
|
|
191
191
|
filter_type: z.literal("span_type"),
|
|
192
192
|
filter_values: z.array(z.string()),
|
|
@@ -121,6 +121,10 @@ export * from "./modelupdateawsbedrock.js";
|
|
|
121
121
|
export * from "./modelupdateopenailike.js";
|
|
122
122
|
export * from "./modelvalidate.js";
|
|
123
123
|
export * from "./modelvalidateawsbedrock.js";
|
|
124
|
+
export * from "./notifierdelete.js";
|
|
125
|
+
export * from "./notifierget.js";
|
|
126
|
+
export * from "./notifierlist.js";
|
|
127
|
+
export * from "./notifierupdate.js";
|
|
124
128
|
export * from "./parse.js";
|
|
125
129
|
export * from "./patchv2humanevalsetsid.js";
|
|
126
130
|
export * from "./policycreate.js";
|
|
@@ -164,6 +168,10 @@ export * from "./skilllist.js";
|
|
|
164
168
|
export * from "./skillupdate.js";
|
|
165
169
|
export * from "./streamagent.js";
|
|
166
170
|
export * from "./streamrunagent.js";
|
|
171
|
+
export * from "./tracesget.js";
|
|
172
|
+
export * from "./tracesgetspan.js";
|
|
173
|
+
export * from "./traceslistfacetvalues.js";
|
|
174
|
+
export * from "./traceslistspans.js";
|
|
167
175
|
export * from "./triggeragentschedule.js";
|
|
168
176
|
export * from "./updateagent.js";
|
|
169
177
|
export * from "./updateagentschedule.js";
|
|
@@ -152,6 +152,10 @@ export type ListAgentsTools = {
|
|
|
152
152
|
* Optional tool description
|
|
153
153
|
*/
|
|
154
154
|
description?: string | undefined;
|
|
155
|
+
/**
|
|
156
|
+
* Static tool configuration set at design time. Merged over LLM-provided arguments at execution time.
|
|
157
|
+
*/
|
|
158
|
+
configuration?: { [k: string]: any } | undefined;
|
|
155
159
|
requiresApproval: boolean;
|
|
156
160
|
/**
|
|
157
161
|
* Nested tool ID for MCP tools (identifies specific tool within MCP server)
|
|
@@ -1471,6 +1475,7 @@ export const ListAgentsTools$inboundSchema: z.ZodType<
|
|
|
1471
1475
|
action_type: z.string(),
|
|
1472
1476
|
display_name: z.string().optional(),
|
|
1473
1477
|
description: z.string().optional(),
|
|
1478
|
+
configuration: z.record(z.any()).optional(),
|
|
1474
1479
|
requires_approval: z.boolean().default(false),
|
|
1475
1480
|
tool_id: z.string().optional(),
|
|
1476
1481
|
conditions: z.array(z.lazy(() => ListAgentsConditions$inboundSchema))
|