@orq-ai/node 3.13.7 → 3.13.9
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 +215 -229
- package/bin/mcp-server.js.map +44 -44
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/deployments.d.ts +0 -6
- package/models/components/deployments.d.ts.map +1 -1
- package/models/components/deployments.js +0 -2
- package/models/components/deployments.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.d.ts +0 -6
- package/models/operations/createdatasetitem.d.ts.map +1 -1
- package/models/operations/createdatasetitem.js +2 -4
- package/models/operations/createdatasetitem.js.map +1 -1
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- package/models/operations/deploymentcreatemetric.d.ts +0 -6
- package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
- package/models/operations/deploymentcreatemetric.js +0 -2
- package/models/operations/deploymentcreatemetric.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +0 -6
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +0 -2
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentstream.d.ts +0 -6
- package/models/operations/deploymentstream.d.ts.map +1 -1
- package/models/operations/deploymentstream.js +0 -2
- package/models/operations/deploymentstream.js.map +1 -1
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.js +2 -2
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.d.ts +0 -3
- package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
- package/models/operations/listdatasetdatapoints.js +2 -3
- package/models/operations/listdatasetdatapoints.js.map +1 -1
- 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.d.ts +0 -3
- package/models/operations/retrievedatapoint.d.ts.map +1 -1
- package/models/operations/retrievedatapoint.js +2 -3
- package/models/operations/retrievedatapoint.js.map +1 -1
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +10 -10
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.d.ts +0 -6
- package/models/operations/updatedatapoint.d.ts.map +1 -1
- package/models/operations/updatedatapoint.js +2 -4
- package/models/operations/updatedatapoint.js.map +1 -1
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/docs/sdks/knowledge/README.md +6 -0
- 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/lib/config.ts +2 -2
- 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/models/components/deployments.ts +0 -2
- 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 +9 -3
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -10
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +236 -201
- package/packages/orq-rc/src/models/operations/createknowledge.ts +1231 -275
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +7 -1
- package/packages/orq-rc/src/models/operations/createprompt.ts +7 -1
- package/packages/orq-rc/src/models/operations/createtool.ts +192 -116
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +0 -2
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +0 -2
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +0 -2
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +45 -15
- 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 +9 -3
- package/packages/orq-rc/src/models/operations/getalltools.ts +167 -118
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +157 -143
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +912 -166
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -3
- 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 +8 -9
- 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/listknowledgebases.ts +755 -150
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -9
- 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/retrievetool.ts +45 -15
- package/packages/orq-rc/src/models/operations/runagent.ts +7 -1
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +49 -62
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +7 -1
- 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 +8 -10
- package/packages/orq-rc/src/models/operations/updatedataset.ts +9 -3
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +56 -32
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +1710 -367
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +7 -1
- package/packages/orq-rc/src/models/operations/updateprompt.ts +7 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +80 -20
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/deployments.ts +0 -2
- 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 -4
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +14 -14
- package/src/models/operations/deploymentcreatemetric.ts +0 -2
- package/src/models/operations/deploymentgetconfig.ts +0 -2
- package/src/models/operations/deploymentstream.ts +0 -2
- package/src/models/operations/duplicatetool.ts +10 -10
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getagent.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +2 -2
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -3
- 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 -3
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.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 -4
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -156,7 +156,6 @@ export type UpdateDatapointMessagesDatasetsContent =
|
|
|
156
156
|
*/
|
|
157
157
|
export const UpdateDatapointMessagesDatasetsRequestRequestBodyRole = {
|
|
158
158
|
Assistant: "assistant",
|
|
159
|
-
Exception: "exception",
|
|
160
159
|
} as const;
|
|
161
160
|
/**
|
|
162
161
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -674,7 +673,6 @@ export type UpdateDatapointMessagesDatasetsResponse200Content =
|
|
|
674
673
|
export const UpdateDatapointMessagesDatasetsResponse200ApplicationJSONResponseBodyRole =
|
|
675
674
|
{
|
|
676
675
|
Assistant: "assistant",
|
|
677
|
-
Exception: "exception",
|
|
678
676
|
} as const;
|
|
679
677
|
/**
|
|
680
678
|
* The role of the messages author, in this case `assistant` or `exception`.
|
|
@@ -6254,7 +6252,7 @@ export const UpdateDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
6254
6252
|
.default("orq"),
|
|
6255
6253
|
reviewed_by_id: z.string(),
|
|
6256
6254
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6257
|
-
"2025-10-
|
|
6255
|
+
"2025-10-15T05:20:16.804Z",
|
|
6258
6256
|
).transform(v => new Date(v)),
|
|
6259
6257
|
type: UpdateDatapointEvaluationsDatasetsResponseType$inboundSchema,
|
|
6260
6258
|
values: z.array(z.string()),
|
|
@@ -6292,7 +6290,7 @@ export const UpdateDatapointEvaluations3$outboundSchema: z.ZodType<
|
|
|
6292
6290
|
source: UpdateDatapointEvaluationsDatasetsResponseSource$outboundSchema
|
|
6293
6291
|
.default("orq"),
|
|
6294
6292
|
reviewedById: z.string(),
|
|
6295
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
6293
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T05:20:16.804Z"))
|
|
6296
6294
|
.transform(v => v.toISOString()),
|
|
6297
6295
|
type: UpdateDatapointEvaluationsDatasetsResponseType$outboundSchema,
|
|
6298
6296
|
values: z.array(z.string()),
|
|
@@ -6421,7 +6419,7 @@ export const UpdateDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
6421
6419
|
source: UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
6422
6420
|
reviewed_by_id: z.string(),
|
|
6423
6421
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6424
|
-
"2025-10-
|
|
6422
|
+
"2025-10-15T05:20:16.804Z",
|
|
6425
6423
|
).transform(v => new Date(v)),
|
|
6426
6424
|
type: UpdateDatapointEvaluationsDatasetsType$inboundSchema,
|
|
6427
6425
|
value: z.number(),
|
|
@@ -6460,7 +6458,7 @@ export const UpdateDatapointEvaluations2$outboundSchema: z.ZodType<
|
|
|
6460
6458
|
"orq",
|
|
6461
6459
|
),
|
|
6462
6460
|
reviewedById: z.string(),
|
|
6463
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
6461
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T05:20:16.804Z"))
|
|
6464
6462
|
.transform(v => v.toISOString()),
|
|
6465
6463
|
type: UpdateDatapointEvaluationsDatasetsType$outboundSchema,
|
|
6466
6464
|
value: z.number(),
|
|
@@ -6583,7 +6581,7 @@ export const UpdateDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
6583
6581
|
source: UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
6584
6582
|
reviewed_by_id: z.string(),
|
|
6585
6583
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
6586
|
-
"2025-10-
|
|
6584
|
+
"2025-10-15T05:20:16.804Z",
|
|
6587
6585
|
).transform(v => new Date(v)),
|
|
6588
6586
|
type: UpdateDatapointEvaluationsType$inboundSchema,
|
|
6589
6587
|
value: z.string(),
|
|
@@ -6619,7 +6617,7 @@ export const UpdateDatapointEvaluations1$outboundSchema: z.ZodType<
|
|
|
6619
6617
|
humanReviewId: z.string(),
|
|
6620
6618
|
source: UpdateDatapointEvaluationsSource$outboundSchema.default("orq"),
|
|
6621
6619
|
reviewedById: z.string(),
|
|
6622
|
-
reviewedAt: z.date().default(() => new Date("2025-10-
|
|
6620
|
+
reviewedAt: z.date().default(() => new Date("2025-10-15T05:20:16.804Z"))
|
|
6623
6621
|
.transform(v => v.toISOString()),
|
|
6624
6622
|
type: UpdateDatapointEvaluationsType$outboundSchema,
|
|
6625
6623
|
value: z.string(),
|
|
@@ -6763,7 +6761,7 @@ export const UpdateDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
6763
6761
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
6764
6762
|
.optional(),
|
|
6765
6763
|
updated: z.string().datetime({ offset: true }).default(
|
|
6766
|
-
"2025-10-
|
|
6764
|
+
"2025-10-15T05:20:08.470Z",
|
|
6767
6765
|
).transform(v => new Date(v)),
|
|
6768
6766
|
}).transform((v) => {
|
|
6769
6767
|
return remap$(v, {
|
|
@@ -6842,7 +6840,7 @@ export const UpdateDatapointResponseBody$outboundSchema: z.ZodType<
|
|
|
6842
6840
|
createdById: z.string().optional(),
|
|
6843
6841
|
updatedById: z.string().optional(),
|
|
6844
6842
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
6845
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
6843
|
+
updated: z.date().default(() => new Date("2025-10-15T05:20:08.470Z"))
|
|
6846
6844
|
.transform(v => v.toISOString()),
|
|
6847
6845
|
}).transform((v) => {
|
|
6848
6846
|
return remap$(v, {
|
|
@@ -18,7 +18,13 @@ export type UpdateDatasetRequestBody = {
|
|
|
18
18
|
*/
|
|
19
19
|
projectId?: string | undefined;
|
|
20
20
|
/**
|
|
21
|
-
*
|
|
21
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
22
|
+
*
|
|
23
|
+
* @remarks
|
|
24
|
+
*
|
|
25
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
26
|
+
*
|
|
27
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
22
28
|
*/
|
|
23
29
|
path?: string | undefined;
|
|
24
30
|
};
|
|
@@ -292,7 +298,7 @@ export const UpdateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
292
298
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
293
299
|
.optional(),
|
|
294
300
|
updated: z.string().datetime({ offset: true }).default(
|
|
295
|
-
"2025-10-
|
|
301
|
+
"2025-10-15T05:20:08.470Z",
|
|
296
302
|
).transform(v => new Date(v)),
|
|
297
303
|
}).transform((v) => {
|
|
298
304
|
return remap$(v, {
|
|
@@ -332,7 +338,7 @@ export const UpdateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
332
338
|
createdById: z.string().optional(),
|
|
333
339
|
updatedById: z.string().optional(),
|
|
334
340
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
335
|
-
updated: z.date().default(() => new Date("2025-10-
|
|
341
|
+
updated: z.date().default(() => new Date("2025-10-15T05:20:08.470Z"))
|
|
336
342
|
.transform(v => v.toISOString()),
|
|
337
343
|
}).transform((v) => {
|
|
338
344
|
return remap$(v, {
|
|
@@ -244,7 +244,7 @@ export const UpdateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
244
244
|
z.ZodTypeDef,
|
|
245
245
|
unknown
|
|
246
246
|
> = z.object({
|
|
247
|
-
_id: z.string().default("
|
|
247
|
+
_id: z.string().default("01K7K4ZPE6F04SHEXTTM57RGYD"),
|
|
248
248
|
display_name: z.string(),
|
|
249
249
|
description: z.string().optional(),
|
|
250
250
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -288,7 +288,7 @@ export const UpdateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
288
288
|
z.ZodTypeDef,
|
|
289
289
|
UpdateDatasourceResponseBody
|
|
290
290
|
> = z.object({
|
|
291
|
-
id: z.string().default("
|
|
291
|
+
id: z.string().default("01K7K4ZPE6F04SHEXTTM57RGYD"),
|
|
292
292
|
displayName: z.string(),
|
|
293
293
|
description: z.string().optional(),
|
|
294
294
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -75,7 +75,13 @@ export type RequestBodyPython = {
|
|
|
75
75
|
code?: string | undefined;
|
|
76
76
|
type: UpdateEvalRequestBodyEvalsRequest4Type;
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
79
|
+
*
|
|
80
|
+
* @remarks
|
|
81
|
+
*
|
|
82
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
83
|
+
*
|
|
84
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
79
85
|
*/
|
|
80
86
|
path: string;
|
|
81
87
|
description?: string | undefined;
|
|
@@ -161,7 +167,13 @@ export type UpdateEvalRequestBodyHTTP = {
|
|
|
161
167
|
headers?: { [k: string]: string } | undefined;
|
|
162
168
|
payload?: { [k: string]: any } | undefined;
|
|
163
169
|
/**
|
|
164
|
-
*
|
|
170
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
171
|
+
*
|
|
172
|
+
* @remarks
|
|
173
|
+
*
|
|
174
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
175
|
+
*
|
|
176
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
165
177
|
*/
|
|
166
178
|
path: string;
|
|
167
179
|
description?: string | undefined;
|
|
@@ -234,7 +246,13 @@ export type RequestBodyJSON = {
|
|
|
234
246
|
type: UpdateEvalRequestBodyEvalsType;
|
|
235
247
|
schema?: string | undefined;
|
|
236
248
|
/**
|
|
237
|
-
*
|
|
249
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
250
|
+
*
|
|
251
|
+
* @remarks
|
|
252
|
+
*
|
|
253
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
254
|
+
*
|
|
255
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
238
256
|
*/
|
|
239
257
|
path: string;
|
|
240
258
|
description?: string | undefined;
|
|
@@ -309,7 +327,13 @@ export type RequestBodyLLM = {
|
|
|
309
327
|
type: UpdateEvalRequestBodyType;
|
|
310
328
|
prompt?: string | undefined;
|
|
311
329
|
/**
|
|
312
|
-
*
|
|
330
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
331
|
+
*
|
|
332
|
+
* @remarks
|
|
333
|
+
*
|
|
334
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
335
|
+
*
|
|
336
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
313
337
|
*/
|
|
314
338
|
path: string;
|
|
315
339
|
description?: string | undefined;
|
|
@@ -3636,8 +3660,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
3636
3660
|
> = z.object({
|
|
3637
3661
|
_id: z.string(),
|
|
3638
3662
|
description: z.string(),
|
|
3639
|
-
created: z.string().default("2025-10-
|
|
3640
|
-
updated: z.string().default("2025-10-
|
|
3663
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3664
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3641
3665
|
guardrail_config: z.union([
|
|
3642
3666
|
z.lazy(() =>
|
|
3643
3667
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3680,8 +3704,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
3680
3704
|
> = z.object({
|
|
3681
3705
|
id: z.string(),
|
|
3682
3706
|
description: z.string(),
|
|
3683
|
-
created: z.string().default("2025-10-
|
|
3684
|
-
updated: z.string().default("2025-10-
|
|
3707
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3708
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3685
3709
|
guardrailConfig: z.union([
|
|
3686
3710
|
z.lazy(() =>
|
|
3687
3711
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -4107,8 +4131,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
4107
4131
|
> = z.object({
|
|
4108
4132
|
_id: z.string(),
|
|
4109
4133
|
description: z.string(),
|
|
4110
|
-
created: z.string().default("2025-10-
|
|
4111
|
-
updated: z.string().default("2025-10-
|
|
4134
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
4135
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
4112
4136
|
guardrail_config: z.union([
|
|
4113
4137
|
z.lazy(() =>
|
|
4114
4138
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -4154,8 +4178,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
4154
4178
|
> = z.object({
|
|
4155
4179
|
id: z.string(),
|
|
4156
4180
|
description: z.string(),
|
|
4157
|
-
created: z.string().default("2025-10-
|
|
4158
|
-
updated: z.string().default("2025-10-
|
|
4181
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
4182
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
4159
4183
|
guardrailConfig: z.union([
|
|
4160
4184
|
z.lazy(() =>
|
|
4161
4185
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -7662,8 +7686,8 @@ export const UpdateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7662
7686
|
> = z.object({
|
|
7663
7687
|
_id: z.string(),
|
|
7664
7688
|
description: z.string(),
|
|
7665
|
-
created: z.string().default("2025-10-
|
|
7666
|
-
updated: z.string().default("2025-10-
|
|
7689
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7690
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7667
7691
|
guardrail_config: z.union([
|
|
7668
7692
|
z.lazy(() =>
|
|
7669
7693
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7777,8 +7801,8 @@ export const UpdateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7777
7801
|
> = z.object({
|
|
7778
7802
|
id: z.string(),
|
|
7779
7803
|
description: z.string(),
|
|
7780
|
-
created: z.string().default("2025-10-
|
|
7781
|
-
updated: z.string().default("2025-10-
|
|
7804
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7805
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7782
7806
|
guardrailConfig: z.union([
|
|
7783
7807
|
z.lazy(() =>
|
|
7784
7808
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -8220,8 +8244,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
8220
8244
|
> = z.object({
|
|
8221
8245
|
_id: z.string(),
|
|
8222
8246
|
description: z.string(),
|
|
8223
|
-
created: z.string().default("2025-10-
|
|
8224
|
-
updated: z.string().default("2025-10-
|
|
8247
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8248
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8225
8249
|
guardrail_config: z.union([
|
|
8226
8250
|
z.lazy(() =>
|
|
8227
8251
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -8263,8 +8287,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
8263
8287
|
> = z.object({
|
|
8264
8288
|
id: z.string(),
|
|
8265
8289
|
description: z.string(),
|
|
8266
|
-
created: z.string().default("2025-10-
|
|
8267
|
-
updated: z.string().default("2025-10-
|
|
8290
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8291
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8268
8292
|
guardrailConfig: z.union([
|
|
8269
8293
|
z.lazy(() =>
|
|
8270
8294
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8685,8 +8709,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8685
8709
|
> = z.object({
|
|
8686
8710
|
_id: z.string(),
|
|
8687
8711
|
description: z.string(),
|
|
8688
|
-
created: z.string().default("2025-10-
|
|
8689
|
-
updated: z.string().default("2025-10-
|
|
8712
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8713
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8690
8714
|
guardrail_config: z.union([
|
|
8691
8715
|
z.lazy(() =>
|
|
8692
8716
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8734,8 +8758,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8734
8758
|
> = z.object({
|
|
8735
8759
|
id: z.string(),
|
|
8736
8760
|
description: z.string(),
|
|
8737
|
-
created: z.string().default("2025-10-
|
|
8738
|
-
updated: z.string().default("2025-10-
|
|
8761
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8762
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8739
8763
|
guardrailConfig: z.union([
|
|
8740
8764
|
z.lazy(() =>
|
|
8741
8765
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -9125,8 +9149,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
9125
9149
|
> = z.object({
|
|
9126
9150
|
_id: z.string(),
|
|
9127
9151
|
description: z.string(),
|
|
9128
|
-
created: z.string().default("2025-10-
|
|
9129
|
-
updated: z.string().default("2025-10-
|
|
9152
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9153
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9130
9154
|
guardrail_config: z.union([
|
|
9131
9155
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
9132
9156
|
z.lazy(() =>
|
|
@@ -9166,8 +9190,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
9166
9190
|
> = z.object({
|
|
9167
9191
|
id: z.string(),
|
|
9168
9192
|
description: z.string(),
|
|
9169
|
-
created: z.string().default("2025-10-
|
|
9170
|
-
updated: z.string().default("2025-10-
|
|
9193
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9194
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9171
9195
|
guardrailConfig: z.union([
|
|
9172
9196
|
z.lazy(() =>
|
|
9173
9197
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -9525,8 +9549,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
9525
9549
|
> = z.object({
|
|
9526
9550
|
_id: z.string(),
|
|
9527
9551
|
description: z.string(),
|
|
9528
|
-
created: z.string().default("2025-10-
|
|
9529
|
-
updated: z.string().default("2025-10-
|
|
9552
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9553
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9530
9554
|
guardrail_config: z.union([
|
|
9531
9555
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
9532
9556
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9566,8 +9590,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9566
9590
|
> = z.object({
|
|
9567
9591
|
id: z.string(),
|
|
9568
9592
|
description: z.string(),
|
|
9569
|
-
created: z.string().default("2025-10-
|
|
9570
|
-
updated: z.string().default("2025-10-
|
|
9593
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9594
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9571
9595
|
guardrailConfig: z.union([
|
|
9572
9596
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9573
9597
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|