@orq-ai/node 3.12.10 → 3.12.11
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 +111 -111
- package/bin/mcp-server.js.map +30 -30
- 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/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- 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 +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/docs/sdks/agents/README.md +2 -2
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/agentsRun.ts +1 -1
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/tools/agentsRun.ts +1 -1
- package/packages/orq-rc/src/mcp-server/tools/agentsStreamRun.ts +1 -1
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/creatememory.ts +17 -8
- package/packages/orq-rc/src/models/operations/creatememorydocument.ts +13 -10
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +17 -17
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/getallmemories.ts +7 -4
- package/packages/orq-rc/src/models/operations/getallmemorydocuments.ts +7 -4
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listagents.ts +2 -2
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievememory.ts +7 -4
- package/packages/orq-rc/src/models/operations/retrievememorydocument.ts +7 -4
- package/packages/orq-rc/src/models/operations/runagent.ts +279 -112
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +273 -99
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +28 -28
- package/packages/orq-rc/src/models/operations/updatememory.ts +17 -8
- package/packages/orq-rc/src/models/operations/updatememorydocument.ts +13 -10
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +21 -17
- package/packages/orq-rc/src/sdk/agents.ts +2 -2
- 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/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 +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- 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/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- 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 +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
|
@@ -127,7 +127,7 @@ exports.RetrieveDatasetResponseBody$inboundSchema = z.object({
|
|
|
127
127
|
metadata: z.lazy(() => exports.RetrieveDatasetMetadata$inboundSchema),
|
|
128
128
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
129
129
|
.optional(),
|
|
130
|
-
updated: z.string().datetime({ offset: true }).default("2025-09-
|
|
130
|
+
updated: z.string().datetime({ offset: true }).default("2025-09-18T16:20:48.743Z").transform(v => new Date(v)),
|
|
131
131
|
}).transform((v) => {
|
|
132
132
|
return (0, primitives_js_1.remap)(v, {
|
|
133
133
|
"_id": "id",
|
|
@@ -148,7 +148,7 @@ exports.RetrieveDatasetResponseBody$outboundSchema = z.object({
|
|
|
148
148
|
updatedById: z.string().optional(),
|
|
149
149
|
metadata: z.lazy(() => exports.RetrieveDatasetMetadata$outboundSchema),
|
|
150
150
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
151
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
151
|
+
updated: z.date().default(() => new Date("2025-09-18T16:20:48.743Z"))
|
|
152
152
|
.transform(v => v.toISOString()),
|
|
153
153
|
}).transform((v) => {
|
|
154
154
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -105,7 +105,7 @@ var RetrieveDatasourceStatus$;
|
|
|
105
105
|
})(RetrieveDatasourceStatus$ || (exports.RetrieveDatasourceStatus$ = RetrieveDatasourceStatus$ = {}));
|
|
106
106
|
/** @internal */
|
|
107
107
|
exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
108
|
-
_id: z.string().default("
|
|
108
|
+
_id: z.string().default("01K5ET20RM42XE14RQFDVDF4WR"),
|
|
109
109
|
display_name: z.string(),
|
|
110
110
|
description: z.string().optional(),
|
|
111
111
|
status: exports.RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -129,7 +129,7 @@ exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
|
129
129
|
});
|
|
130
130
|
/** @internal */
|
|
131
131
|
exports.RetrieveDatasourceResponseBody$outboundSchema = z.object({
|
|
132
|
-
id: z.string().default("
|
|
132
|
+
id: z.string().default("01K5ET20RM42XE14RQFDVDF4WR"),
|
|
133
133
|
displayName: z.string(),
|
|
134
134
|
description: z.string().optional(),
|
|
135
135
|
status: exports.RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -305,7 +305,7 @@ exports.UpdateBudgetResponseBody$inboundSchema = z.object({
|
|
|
305
305
|
consumption: z.lazy(() => exports.UpdateBudgetConsumption$inboundSchema).optional(),
|
|
306
306
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
307
307
|
.optional(),
|
|
308
|
-
updated: z.string().datetime({ offset: true }).default("2025-09-
|
|
308
|
+
updated: z.string().datetime({ offset: true }).default("2025-09-18T16:20:48.743Z").transform(v => new Date(v)),
|
|
309
309
|
}).transform((v) => {
|
|
310
310
|
return (0, primitives_js_1.remap)(v, {
|
|
311
311
|
"_id": "id",
|
|
@@ -324,7 +324,7 @@ exports.UpdateBudgetResponseBody$outboundSchema = z.object({
|
|
|
324
324
|
isActive: z.boolean(),
|
|
325
325
|
consumption: z.lazy(() => exports.UpdateBudgetConsumption$outboundSchema).optional(),
|
|
326
326
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
327
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
327
|
+
updated: z.date().default(() => new Date("2025-09-18T16:20:48.743Z"))
|
|
328
328
|
.transform(v => v.toISOString()),
|
|
329
329
|
}).transform((v) => {
|
|
330
330
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -135,7 +135,7 @@ exports.UpdateContactResponseBody$inboundSchema = z.object({
|
|
|
135
135
|
metadata: z.record(z.any()).optional(),
|
|
136
136
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
137
137
|
.optional(),
|
|
138
|
-
updated: z.string().datetime({ offset: true }).default("2025-09-
|
|
138
|
+
updated: z.string().datetime({ offset: true }).default("2025-09-18T16:20:48.743Z").transform(v => new Date(v)),
|
|
139
139
|
}).transform((v) => {
|
|
140
140
|
return (0, primitives_js_1.remap)(v, {
|
|
141
141
|
"_id": "id",
|
|
@@ -154,7 +154,7 @@ exports.UpdateContactResponseBody$outboundSchema = z.object({
|
|
|
154
154
|
tags: z.array(z.string()).optional(),
|
|
155
155
|
metadata: z.record(z.any()).optional(),
|
|
156
156
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
157
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
157
|
+
updated: z.date().default(() => new Date("2025-09-18T16:20:48.743Z"))
|
|
158
158
|
.transform(v => v.toISOString()),
|
|
159
159
|
}).transform((v) => {
|
|
160
160
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -2789,7 +2789,7 @@ exports.UpdateDatapointResponseBody$inboundSchema = z.object({
|
|
|
2789
2789
|
updated_by_id: z.string().optional(),
|
|
2790
2790
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2791
2791
|
.optional(),
|
|
2792
|
-
updated: z.string().datetime({ offset: true }).default("2025-09-
|
|
2792
|
+
updated: z.string().datetime({ offset: true }).default("2025-09-18T16:20:48.743Z").transform(v => new Date(v)),
|
|
2793
2793
|
}).transform((v) => {
|
|
2794
2794
|
return (0, primitives_js_1.remap)(v, {
|
|
2795
2795
|
"_id": "id",
|
|
@@ -2817,7 +2817,7 @@ exports.UpdateDatapointResponseBody$outboundSchema = z.object({
|
|
|
2817
2817
|
createdById: z.string().optional(),
|
|
2818
2818
|
updatedById: z.string().optional(),
|
|
2819
2819
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
2820
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
2820
|
+
updated: z.date().default(() => new Date("2025-09-18T16:20:48.743Z"))
|
|
2821
2821
|
.transform(v => v.toISOString()),
|
|
2822
2822
|
}).transform((v) => {
|
|
2823
2823
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -174,7 +174,7 @@ exports.UpdateDatasetResponseBody$inboundSchema = z.object({
|
|
|
174
174
|
version: z.string().optional(),
|
|
175
175
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
176
176
|
.optional(),
|
|
177
|
-
updated: z.string().datetime({ offset: true }).default("2025-09-
|
|
177
|
+
updated: z.string().datetime({ offset: true }).default("2025-09-18T16:20:48.743Z").transform(v => new Date(v)),
|
|
178
178
|
}).transform((v) => {
|
|
179
179
|
return (0, primitives_js_1.remap)(v, {
|
|
180
180
|
"_id": "id",
|
|
@@ -198,7 +198,7 @@ exports.UpdateDatasetResponseBody$outboundSchema = z.object({
|
|
|
198
198
|
parentId: z.string().optional(),
|
|
199
199
|
version: z.string().optional(),
|
|
200
200
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
201
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
201
|
+
updated: z.date().default(() => new Date("2025-09-18T16:20:48.743Z"))
|
|
202
202
|
.transform(v => v.toISOString()),
|
|
203
203
|
}).transform((v) => {
|
|
204
204
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -144,7 +144,7 @@ var UpdateDatasourceStatus$;
|
|
|
144
144
|
})(UpdateDatasourceStatus$ || (exports.UpdateDatasourceStatus$ = UpdateDatasourceStatus$ = {}));
|
|
145
145
|
/** @internal */
|
|
146
146
|
exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
147
|
-
_id: z.string().default("
|
|
147
|
+
_id: z.string().default("01K5ET20RPKM537918DG88PY71"),
|
|
148
148
|
display_name: z.string(),
|
|
149
149
|
description: z.string().optional(),
|
|
150
150
|
status: exports.UpdateDatasourceStatus$inboundSchema,
|
|
@@ -168,7 +168,7 @@ exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
|
168
168
|
});
|
|
169
169
|
/** @internal */
|
|
170
170
|
exports.UpdateDatasourceResponseBody$outboundSchema = z.object({
|
|
171
|
-
id: z.string().default("
|
|
171
|
+
id: z.string().default("01K5ET20RPKM537918DG88PY71"),
|
|
172
172
|
displayName: z.string(),
|
|
173
173
|
description: z.string().optional(),
|
|
174
174
|
status: exports.UpdateDatasourceStatus$outboundSchema,
|
|
@@ -1302,8 +1302,8 @@ var UpdateEvalResponseBodyEvalsResponse200Type$;
|
|
|
1302
1302
|
exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
1303
1303
|
_id: z.string(),
|
|
1304
1304
|
description: z.string(),
|
|
1305
|
-
created: z.string().default("2025-09-
|
|
1306
|
-
updated: z.string().default("2025-09-
|
|
1305
|
+
created: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1306
|
+
updated: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1307
1307
|
guardrail_config: z.union([
|
|
1308
1308
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
1309
1309
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
@@ -1321,8 +1321,8 @@ exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
|
1321
1321
|
exports.UpdateEvalResponseBodyPython$outboundSchema = z.object({
|
|
1322
1322
|
id: z.string(),
|
|
1323
1323
|
description: z.string(),
|
|
1324
|
-
created: z.string().default("2025-09-
|
|
1325
|
-
updated: z.string().default("2025-09-
|
|
1324
|
+
created: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1325
|
+
updated: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1326
1326
|
guardrailConfig: z.union([
|
|
1327
1327
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
1328
1328
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
@@ -1524,8 +1524,8 @@ var UpdateEvalResponseBodyMethod$;
|
|
|
1524
1524
|
exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
1525
1525
|
_id: z.string(),
|
|
1526
1526
|
description: z.string(),
|
|
1527
|
-
created: z.string().default("2025-09-
|
|
1528
|
-
updated: z.string().default("2025-09-
|
|
1527
|
+
created: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1528
|
+
updated: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1529
1529
|
guardrail_config: z.union([
|
|
1530
1530
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
1531
1531
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
@@ -1546,8 +1546,8 @@ exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
|
1546
1546
|
exports.UpdateEvalResponseBodyHTTP$outboundSchema = z.object({
|
|
1547
1547
|
id: z.string(),
|
|
1548
1548
|
description: z.string(),
|
|
1549
|
-
created: z.string().default("2025-09-
|
|
1550
|
-
updated: z.string().default("2025-09-
|
|
1549
|
+
created: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1550
|
+
updated: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1551
1551
|
guardrailConfig: z.union([
|
|
1552
1552
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
1553
1553
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
@@ -1733,8 +1733,8 @@ var UpdateEvalResponseBodyEvalsType$;
|
|
|
1733
1733
|
exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
1734
1734
|
_id: z.string(),
|
|
1735
1735
|
description: z.string(),
|
|
1736
|
-
created: z.string().default("2025-09-
|
|
1737
|
-
updated: z.string().default("2025-09-
|
|
1736
|
+
created: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1737
|
+
updated: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1738
1738
|
guardrail_config: z.union([
|
|
1739
1739
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1740
1740
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
@@ -1752,8 +1752,8 @@ exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
|
1752
1752
|
exports.UpdateEvalResponseBodyJSON$outboundSchema = z.object({
|
|
1753
1753
|
id: z.string(),
|
|
1754
1754
|
description: z.string(),
|
|
1755
|
-
created: z.string().default("2025-09-
|
|
1756
|
-
updated: z.string().default("2025-09-
|
|
1755
|
+
created: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1756
|
+
updated: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1757
1757
|
guardrailConfig: z.union([
|
|
1758
1758
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1759
1759
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -1938,8 +1938,8 @@ var UpdateEvalResponseBodyType$;
|
|
|
1938
1938
|
exports.UpdateEvalResponseBodyLLM$inboundSchema = z.object({
|
|
1939
1939
|
_id: z.string(),
|
|
1940
1940
|
description: z.string(),
|
|
1941
|
-
created: z.string().default("2025-09-
|
|
1942
|
-
updated: z.string().default("2025-09-
|
|
1941
|
+
created: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1942
|
+
updated: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1943
1943
|
guardrail_config: z.union([
|
|
1944
1944
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
1945
1945
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -1958,8 +1958,8 @@ exports.UpdateEvalResponseBodyLLM$inboundSchema = z.object({
|
|
|
1958
1958
|
exports.UpdateEvalResponseBodyLLM$outboundSchema = z.object({
|
|
1959
1959
|
id: z.string(),
|
|
1960
1960
|
description: z.string(),
|
|
1961
|
-
created: z.string().default("2025-09-
|
|
1962
|
-
updated: z.string().default("2025-09-
|
|
1961
|
+
created: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1962
|
+
updated: z.string().default("2025-09-18T16:20:51.118Z"),
|
|
1963
1963
|
guardrailConfig: z.union([
|
|
1964
1964
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
1965
1965
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
package/package.json
CHANGED
|
@@ -235,7 +235,7 @@ run();
|
|
|
235
235
|
|
|
236
236
|
## run
|
|
237
237
|
|
|
238
|
-
Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution.
|
|
238
|
+
Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution. Memory stores can be associated with specific entities (users, sessions) using the memory.entity_id parameter.
|
|
239
239
|
|
|
240
240
|
### Example Usage
|
|
241
241
|
|
|
@@ -348,7 +348,7 @@ run();
|
|
|
348
348
|
|
|
349
349
|
## streamRun
|
|
350
350
|
|
|
351
|
-
Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout.
|
|
351
|
+
Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout. Memory stores can be associated with specific entities (users, sessions) using the memory.entity_id parameter.
|
|
352
352
|
|
|
353
353
|
### Example Usage
|
|
354
354
|
|
package/packages/orq-rc/jsr.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orq-ai/node",
|
|
3
|
-
"version": "3.13.0-rc.
|
|
3
|
+
"version": "3.13.0-rc.18",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@orq-ai/node",
|
|
9
|
-
"version": "3.13.0-rc.
|
|
9
|
+
"version": "3.13.0-rc.18",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"zod": "^3.20.0"
|
|
12
12
|
},
|
|
@@ -28,7 +28,7 @@ import { Result } from "../types/fp.js";
|
|
|
28
28
|
* Run an agent
|
|
29
29
|
*
|
|
30
30
|
* @remarks
|
|
31
|
-
* Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution.
|
|
31
|
+
* Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution. Memory stores can be associated with specific entities (users, sessions) using the memory.entity_id parameter.
|
|
32
32
|
*/
|
|
33
33
|
export function agentsRun(
|
|
34
34
|
client: OrqCore,
|
|
@@ -31,7 +31,7 @@ import { Result } from "../types/fp.js";
|
|
|
31
31
|
* Run and stream agent execution
|
|
32
32
|
*
|
|
33
33
|
* @remarks
|
|
34
|
-
* Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout.
|
|
34
|
+
* Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout. Memory stores can be associated with specific entities (users, sessions) using the memory.entity_id parameter.
|
|
35
35
|
*/
|
|
36
36
|
export function agentsStreamRun(
|
|
37
37
|
client: OrqCore,
|
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "3.13.0-rc.
|
|
72
|
-
genVersion: "2.
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 3.13.0-rc.
|
|
71
|
+
sdkVersion: "3.13.0-rc.18",
|
|
72
|
+
genVersion: "2.706.0",
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 3.13.0-rc.18 2.706.0 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
|
@@ -14,7 +14,7 @@ export const tool$agentsRun: ToolDefinition<typeof args> = {
|
|
|
14
14
|
name: "agents-run",
|
|
15
15
|
description: `Run an agent
|
|
16
16
|
|
|
17
|
-
Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution.`,
|
|
17
|
+
Executes an agent with the provided configuration using A2A message format. If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The fallback model is configured at the agent level and will be used automatically if the primary model fails during execution. Memory stores can be associated with specific entities (users, sessions) using the memory.entity_id parameter.`,
|
|
18
18
|
args,
|
|
19
19
|
tool: async (client, args, ctx) => {
|
|
20
20
|
const [result, apiCall] = await agentsRun(
|
|
@@ -14,7 +14,7 @@ export const tool$agentsStreamRun: ToolDefinition<typeof args> = {
|
|
|
14
14
|
name: "agents-stream-run",
|
|
15
15
|
description: `Run and stream agent execution
|
|
16
16
|
|
|
17
|
-
Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout.`,
|
|
17
|
+
Creates or updates an agent with the provided configuration, then streams execution events via Server-Sent Events (SSE). If the agent already exists with the same configuration, it will be reused. If the configuration differs, a new version is created. The stream will continue until the agent completes, errors, or reaches the configured timeout. Memory stores can be associated with specific entities (users, sessions) using the memory.entity_id parameter.`,
|
|
18
18
|
args,
|
|
19
19
|
tool: async (client, args, ctx) => {
|
|
20
20
|
const [result, apiCall] = await agentsStreamRun(
|
|
@@ -658,7 +658,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
658
658
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
659
659
|
.optional(),
|
|
660
660
|
updated: z.string().datetime({ offset: true }).default(
|
|
661
|
-
"2025-09-
|
|
661
|
+
"2025-09-18T14:59:12.873Z",
|
|
662
662
|
).transform(v => new Date(v)),
|
|
663
663
|
}).transform((v) => {
|
|
664
664
|
return remap$(v, {
|
|
@@ -693,7 +693,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
693
693
|
isActive: z.boolean(),
|
|
694
694
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
695
695
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
696
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
696
|
+
updated: z.date().default(() => new Date("2025-09-18T14:59:12.873Z"))
|
|
697
697
|
.transform(v => v.toISOString()),
|
|
698
698
|
}).transform((v) => {
|
|
699
699
|
return remap$(v, {
|
|
@@ -182,7 +182,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2025-09-
|
|
185
|
+
"2025-09-18T14:59:12.873Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -223,7 +223,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
223
223
|
tags: z.array(z.string()).optional(),
|
|
224
224
|
metadata: z.record(z.any()).optional(),
|
|
225
225
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
226
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-09-18T14:59:12.873Z"))
|
|
227
227
|
.transform(v => v.toISOString()),
|
|
228
228
|
}).transform((v) => {
|
|
229
229
|
return remap$(v, {
|
|
@@ -211,7 +211,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
211
211
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
212
212
|
.optional(),
|
|
213
213
|
updated: z.string().datetime({ offset: true }).default(
|
|
214
|
-
"2025-09-
|
|
214
|
+
"2025-09-18T14:59:12.873Z",
|
|
215
215
|
).transform(v => new Date(v)),
|
|
216
216
|
}).transform((v) => {
|
|
217
217
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
updatedById: z.string().optional(),
|
|
252
252
|
metadata: z.lazy(() => CreateDatasetMetadata$outboundSchema),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-09-18T14:59:12.873Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -6081,7 +6081,7 @@ export const ResponseBody$inboundSchema: z.ZodType<
|
|
|
6081
6081
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6082
6082
|
.optional(),
|
|
6083
6083
|
updated: z.string().datetime({ offset: true }).default(
|
|
6084
|
-
"2025-09-
|
|
6084
|
+
"2025-09-18T14:59:12.873Z",
|
|
6085
6085
|
).transform(v => new Date(v)),
|
|
6086
6086
|
}).transform((v) => {
|
|
6087
6087
|
return remap$(v, {
|
|
@@ -6145,7 +6145,7 @@ export const ResponseBody$outboundSchema: z.ZodType<
|
|
|
6145
6145
|
createdById: z.string().optional(),
|
|
6146
6146
|
updatedById: z.string().optional(),
|
|
6147
6147
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6148
|
-
updated: z.date().default(() => new Date("2025-09-
|
|
6148
|
+
updated: z.date().default(() => new Date("2025-09-18T14:59:12.873Z"))
|
|
6149
6149
|
.transform(v => v.toISOString()),
|
|
6150
6150
|
}).transform((v) => {
|
|
6151
6151
|
return remap$(v, {
|
|
@@ -751,7 +751,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
751
751
|
z.ZodTypeDef,
|
|
752
752
|
unknown
|
|
753
753
|
> = z.object({
|
|
754
|
-
_id: z.string().default("
|
|
754
|
+
_id: z.string().default("01K5ENCKXG019QVTPNPZYNVQN0"),
|
|
755
755
|
display_name: z.string(),
|
|
756
756
|
description: z.string().optional(),
|
|
757
757
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -795,7 +795,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
795
795
|
z.ZodTypeDef,
|
|
796
796
|
CreateDatasourceResponseBody
|
|
797
797
|
> = z.object({
|
|
798
|
-
id: z.string().default("
|
|
798
|
+
id: z.string().default("01K5ENCKXG019QVTPNPZYNVQN0"),
|
|
799
799
|
displayName: z.string(),
|
|
800
800
|
description: z.string().optional(),
|
|
801
801
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -3209,8 +3209,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
3209
3209
|
> = z.object({
|
|
3210
3210
|
_id: z.string(),
|
|
3211
3211
|
description: z.string(),
|
|
3212
|
-
created: z.string().default("2025-09-
|
|
3213
|
-
updated: z.string().default("2025-09-
|
|
3212
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
3213
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
3214
3214
|
guardrail_config: z.union([
|
|
3215
3215
|
z.lazy(() =>
|
|
3216
3216
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3253,8 +3253,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
3253
3253
|
> = z.object({
|
|
3254
3254
|
id: z.string(),
|
|
3255
3255
|
description: z.string(),
|
|
3256
|
-
created: z.string().default("2025-09-
|
|
3257
|
-
updated: z.string().default("2025-09-
|
|
3256
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
3257
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
3258
3258
|
guardrailConfig: z.union([
|
|
3259
3259
|
z.lazy(() =>
|
|
3260
3260
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3671,8 +3671,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3671
3671
|
.object({
|
|
3672
3672
|
_id: z.string(),
|
|
3673
3673
|
description: z.string(),
|
|
3674
|
-
created: z.string().default("2025-09-
|
|
3675
|
-
updated: z.string().default("2025-09-
|
|
3674
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
3675
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
3676
3676
|
guardrail_config: z.union([
|
|
3677
3677
|
z.lazy(() =>
|
|
3678
3678
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3718,8 +3718,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3718
3718
|
> = z.object({
|
|
3719
3719
|
id: z.string(),
|
|
3720
3720
|
description: z.string(),
|
|
3721
|
-
created: z.string().default("2025-09-
|
|
3722
|
-
updated: z.string().default("2025-09-
|
|
3721
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
3722
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
3723
3723
|
guardrailConfig: z.union([
|
|
3724
3724
|
z.lazy(() =>
|
|
3725
3725
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -7143,8 +7143,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7143
7143
|
> = z.object({
|
|
7144
7144
|
_id: z.string(),
|
|
7145
7145
|
description: z.string(),
|
|
7146
|
-
created: z.string().default("2025-09-
|
|
7147
|
-
updated: z.string().default("2025-09-
|
|
7146
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
7147
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
7148
7148
|
guardrail_config: z.union([
|
|
7149
7149
|
z.lazy(() =>
|
|
7150
7150
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7258,8 +7258,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7258
7258
|
> = z.object({
|
|
7259
7259
|
id: z.string(),
|
|
7260
7260
|
description: z.string(),
|
|
7261
|
-
created: z.string().default("2025-09-
|
|
7262
|
-
updated: z.string().default("2025-09-
|
|
7261
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
7262
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
7263
7263
|
guardrailConfig: z.union([
|
|
7264
7264
|
z.lazy(() =>
|
|
7265
7265
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -7698,8 +7698,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
7698
7698
|
> = z.object({
|
|
7699
7699
|
_id: z.string(),
|
|
7700
7700
|
description: z.string(),
|
|
7701
|
-
created: z.string().default("2025-09-
|
|
7702
|
-
updated: z.string().default("2025-09-
|
|
7701
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
7702
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
7703
7703
|
guardrail_config: z.union([
|
|
7704
7704
|
z.lazy(() =>
|
|
7705
7705
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7741,8 +7741,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
7741
7741
|
> = z.object({
|
|
7742
7742
|
id: z.string(),
|
|
7743
7743
|
description: z.string(),
|
|
7744
|
-
created: z.string().default("2025-09-
|
|
7745
|
-
updated: z.string().default("2025-09-
|
|
7744
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
7745
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
7746
7746
|
guardrailConfig: z.union([
|
|
7747
7747
|
z.lazy(() =>
|
|
7748
7748
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8155,8 +8155,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8155
8155
|
> = z.object({
|
|
8156
8156
|
_id: z.string(),
|
|
8157
8157
|
description: z.string(),
|
|
8158
|
-
created: z.string().default("2025-09-
|
|
8159
|
-
updated: z.string().default("2025-09-
|
|
8158
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8159
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8160
8160
|
guardrail_config: z.union([
|
|
8161
8161
|
z.lazy(() =>
|
|
8162
8162
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8204,8 +8204,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8204
8204
|
> = z.object({
|
|
8205
8205
|
id: z.string(),
|
|
8206
8206
|
description: z.string(),
|
|
8207
|
-
created: z.string().default("2025-09-
|
|
8208
|
-
updated: z.string().default("2025-09-
|
|
8207
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8208
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8209
8209
|
guardrailConfig: z.union([
|
|
8210
8210
|
z.lazy(() =>
|
|
8211
8211
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -8582,8 +8582,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
8582
8582
|
> = z.object({
|
|
8583
8583
|
_id: z.string(),
|
|
8584
8584
|
description: z.string(),
|
|
8585
|
-
created: z.string().default("2025-09-
|
|
8586
|
-
updated: z.string().default("2025-09-
|
|
8585
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8586
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8587
8587
|
guardrail_config: z.union([
|
|
8588
8588
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
8589
8589
|
z.lazy(() =>
|
|
@@ -8623,8 +8623,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
8623
8623
|
> = z.object({
|
|
8624
8624
|
id: z.string(),
|
|
8625
8625
|
description: z.string(),
|
|
8626
|
-
created: z.string().default("2025-09-
|
|
8627
|
-
updated: z.string().default("2025-09-
|
|
8626
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8627
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8628
8628
|
guardrailConfig: z.union([
|
|
8629
8629
|
z.lazy(() =>
|
|
8630
8630
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -8979,8 +8979,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
8979
8979
|
> = z.object({
|
|
8980
8980
|
_id: z.string(),
|
|
8981
8981
|
description: z.string(),
|
|
8982
|
-
created: z.string().default("2025-09-
|
|
8983
|
-
updated: z.string().default("2025-09-
|
|
8982
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8983
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
8984
8984
|
guardrail_config: z.union([
|
|
8985
8985
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
8986
8986
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9020,8 +9020,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9020
9020
|
> = z.object({
|
|
9021
9021
|
id: z.string(),
|
|
9022
9022
|
description: z.string(),
|
|
9023
|
-
created: z.string().default("2025-09-
|
|
9024
|
-
updated: z.string().default("2025-09-
|
|
9023
|
+
created: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
9024
|
+
updated: z.string().default("2025-09-18T14:59:15.167Z"),
|
|
9025
9025
|
guardrailConfig: z.union([
|
|
9026
9026
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9027
9027
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|