@orq-ai/node 3.13.11 → 3.13.13
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 +266 -222
- package/bin/mcp-server.js.map +40 -40
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/lib/config.js.map +1 -1
- package/lib/env.d.ts.map +1 -1
- package/lib/env.js +18 -1
- package/lib/env.js.map +1 -1
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createagent.d.ts +38 -0
- package/models/operations/createagent.d.ts.map +1 -1
- package/models/operations/createagent.js +35 -1
- package/models/operations/createagent.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.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- 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/getalltools.js +10 -10
- 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/retrievetool.js +10 -10
- package/models/operations/runagent.d.ts +15 -15
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +20 -18
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/updateagent.d.ts +53 -18
- package/models/operations/updateagent.d.ts.map +1 -1
- package/models/operations/updateagent.js +54 -19
- package/models/operations/updateagent.js.map +1 -1
- 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 +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/docs/sdks/prompts/README.md +47 -13
- package/packages/orq-rc/docs/sdks/tools/README.md +7 -3
- 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/promptsCreate.ts +4 -4
- package/packages/orq-rc/src/funcs/promptsRetrieve.ts +4 -4
- package/packages/orq-rc/src/funcs/promptsUpdate.ts +4 -4
- package/packages/orq-rc/src/funcs/toolsList.ts +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/lib/env.ts +20 -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/toolsList.ts +1 -1
- package/packages/orq-rc/src/models/components/deployments.ts +6 -6
- package/packages/orq-rc/src/models/operations/createagent.ts +73 -0
- 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 +14 -14
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +60 -56
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +108 -40
- package/packages/orq-rc/src/models/operations/createprompt.ts +4603 -1478
- package/packages/orq-rc/src/models/operations/createtool.ts +10 -10
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +6 -6
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +6 -6
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +6 -6
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +10 -10
- 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/getallmemorystores.ts +56 -20
- package/packages/orq-rc/src/models/operations/getallprompts.ts +48 -52
- package/packages/orq-rc/src/models/operations/getalltools.ts +14 -14
- 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/getoneprompt.ts +22 -22
- 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 +11 -11
- 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 +11 -11
- 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/retrievememorystore.ts +56 -20
- package/packages/orq-rc/src/models/operations/retrievetool.ts +10 -10
- package/packages/orq-rc/src/models/operations/runagent.ts +30 -24
- package/packages/orq-rc/src/models/operations/updateagent.ts +110 -28
- 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 +14 -14
- 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 +57 -57
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +52 -20
- package/packages/orq-rc/src/models/operations/updateprompt.ts +5018 -1772
- package/packages/orq-rc/src/models/operations/updatetool.ts +10 -10
- package/packages/orq-rc/src/sdk/prompts.ts +3 -3
- package/packages/orq-rc/src/sdk/tools.ts +1 -1
- package/src/lib/config.ts +3 -3
- package/src/lib/env.ts +20 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/operations/createagent.ts +73 -0
- 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 +28 -28
- package/src/models/operations/createtool.ts +14 -14
- 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/getalltools.ts +10 -10
- 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/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +30 -24
- package/src/models/operations/updateagent.ts +110 -28
- 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 +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -730,7 +730,7 @@ export type CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody5
|
|
|
730
730
|
typeof CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody523Type
|
|
731
731
|
>;
|
|
732
732
|
|
|
733
|
-
export type
|
|
733
|
+
export type FunctionParams23 = {
|
|
734
734
|
type:
|
|
735
735
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody523Type;
|
|
736
736
|
};
|
|
@@ -1059,7 +1059,7 @@ export type CreateEvalResponseBodyFunctionParams =
|
|
|
1059
1059
|
| FunctionParams20
|
|
1060
1060
|
| FunctionParams21
|
|
1061
1061
|
| FunctionParams22
|
|
1062
|
-
|
|
|
1062
|
+
| FunctionParams23
|
|
1063
1063
|
| TwentyFour
|
|
1064
1064
|
| TwentySeven
|
|
1065
1065
|
| TwentyEight
|
|
@@ -1106,7 +1106,7 @@ export type ResponseBodyFunction = {
|
|
|
1106
1106
|
| FunctionParams20
|
|
1107
1107
|
| FunctionParams21
|
|
1108
1108
|
| FunctionParams22
|
|
1109
|
-
|
|
|
1109
|
+
| FunctionParams23
|
|
1110
1110
|
| TwentyFour
|
|
1111
1111
|
| TwentySeven
|
|
1112
1112
|
| TwentyEight
|
|
@@ -3377,8 +3377,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
3377
3377
|
> = z.object({
|
|
3378
3378
|
_id: z.string(),
|
|
3379
3379
|
description: z.string(),
|
|
3380
|
-
created: z.string().default("2025-10-
|
|
3381
|
-
updated: z.string().default("2025-10-
|
|
3380
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
3381
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
3382
3382
|
guardrail_config: z.union([
|
|
3383
3383
|
z.lazy(() =>
|
|
3384
3384
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3421,8 +3421,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
3421
3421
|
> = z.object({
|
|
3422
3422
|
id: z.string(),
|
|
3423
3423
|
description: z.string(),
|
|
3424
|
-
created: z.string().default("2025-10-
|
|
3425
|
-
updated: z.string().default("2025-10-
|
|
3424
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
3425
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
3426
3426
|
guardrailConfig: z.union([
|
|
3427
3427
|
z.lazy(() =>
|
|
3428
3428
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3839,8 +3839,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3839
3839
|
.object({
|
|
3840
3840
|
_id: z.string(),
|
|
3841
3841
|
description: z.string(),
|
|
3842
|
-
created: z.string().default("2025-10-
|
|
3843
|
-
updated: z.string().default("2025-10-
|
|
3842
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
3843
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
3844
3844
|
guardrail_config: z.union([
|
|
3845
3845
|
z.lazy(() =>
|
|
3846
3846
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3886,8 +3886,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3886
3886
|
> = z.object({
|
|
3887
3887
|
id: z.string(),
|
|
3888
3888
|
description: z.string(),
|
|
3889
|
-
created: z.string().default("2025-10-
|
|
3890
|
-
updated: z.string().default("2025-10-
|
|
3889
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
3890
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
3891
3891
|
guardrailConfig: z.union([
|
|
3892
3892
|
z.lazy(() =>
|
|
3893
3893
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5274,8 +5274,8 @@ export namespace CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponse
|
|
|
5274
5274
|
}
|
|
5275
5275
|
|
|
5276
5276
|
/** @internal */
|
|
5277
|
-
export const
|
|
5278
|
-
|
|
5277
|
+
export const FunctionParams23$inboundSchema: z.ZodType<
|
|
5278
|
+
FunctionParams23,
|
|
5279
5279
|
z.ZodTypeDef,
|
|
5280
5280
|
unknown
|
|
5281
5281
|
> = z.object({
|
|
@@ -5284,15 +5284,15 @@ export const TwentyThree$inboundSchema: z.ZodType<
|
|
|
5284
5284
|
});
|
|
5285
5285
|
|
|
5286
5286
|
/** @internal */
|
|
5287
|
-
export type
|
|
5287
|
+
export type FunctionParams23$Outbound = {
|
|
5288
5288
|
type: string;
|
|
5289
5289
|
};
|
|
5290
5290
|
|
|
5291
5291
|
/** @internal */
|
|
5292
|
-
export const
|
|
5293
|
-
|
|
5292
|
+
export const FunctionParams23$outboundSchema: z.ZodType<
|
|
5293
|
+
FunctionParams23$Outbound,
|
|
5294
5294
|
z.ZodTypeDef,
|
|
5295
|
-
|
|
5295
|
+
FunctionParams23
|
|
5296
5296
|
> = z.object({
|
|
5297
5297
|
type:
|
|
5298
5298
|
CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody523Type$outboundSchema,
|
|
@@ -5302,26 +5302,30 @@ export const TwentyThree$outboundSchema: z.ZodType<
|
|
|
5302
5302
|
* @internal
|
|
5303
5303
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5304
5304
|
*/
|
|
5305
|
-
export namespace
|
|
5306
|
-
/** @deprecated use `
|
|
5307
|
-
export const inboundSchema =
|
|
5308
|
-
/** @deprecated use `
|
|
5309
|
-
export const outboundSchema =
|
|
5310
|
-
/** @deprecated use `
|
|
5311
|
-
export type Outbound =
|
|
5305
|
+
export namespace FunctionParams23$ {
|
|
5306
|
+
/** @deprecated use `FunctionParams23$inboundSchema` instead. */
|
|
5307
|
+
export const inboundSchema = FunctionParams23$inboundSchema;
|
|
5308
|
+
/** @deprecated use `FunctionParams23$outboundSchema` instead. */
|
|
5309
|
+
export const outboundSchema = FunctionParams23$outboundSchema;
|
|
5310
|
+
/** @deprecated use `FunctionParams23$Outbound` instead. */
|
|
5311
|
+
export type Outbound = FunctionParams23$Outbound;
|
|
5312
5312
|
}
|
|
5313
5313
|
|
|
5314
|
-
export function
|
|
5315
|
-
|
|
5314
|
+
export function functionParams23ToJSON(
|
|
5315
|
+
functionParams23: FunctionParams23,
|
|
5316
|
+
): string {
|
|
5317
|
+
return JSON.stringify(
|
|
5318
|
+
FunctionParams23$outboundSchema.parse(functionParams23),
|
|
5319
|
+
);
|
|
5316
5320
|
}
|
|
5317
5321
|
|
|
5318
|
-
export function
|
|
5322
|
+
export function functionParams23FromJSON(
|
|
5319
5323
|
jsonString: string,
|
|
5320
|
-
): SafeParseResult<
|
|
5324
|
+
): SafeParseResult<FunctionParams23, SDKValidationError> {
|
|
5321
5325
|
return safeParse(
|
|
5322
5326
|
jsonString,
|
|
5323
|
-
(x) =>
|
|
5324
|
-
`Failed to parse '
|
|
5327
|
+
(x) => FunctionParams23$inboundSchema.parse(JSON.parse(x)),
|
|
5328
|
+
`Failed to parse 'FunctionParams23' from JSON`,
|
|
5325
5329
|
);
|
|
5326
5330
|
}
|
|
5327
5331
|
|
|
@@ -7175,7 +7179,7 @@ export const CreateEvalResponseBodyFunctionParams$inboundSchema: z.ZodType<
|
|
|
7175
7179
|
z.lazy(() => FunctionParams20$inboundSchema),
|
|
7176
7180
|
z.lazy(() => FunctionParams21$inboundSchema),
|
|
7177
7181
|
z.lazy(() => FunctionParams22$inboundSchema),
|
|
7178
|
-
z.lazy(() =>
|
|
7182
|
+
z.lazy(() => FunctionParams23$inboundSchema),
|
|
7179
7183
|
z.lazy(() => TwentyFour$inboundSchema),
|
|
7180
7184
|
z.lazy(() => TwentySeven$inboundSchema),
|
|
7181
7185
|
z.lazy(() => TwentyEight$inboundSchema),
|
|
@@ -7214,7 +7218,7 @@ export type CreateEvalResponseBodyFunctionParams$Outbound =
|
|
|
7214
7218
|
| FunctionParams20$Outbound
|
|
7215
7219
|
| FunctionParams21$Outbound
|
|
7216
7220
|
| FunctionParams22$Outbound
|
|
7217
|
-
|
|
|
7221
|
+
| FunctionParams23$Outbound
|
|
7218
7222
|
| TwentyFour$Outbound
|
|
7219
7223
|
| TwentySeven$Outbound
|
|
7220
7224
|
| TwentyEight$Outbound
|
|
@@ -7256,7 +7260,7 @@ export const CreateEvalResponseBodyFunctionParams$outboundSchema: z.ZodType<
|
|
|
7256
7260
|
z.lazy(() => FunctionParams20$outboundSchema),
|
|
7257
7261
|
z.lazy(() => FunctionParams21$outboundSchema),
|
|
7258
7262
|
z.lazy(() => FunctionParams22$outboundSchema),
|
|
7259
|
-
z.lazy(() =>
|
|
7263
|
+
z.lazy(() => FunctionParams23$outboundSchema),
|
|
7260
7264
|
z.lazy(() => TwentyFour$outboundSchema),
|
|
7261
7265
|
z.lazy(() => TwentySeven$outboundSchema),
|
|
7262
7266
|
z.lazy(() => TwentyEight$outboundSchema),
|
|
@@ -7313,8 +7317,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7313
7317
|
> = z.object({
|
|
7314
7318
|
_id: z.string(),
|
|
7315
7319
|
description: z.string(),
|
|
7316
|
-
created: z.string().default("2025-10-
|
|
7317
|
-
updated: z.string().default("2025-10-
|
|
7320
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7321
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7318
7322
|
guardrail_config: z.union([
|
|
7319
7323
|
z.lazy(() =>
|
|
7320
7324
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7349,7 +7353,7 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7349
7353
|
z.lazy(() => FunctionParams20$inboundSchema),
|
|
7350
7354
|
z.lazy(() => FunctionParams21$inboundSchema),
|
|
7351
7355
|
z.lazy(() => FunctionParams22$inboundSchema),
|
|
7352
|
-
z.lazy(() =>
|
|
7356
|
+
z.lazy(() => FunctionParams23$inboundSchema),
|
|
7353
7357
|
z.lazy(() => TwentyFour$inboundSchema),
|
|
7354
7358
|
z.lazy(() => TwentySeven$inboundSchema),
|
|
7355
7359
|
z.lazy(() => TwentyEight$inboundSchema),
|
|
@@ -7406,7 +7410,7 @@ export type ResponseBodyFunction$Outbound = {
|
|
|
7406
7410
|
| FunctionParams20$Outbound
|
|
7407
7411
|
| FunctionParams21$Outbound
|
|
7408
7412
|
| FunctionParams22$Outbound
|
|
7409
|
-
|
|
|
7413
|
+
| FunctionParams23$Outbound
|
|
7410
7414
|
| TwentyFour$Outbound
|
|
7411
7415
|
| TwentySeven$Outbound
|
|
7412
7416
|
| TwentyEight$Outbound
|
|
@@ -7428,8 +7432,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7428
7432
|
> = z.object({
|
|
7429
7433
|
id: z.string(),
|
|
7430
7434
|
description: z.string(),
|
|
7431
|
-
created: z.string().default("2025-10-
|
|
7432
|
-
updated: z.string().default("2025-10-
|
|
7435
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7436
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7433
7437
|
guardrailConfig: z.union([
|
|
7434
7438
|
z.lazy(() =>
|
|
7435
7439
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -7465,7 +7469,7 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7465
7469
|
z.lazy(() => FunctionParams20$outboundSchema),
|
|
7466
7470
|
z.lazy(() => FunctionParams21$outboundSchema),
|
|
7467
7471
|
z.lazy(() => FunctionParams22$outboundSchema),
|
|
7468
|
-
z.lazy(() =>
|
|
7472
|
+
z.lazy(() => FunctionParams23$outboundSchema),
|
|
7469
7473
|
z.lazy(() => TwentyFour$outboundSchema),
|
|
7470
7474
|
z.lazy(() => TwentySeven$outboundSchema),
|
|
7471
7475
|
z.lazy(() => TwentyEight$outboundSchema),
|
|
@@ -7869,8 +7873,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
7869
7873
|
> = z.object({
|
|
7870
7874
|
_id: z.string(),
|
|
7871
7875
|
description: z.string(),
|
|
7872
|
-
created: z.string().default("2025-10-
|
|
7873
|
-
updated: z.string().default("2025-10-
|
|
7876
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7877
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7874
7878
|
guardrail_config: z.union([
|
|
7875
7879
|
z.lazy(() =>
|
|
7876
7880
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7912,8 +7916,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
7912
7916
|
> = z.object({
|
|
7913
7917
|
id: z.string(),
|
|
7914
7918
|
description: z.string(),
|
|
7915
|
-
created: z.string().default("2025-10-
|
|
7916
|
-
updated: z.string().default("2025-10-
|
|
7919
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7920
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
7917
7921
|
guardrailConfig: z.union([
|
|
7918
7922
|
z.lazy(() =>
|
|
7919
7923
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -8328,8 +8332,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8328
8332
|
> = z.object({
|
|
8329
8333
|
_id: z.string(),
|
|
8330
8334
|
description: z.string(),
|
|
8331
|
-
created: z.string().default("2025-10-
|
|
8332
|
-
updated: z.string().default("2025-10-
|
|
8335
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
8336
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
8333
8337
|
guardrail_config: z.union([
|
|
8334
8338
|
z.lazy(() =>
|
|
8335
8339
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8377,8 +8381,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8377
8381
|
> = z.object({
|
|
8378
8382
|
id: z.string(),
|
|
8379
8383
|
description: z.string(),
|
|
8380
|
-
created: z.string().default("2025-10-
|
|
8381
|
-
updated: z.string().default("2025-10-
|
|
8384
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
8385
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
8382
8386
|
guardrailConfig: z.union([
|
|
8383
8387
|
z.lazy(() =>
|
|
8384
8388
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -8755,8 +8759,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
8755
8759
|
> = z.object({
|
|
8756
8760
|
_id: z.string(),
|
|
8757
8761
|
description: z.string(),
|
|
8758
|
-
created: z.string().default("2025-10-
|
|
8759
|
-
updated: z.string().default("2025-10-
|
|
8762
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
8763
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
8760
8764
|
guardrail_config: z.union([
|
|
8761
8765
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
8762
8766
|
z.lazy(() =>
|
|
@@ -8796,8 +8800,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
8796
8800
|
> = z.object({
|
|
8797
8801
|
id: z.string(),
|
|
8798
8802
|
description: z.string(),
|
|
8799
|
-
created: z.string().default("2025-10-
|
|
8800
|
-
updated: z.string().default("2025-10-
|
|
8803
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
8804
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
8801
8805
|
guardrailConfig: z.union([
|
|
8802
8806
|
z.lazy(() =>
|
|
8803
8807
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -9152,8 +9156,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
9152
9156
|
> = z.object({
|
|
9153
9157
|
_id: z.string(),
|
|
9154
9158
|
description: z.string(),
|
|
9155
|
-
created: z.string().default("2025-10-
|
|
9156
|
-
updated: z.string().default("2025-10-
|
|
9159
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
9160
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
9157
9161
|
guardrail_config: z.union([
|
|
9158
9162
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
9159
9163
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -9193,8 +9197,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9193
9197
|
> = z.object({
|
|
9194
9198
|
id: z.string(),
|
|
9195
9199
|
description: z.string(),
|
|
9196
|
-
created: z.string().default("2025-10-
|
|
9197
|
-
updated: z.string().default("2025-10-
|
|
9200
|
+
created: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
9201
|
+
updated: z.string().default("2025-10-21T15:04:09.282Z"),
|
|
9198
9202
|
guardrailConfig: z.union([
|
|
9199
9203
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9200
9204
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|