@orq-ai/node 4.0.18 → 4.0.20
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 +213 -213
- package/bin/mcp-server.js.map +36 -36
- 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 +8 -8
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +12 -12
- 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 +12 -12
- 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 +8 -8
- 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 +8 -8
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/retrievetool.js +12 -12
- 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.js +8 -8
- 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/README.md +22 -18
- package/packages/orq-rc/docs/sdks/evals/README.md +103 -1
- 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/evalsInvoke.ts +177 -0
- 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 +3 -1
- package/packages/orq-rc/src/mcp-server/tools/evalsInvoke.ts +35 -0
- package/packages/orq-rc/src/models/errors/index.ts +1 -0
- package/packages/orq-rc/src/models/errors/invokeeval.ts +128 -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 +8 -8
- 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/createtool.ts +12 -12
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +877 -685
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +35 -35
- package/packages/orq-rc/src/models/operations/deployments.ts +36 -36
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +55 -38
- 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/getalltools.ts +12 -12
- 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/index.ts +1 -0
- package/packages/orq-rc/src/models/operations/invokeeval.ts +2062 -0
- 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 -8
- 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 +8 -8
- 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 +12 -12
- package/packages/orq-rc/src/models/operations/runagent.ts +2 -2
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +2 -2
- 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 -8
- 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/updatetool.ts +14 -14
- package/packages/orq-rc/src/sdk/evals.ts +15 -0
- 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 +8 -8
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +12 -12
- 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 +12 -12
- 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 +8 -8
- 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 +8 -8
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +12 -12
- 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 +8 -8
- 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
|
@@ -2941,8 +2941,8 @@ export const ResponseBodyTypescript$inboundSchema: z.ZodType<
|
|
|
2941
2941
|
> = z.object({
|
|
2942
2942
|
_id: z.string(),
|
|
2943
2943
|
description: z.string(),
|
|
2944
|
-
created: z.string().default("2025-11-
|
|
2945
|
-
updated: z.string().default("2025-11-
|
|
2944
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
2945
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
2946
2946
|
guardrail_config: z.union([
|
|
2947
2947
|
z.lazy(() =>
|
|
2948
2948
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2984,8 +2984,8 @@ export const ResponseBodyTypescript$outboundSchema: z.ZodType<
|
|
|
2984
2984
|
> = z.object({
|
|
2985
2985
|
id: z.string(),
|
|
2986
2986
|
description: z.string(),
|
|
2987
|
-
created: z.string().default("2025-11-
|
|
2988
|
-
updated: z.string().default("2025-11-
|
|
2987
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
2988
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
2989
2989
|
guardrailConfig: z.union([
|
|
2990
2990
|
z.lazy(() =>
|
|
2991
2991
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3275,8 +3275,8 @@ export const ResponseBodyRagas$inboundSchema: z.ZodType<
|
|
|
3275
3275
|
> = z.object({
|
|
3276
3276
|
_id: z.string(),
|
|
3277
3277
|
description: z.string(),
|
|
3278
|
-
created: z.string().default("2025-11-
|
|
3279
|
-
updated: z.string().default("2025-11-
|
|
3278
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
3279
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
3280
3280
|
guardrail_config: z.union([
|
|
3281
3281
|
z.lazy(() =>
|
|
3282
3282
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3321,8 +3321,8 @@ export const ResponseBodyRagas$outboundSchema: z.ZodType<
|
|
|
3321
3321
|
> = z.object({
|
|
3322
3322
|
id: z.string(),
|
|
3323
3323
|
description: z.string(),
|
|
3324
|
-
created: z.string().default("2025-11-
|
|
3325
|
-
updated: z.string().default("2025-11-
|
|
3324
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
3325
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
3326
3326
|
guardrailConfig: z.union([
|
|
3327
3327
|
z.lazy(() =>
|
|
3328
3328
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5483,8 +5483,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5483
5483
|
> = z.object({
|
|
5484
5484
|
_id: z.string(),
|
|
5485
5485
|
description: z.string(),
|
|
5486
|
-
created: z.string().default("2025-11-
|
|
5487
|
-
updated: z.string().default("2025-11-
|
|
5486
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
5487
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
5488
5488
|
guardrail_config: z.union([
|
|
5489
5489
|
z.lazy(() =>
|
|
5490
5490
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5591,8 +5591,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5591
5591
|
> = z.object({
|
|
5592
5592
|
id: z.string(),
|
|
5593
5593
|
description: z.string(),
|
|
5594
|
-
created: z.string().default("2025-11-
|
|
5595
|
-
updated: z.string().default("2025-11-
|
|
5594
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
5595
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
5596
5596
|
guardrailConfig: z.union([
|
|
5597
5597
|
z.lazy(() =>
|
|
5598
5598
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5905,8 +5905,8 @@ export const UpdateEvalResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5905
5905
|
> = z.object({
|
|
5906
5906
|
_id: z.string(),
|
|
5907
5907
|
description: z.string(),
|
|
5908
|
-
created: z.string().default("2025-11-
|
|
5909
|
-
updated: z.string().default("2025-11-
|
|
5908
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
5909
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
5910
5910
|
guardrail_config: z.union([
|
|
5911
5911
|
z.lazy(() =>
|
|
5912
5912
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5947,8 +5947,8 @@ export const UpdateEvalResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5947
5947
|
> = z.object({
|
|
5948
5948
|
id: z.string(),
|
|
5949
5949
|
description: z.string(),
|
|
5950
|
-
created: z.string().default("2025-11-
|
|
5951
|
-
updated: z.string().default("2025-11-
|
|
5950
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
5951
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
5952
5952
|
guardrailConfig: z.union([
|
|
5953
5953
|
z.lazy(() =>
|
|
5954
5954
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -6233,8 +6233,8 @@ export const UpdateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
6233
6233
|
> = z.object({
|
|
6234
6234
|
_id: z.string(),
|
|
6235
6235
|
description: z.string(),
|
|
6236
|
-
created: z.string().default("2025-11-
|
|
6237
|
-
updated: z.string().default("2025-11-
|
|
6236
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6237
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6238
6238
|
guardrail_config: z.union([
|
|
6239
6239
|
z.lazy(() =>
|
|
6240
6240
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -6281,8 +6281,8 @@ export const UpdateEvalResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
6281
6281
|
> = z.object({
|
|
6282
6282
|
id: z.string(),
|
|
6283
6283
|
description: z.string(),
|
|
6284
|
-
created: z.string().default("2025-11-
|
|
6285
|
-
updated: z.string().default("2025-11-
|
|
6284
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6285
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6286
6286
|
guardrailConfig: z.union([
|
|
6287
6287
|
z.lazy(() =>
|
|
6288
6288
|
UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6551,8 +6551,8 @@ export const UpdateEvalResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6551
6551
|
> = z.object({
|
|
6552
6552
|
_id: z.string(),
|
|
6553
6553
|
description: z.string(),
|
|
6554
|
-
created: z.string().default("2025-11-
|
|
6555
|
-
updated: z.string().default("2025-11-
|
|
6554
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6555
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6556
6556
|
guardrail_config: z.union([
|
|
6557
6557
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6558
6558
|
z.lazy(() =>
|
|
@@ -6591,8 +6591,8 @@ export const UpdateEvalResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6591
6591
|
> = z.object({
|
|
6592
6592
|
id: z.string(),
|
|
6593
6593
|
description: z.string(),
|
|
6594
|
-
created: z.string().default("2025-11-
|
|
6595
|
-
updated: z.string().default("2025-11-
|
|
6594
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6595
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6596
6596
|
guardrailConfig: z.union([
|
|
6597
6597
|
z.lazy(() =>
|
|
6598
6598
|
UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6831,8 +6831,8 @@ export const UpdateEvalResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6831
6831
|
> = z.object({
|
|
6832
6832
|
_id: z.string(),
|
|
6833
6833
|
description: z.string(),
|
|
6834
|
-
created: z.string().default("2025-11-
|
|
6835
|
-
updated: z.string().default("2025-11-
|
|
6834
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6835
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6836
6836
|
guardrail_config: z.union([
|
|
6837
6837
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6838
6838
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6871,8 +6871,8 @@ export const UpdateEvalResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6871
6871
|
> = z.object({
|
|
6872
6872
|
id: z.string(),
|
|
6873
6873
|
description: z.string(),
|
|
6874
|
-
created: z.string().default("2025-11-
|
|
6875
|
-
updated: z.string().default("2025-11-
|
|
6874
|
+
created: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6875
|
+
updated: z.string().default("2025-11-27T09:45:50.518Z"),
|
|
6876
6876
|
guardrailConfig: z.union([
|
|
6877
6877
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6878
6878
|
z.lazy(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -1617,7 +1617,7 @@ export const RequestBodyTools$inboundSchema: z.ZodType<
|
|
|
1617
1617
|
z.ZodTypeDef,
|
|
1618
1618
|
unknown
|
|
1619
1619
|
> = z.object({
|
|
1620
|
-
id: z.string().default("
|
|
1620
|
+
id: z.string().default("01KB2B96FM34AP1Q74QTKW6R7A"),
|
|
1621
1621
|
name: z.string(),
|
|
1622
1622
|
description: z.string().optional(),
|
|
1623
1623
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$inboundSchema),
|
|
@@ -1636,7 +1636,7 @@ export const RequestBodyTools$outboundSchema: z.ZodType<
|
|
|
1636
1636
|
z.ZodTypeDef,
|
|
1637
1637
|
RequestBodyTools
|
|
1638
1638
|
> = z.object({
|
|
1639
|
-
id: z.string().default("
|
|
1639
|
+
id: z.string().default("01KB2B96FM34AP1Q74QTKW6R7A"),
|
|
1640
1640
|
name: z.string(),
|
|
1641
1641
|
description: z.string().optional(),
|
|
1642
1642
|
schema: z.lazy(() => UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -2857,7 +2857,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
2857
2857
|
z.ZodTypeDef,
|
|
2858
2858
|
unknown
|
|
2859
2859
|
> = z.object({
|
|
2860
|
-
_id: z.string().default("
|
|
2860
|
+
_id: z.string().default("tool_01KB2B96FE3REJVRCE2AT8Q30F"),
|
|
2861
2861
|
path: z.string(),
|
|
2862
2862
|
key: z.string(),
|
|
2863
2863
|
display_name: z.string().optional(),
|
|
@@ -2911,7 +2911,7 @@ export const UpdateToolResponseBodyCodeExecutionTool$outboundSchema: z.ZodType<
|
|
|
2911
2911
|
z.ZodTypeDef,
|
|
2912
2912
|
UpdateToolResponseBodyCodeExecutionTool
|
|
2913
2913
|
> = z.object({
|
|
2914
|
-
id: z.string().default("
|
|
2914
|
+
id: z.string().default("tool_01KB2B96FE3REJVRCE2AT8Q30F"),
|
|
2915
2915
|
path: z.string(),
|
|
2916
2916
|
key: z.string(),
|
|
2917
2917
|
displayName: z.string().optional(),
|
|
@@ -3096,7 +3096,7 @@ export const UpdateToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
3096
3096
|
z.ZodTypeDef,
|
|
3097
3097
|
unknown
|
|
3098
3098
|
> = z.object({
|
|
3099
|
-
id: z.string().default("
|
|
3099
|
+
id: z.string().default("01KB2B96FEFZNX07663Q4M4411"),
|
|
3100
3100
|
name: z.string(),
|
|
3101
3101
|
description: z.string().optional(),
|
|
3102
3102
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -3115,7 +3115,7 @@ export const UpdateToolResponseBodyTools$outboundSchema: z.ZodType<
|
|
|
3115
3115
|
z.ZodTypeDef,
|
|
3116
3116
|
UpdateToolResponseBodyTools
|
|
3117
3117
|
> = z.object({
|
|
3118
|
-
id: z.string().default("
|
|
3118
|
+
id: z.string().default("01KB2B96FEFZNX07663Q4M4411"),
|
|
3119
3119
|
name: z.string(),
|
|
3120
3120
|
description: z.string().optional(),
|
|
3121
3121
|
schema: z.lazy(() => UpdateToolResponseBodyToolsSchema$outboundSchema),
|
|
@@ -3216,7 +3216,7 @@ export const UpdateToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
3216
3216
|
z.ZodTypeDef,
|
|
3217
3217
|
unknown
|
|
3218
3218
|
> = z.object({
|
|
3219
|
-
_id: z.string().default("
|
|
3219
|
+
_id: z.string().default("tool_01KB2B96FCS6YH6TAWX9JA483E"),
|
|
3220
3220
|
path: z.string(),
|
|
3221
3221
|
key: z.string(),
|
|
3222
3222
|
display_name: z.string().optional(),
|
|
@@ -3269,7 +3269,7 @@ export const UpdateToolResponseBodyMCPTool$outboundSchema: z.ZodType<
|
|
|
3269
3269
|
z.ZodTypeDef,
|
|
3270
3270
|
UpdateToolResponseBodyMCPTool
|
|
3271
3271
|
> = z.object({
|
|
3272
|
-
id: z.string().default("
|
|
3272
|
+
id: z.string().default("tool_01KB2B96FCS6YH6TAWX9JA483E"),
|
|
3273
3273
|
path: z.string(),
|
|
3274
3274
|
key: z.string(),
|
|
3275
3275
|
displayName: z.string().optional(),
|
|
@@ -3646,7 +3646,7 @@ export const UpdateToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
3646
3646
|
z.ZodTypeDef,
|
|
3647
3647
|
unknown
|
|
3648
3648
|
> = z.object({
|
|
3649
|
-
_id: z.string().default("
|
|
3649
|
+
_id: z.string().default("tool_01KB2B96FA09M0XV8KNBZ744A8"),
|
|
3650
3650
|
path: z.string(),
|
|
3651
3651
|
key: z.string(),
|
|
3652
3652
|
display_name: z.string().optional(),
|
|
@@ -3699,7 +3699,7 @@ export const UpdateToolResponseBodyHTTPTool$outboundSchema: z.ZodType<
|
|
|
3699
3699
|
z.ZodTypeDef,
|
|
3700
3700
|
UpdateToolResponseBodyHTTPTool
|
|
3701
3701
|
> = z.object({
|
|
3702
|
-
id: z.string().default("
|
|
3702
|
+
id: z.string().default("tool_01KB2B96FA09M0XV8KNBZ744A8"),
|
|
3703
3703
|
path: z.string(),
|
|
3704
3704
|
key: z.string(),
|
|
3705
3705
|
displayName: z.string().optional(),
|
|
@@ -3881,7 +3881,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
3881
3881
|
z.ZodTypeDef,
|
|
3882
3882
|
unknown
|
|
3883
3883
|
> = z.object({
|
|
3884
|
-
_id: z.string().default("
|
|
3884
|
+
_id: z.string().default("tool_01KB2B96F9H8YW3Z9ZBBNMXACC"),
|
|
3885
3885
|
path: z.string(),
|
|
3886
3886
|
key: z.string(),
|
|
3887
3887
|
display_name: z.string().optional(),
|
|
@@ -3933,7 +3933,7 @@ export const UpdateToolResponseBodyJSONSchemaTool$outboundSchema: z.ZodType<
|
|
|
3933
3933
|
z.ZodTypeDef,
|
|
3934
3934
|
UpdateToolResponseBodyJSONSchemaTool
|
|
3935
3935
|
> = z.object({
|
|
3936
|
-
id: z.string().default("
|
|
3936
|
+
id: z.string().default("tool_01KB2B96F9H8YW3Z9ZBBNMXACC"),
|
|
3937
3937
|
path: z.string(),
|
|
3938
3938
|
key: z.string(),
|
|
3939
3939
|
displayName: z.string().optional(),
|
|
@@ -4130,7 +4130,7 @@ export const UpdateToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
4130
4130
|
z.ZodTypeDef,
|
|
4131
4131
|
unknown
|
|
4132
4132
|
> = z.object({
|
|
4133
|
-
_id: z.string().default("
|
|
4133
|
+
_id: z.string().default("tool_01KB2B96F8D29D9JM4SEG4PP23"),
|
|
4134
4134
|
path: z.string(),
|
|
4135
4135
|
key: z.string(),
|
|
4136
4136
|
display_name: z.string().optional(),
|
|
@@ -4181,7 +4181,7 @@ export const UpdateToolResponseBodyFunctionTool$outboundSchema: z.ZodType<
|
|
|
4181
4181
|
z.ZodTypeDef,
|
|
4182
4182
|
UpdateToolResponseBodyFunctionTool
|
|
4183
4183
|
> = z.object({
|
|
4184
|
-
id: z.string().default("
|
|
4184
|
+
id: z.string().default("tool_01KB2B96F8D29D9JM4SEG4PP23"),
|
|
4185
4185
|
path: z.string(),
|
|
4186
4186
|
key: z.string(),
|
|
4187
4187
|
displayName: z.string().optional(),
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
import { evalsAll } from "../funcs/evalsAll.js";
|
|
6
6
|
import { evalsCreate } from "../funcs/evalsCreate.js";
|
|
7
7
|
import { evalsDelete } from "../funcs/evalsDelete.js";
|
|
8
|
+
import { evalsInvoke } from "../funcs/evalsInvoke.js";
|
|
8
9
|
import { evalsUpdate } from "../funcs/evalsUpdate.js";
|
|
9
10
|
import { ClientSDK, RequestOptions } from "../lib/sdks.js";
|
|
10
11
|
import * as operations from "../models/operations/index.js";
|
|
@@ -66,4 +67,18 @@ export class Evals extends ClientSDK {
|
|
|
66
67
|
options,
|
|
67
68
|
));
|
|
68
69
|
}
|
|
70
|
+
|
|
71
|
+
/**
|
|
72
|
+
* Invoke a Custom Evaluator
|
|
73
|
+
*/
|
|
74
|
+
async invoke(
|
|
75
|
+
request: operations.InvokeEvalRequest,
|
|
76
|
+
options?: RequestOptions,
|
|
77
|
+
): Promise<operations.InvokeEvalResponseBody> {
|
|
78
|
+
return unwrapAsync(evalsInvoke(
|
|
79
|
+
this,
|
|
80
|
+
request,
|
|
81
|
+
options,
|
|
82
|
+
));
|
|
83
|
+
}
|
|
69
84
|
}
|
package/src/lib/config.ts
CHANGED
|
@@ -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: "4.0.
|
|
71
|
+
sdkVersion: "4.0.20",
|
|
72
72
|
genVersion: "2.762.0",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.0.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.0.20 2.762.0 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
package/src/mcp-server/server.ts
CHANGED
|
@@ -516,7 +516,7 @@ export const CreateBudgetResponseBody$inboundSchema: z.ZodType<
|
|
|
516
516
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
517
517
|
.optional(),
|
|
518
518
|
updated: z.string().datetime({ offset: true }).default(
|
|
519
|
-
"2025-11-
|
|
519
|
+
"2025-11-27T11:10:46.704Z",
|
|
520
520
|
).transform(v => new Date(v)),
|
|
521
521
|
}).transform((v) => {
|
|
522
522
|
return remap$(v, {
|
|
@@ -553,7 +553,7 @@ export const CreateBudgetResponseBody$outboundSchema: z.ZodType<
|
|
|
553
553
|
isActive: z.boolean(),
|
|
554
554
|
consumption: z.lazy(() => Consumption$outboundSchema).optional(),
|
|
555
555
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
556
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
556
|
+
updated: z.date().default(() => new Date("2025-11-27T11:10:46.704Z"))
|
|
557
557
|
.transform(v => v.toISOString()),
|
|
558
558
|
}).transform((v) => {
|
|
559
559
|
return remap$(v, {
|
|
@@ -167,7 +167,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
167
167
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
168
168
|
.optional(),
|
|
169
169
|
updated: z.string().datetime({ offset: true }).default(
|
|
170
|
-
"2025-11-
|
|
170
|
+
"2025-11-27T11:10:46.317Z",
|
|
171
171
|
).transform(v => new Date(v)),
|
|
172
172
|
}).transform((v) => {
|
|
173
173
|
return remap$(v, {
|
|
@@ -207,7 +207,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
207
207
|
tags: z.array(z.string()).optional(),
|
|
208
208
|
metadata: z.record(z.any()).optional(),
|
|
209
209
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
210
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
210
|
+
updated: z.date().default(() => new Date("2025-11-27T11:10:46.317Z"))
|
|
211
211
|
.transform(v => v.toISOString()),
|
|
212
212
|
}).transform((v) => {
|
|
213
213
|
return remap$(v, {
|
|
@@ -187,7 +187,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
188
188
|
.optional(),
|
|
189
189
|
updated: z.string().datetime({ offset: true }).default(
|
|
190
|
-
"2025-11-
|
|
190
|
+
"2025-11-27T11:10:46.317Z",
|
|
191
191
|
).transform(v => new Date(v)),
|
|
192
192
|
}).transform((v) => {
|
|
193
193
|
return remap$(v, {
|
|
@@ -226,7 +226,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
226
226
|
createdById: z.string().optional(),
|
|
227
227
|
updatedById: z.string().optional(),
|
|
228
228
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
229
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
229
|
+
updated: z.date().default(() => new Date("2025-11-27T11:10:46.317Z"))
|
|
230
230
|
.transform(v => v.toISOString()),
|
|
231
231
|
}).transform((v) => {
|
|
232
232
|
return remap$(v, {
|
|
@@ -4929,7 +4929,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
4929
4929
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
4930
4930
|
reviewed_by_id: z.string(),
|
|
4931
4931
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
4932
|
-
"2025-11-
|
|
4932
|
+
"2025-11-27T11:10:57.957Z",
|
|
4933
4933
|
).transform(v => new Date(v)),
|
|
4934
4934
|
type: CreateDatasetItemEvaluationsDatasetsType$inboundSchema,
|
|
4935
4935
|
values: z.array(z.string()),
|
|
@@ -4964,7 +4964,7 @@ export const Evaluations3$outboundSchema: z.ZodType<
|
|
|
4964
4964
|
humanReviewId: z.string(),
|
|
4965
4965
|
source: CreateDatasetItemEvaluationsSource$outboundSchema.default("orq"),
|
|
4966
4966
|
reviewedById: z.string(),
|
|
4967
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
4967
|
+
reviewedAt: z.date().default(() => new Date("2025-11-27T11:10:57.957Z"))
|
|
4968
4968
|
.transform(v => v.toISOString()),
|
|
4969
4969
|
type: CreateDatasetItemEvaluationsDatasetsType$outboundSchema,
|
|
4970
4970
|
values: z.array(z.string()),
|
|
@@ -5029,7 +5029,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
5029
5029
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
5030
5030
|
reviewed_by_id: z.string(),
|
|
5031
5031
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5032
|
-
"2025-11-
|
|
5032
|
+
"2025-11-27T11:10:57.956Z",
|
|
5033
5033
|
).transform(v => new Date(v)),
|
|
5034
5034
|
type: CreateDatasetItemEvaluationsType$inboundSchema,
|
|
5035
5035
|
value: z.number(),
|
|
@@ -5064,7 +5064,7 @@ export const Evaluations2$outboundSchema: z.ZodType<
|
|
|
5064
5064
|
humanReviewId: z.string(),
|
|
5065
5065
|
source: EvaluationsSource$outboundSchema.default("orq"),
|
|
5066
5066
|
reviewedById: z.string(),
|
|
5067
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5067
|
+
reviewedAt: z.date().default(() => new Date("2025-11-27T11:10:57.956Z"))
|
|
5068
5068
|
.transform(v => v.toISOString()),
|
|
5069
5069
|
type: CreateDatasetItemEvaluationsType$outboundSchema,
|
|
5070
5070
|
value: z.number(),
|
|
@@ -5127,7 +5127,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
5127
5127
|
source: Source$inboundSchema.default("orq"),
|
|
5128
5128
|
reviewed_by_id: z.string(),
|
|
5129
5129
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
5130
|
-
"2025-11-
|
|
5130
|
+
"2025-11-27T11:10:57.955Z",
|
|
5131
5131
|
).transform(v => new Date(v)),
|
|
5132
5132
|
type: EvaluationsType$inboundSchema,
|
|
5133
5133
|
value: z.string(),
|
|
@@ -5162,7 +5162,7 @@ export const Evaluations1$outboundSchema: z.ZodType<
|
|
|
5162
5162
|
humanReviewId: z.string(),
|
|
5163
5163
|
source: Source$outboundSchema.default("orq"),
|
|
5164
5164
|
reviewedById: z.string(),
|
|
5165
|
-
reviewedAt: z.date().default(() => new Date("2025-11-
|
|
5165
|
+
reviewedAt: z.date().default(() => new Date("2025-11-27T11:10:57.955Z"))
|
|
5166
5166
|
.transform(v => v.toISOString()),
|
|
5167
5167
|
type: EvaluationsType$outboundSchema,
|
|
5168
5168
|
value: z.string(),
|
|
@@ -5267,7 +5267,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5267
5267
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5268
5268
|
.optional(),
|
|
5269
5269
|
updated: z.string().datetime({ offset: true }).default(
|
|
5270
|
-
"2025-11-
|
|
5270
|
+
"2025-11-27T11:10:46.317Z",
|
|
5271
5271
|
).transform(v => new Date(v)),
|
|
5272
5272
|
}).transform((v) => {
|
|
5273
5273
|
return remap$(v, {
|
|
@@ -5345,7 +5345,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5345
5345
|
createdById: z.string().optional(),
|
|
5346
5346
|
updatedById: z.string().optional(),
|
|
5347
5347
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5348
|
-
updated: z.date().default(() => new Date("2025-11-
|
|
5348
|
+
updated: z.date().default(() => new Date("2025-11-27T11:10:46.317Z"))
|
|
5349
5349
|
.transform(v => v.toISOString()),
|
|
5350
5350
|
}).transform((v) => {
|
|
5351
5351
|
return remap$(v, {
|
|
@@ -608,7 +608,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
608
608
|
z.ZodTypeDef,
|
|
609
609
|
unknown
|
|
610
610
|
> = z.object({
|
|
611
|
-
_id: z.string().default("
|
|
611
|
+
_id: z.string().default("01KB2G4QAMJM3PVFSSEG6HBWY0"),
|
|
612
612
|
display_name: z.string(),
|
|
613
613
|
description: z.string().optional(),
|
|
614
614
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -651,7 +651,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
651
651
|
z.ZodTypeDef,
|
|
652
652
|
CreateDatasourceResponseBody
|
|
653
653
|
> = z.object({
|
|
654
|
-
id: z.string().default("
|
|
654
|
+
id: z.string().default("01KB2G4QAMJM3PVFSSEG6HBWY0"),
|
|
655
655
|
displayName: z.string(),
|
|
656
656
|
description: z.string().optional(),
|
|
657
657
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2707,8 +2707,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2707
2707
|
> = z.object({
|
|
2708
2708
|
_id: z.string(),
|
|
2709
2709
|
description: z.string(),
|
|
2710
|
-
created: z.string().default("2025-11-
|
|
2711
|
-
updated: z.string().default("2025-11-
|
|
2710
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
2711
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
2712
2712
|
guardrail_config: z.union([
|
|
2713
2713
|
z.lazy(() =>
|
|
2714
2714
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -2750,8 +2750,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
2750
2750
|
> = z.object({
|
|
2751
2751
|
id: z.string(),
|
|
2752
2752
|
description: z.string(),
|
|
2753
|
-
created: z.string().default("2025-11-
|
|
2754
|
-
updated: z.string().default("2025-11-
|
|
2753
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
2754
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
2755
2755
|
guardrailConfig: z.union([
|
|
2756
2756
|
z.lazy(() =>
|
|
2757
2757
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3032,8 +3032,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3032
3032
|
.object({
|
|
3033
3033
|
_id: z.string(),
|
|
3034
3034
|
description: z.string(),
|
|
3035
|
-
created: z.string().default("2025-11-
|
|
3036
|
-
updated: z.string().default("2025-11-
|
|
3035
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
3036
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
3037
3037
|
guardrail_config: z.union([
|
|
3038
3038
|
z.lazy(() =>
|
|
3039
3039
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3078,8 +3078,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3078
3078
|
> = z.object({
|
|
3079
3079
|
id: z.string(),
|
|
3080
3080
|
description: z.string(),
|
|
3081
|
-
created: z.string().default("2025-11-
|
|
3082
|
-
updated: z.string().default("2025-11-
|
|
3081
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
3082
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
3083
3083
|
guardrailConfig: z.union([
|
|
3084
3084
|
z.lazy(() =>
|
|
3085
3085
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -5101,8 +5101,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
5101
5101
|
> = z.object({
|
|
5102
5102
|
_id: z.string(),
|
|
5103
5103
|
description: z.string(),
|
|
5104
|
-
created: z.string().default("2025-11-
|
|
5105
|
-
updated: z.string().default("2025-11-
|
|
5104
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
5105
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
5106
5106
|
guardrail_config: z.union([
|
|
5107
5107
|
z.lazy(() =>
|
|
5108
5108
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -5209,8 +5209,8 @@ export const CreateEvalResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
5209
5209
|
> = z.object({
|
|
5210
5210
|
id: z.string(),
|
|
5211
5211
|
description: z.string(),
|
|
5212
|
-
created: z.string().default("2025-11-
|
|
5213
|
-
updated: z.string().default("2025-11-
|
|
5212
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
5213
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
5214
5214
|
guardrailConfig: z.union([
|
|
5215
5215
|
z.lazy(() =>
|
|
5216
5216
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -5524,8 +5524,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
5524
5524
|
> = z.object({
|
|
5525
5525
|
_id: z.string(),
|
|
5526
5526
|
description: z.string(),
|
|
5527
|
-
created: z.string().default("2025-11-
|
|
5528
|
-
updated: z.string().default("2025-11-
|
|
5527
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
5528
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
5529
5529
|
guardrail_config: z.union([
|
|
5530
5530
|
z.lazy(() =>
|
|
5531
5531
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5566,8 +5566,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
5566
5566
|
> = z.object({
|
|
5567
5567
|
id: z.string(),
|
|
5568
5568
|
description: z.string(),
|
|
5569
|
-
created: z.string().default("2025-11-
|
|
5570
|
-
updated: z.string().default("2025-11-
|
|
5569
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
5570
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
5571
5571
|
guardrailConfig: z.union([
|
|
5572
5572
|
z.lazy(() =>
|
|
5573
5573
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -5847,8 +5847,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
5847
5847
|
> = z.object({
|
|
5848
5848
|
_id: z.string(),
|
|
5849
5849
|
description: z.string(),
|
|
5850
|
-
created: z.string().default("2025-11-
|
|
5851
|
-
updated: z.string().default("2025-11-
|
|
5850
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
5851
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
5852
5852
|
guardrail_config: z.union([
|
|
5853
5853
|
z.lazy(() =>
|
|
5854
5854
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -5895,8 +5895,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
5895
5895
|
> = z.object({
|
|
5896
5896
|
id: z.string(),
|
|
5897
5897
|
description: z.string(),
|
|
5898
|
-
created: z.string().default("2025-11-
|
|
5899
|
-
updated: z.string().default("2025-11-
|
|
5898
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
5899
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
5900
5900
|
guardrailConfig: z.union([
|
|
5901
5901
|
z.lazy(() =>
|
|
5902
5902
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -6152,8 +6152,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
6152
6152
|
> = z.object({
|
|
6153
6153
|
_id: z.string(),
|
|
6154
6154
|
description: z.string(),
|
|
6155
|
-
created: z.string().default("2025-11-
|
|
6156
|
-
updated: z.string().default("2025-11-
|
|
6155
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
6156
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
6157
6157
|
guardrail_config: z.union([
|
|
6158
6158
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
6159
6159
|
z.lazy(() =>
|
|
@@ -6192,8 +6192,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
6192
6192
|
> = z.object({
|
|
6193
6193
|
id: z.string(),
|
|
6194
6194
|
description: z.string(),
|
|
6195
|
-
created: z.string().default("2025-11-
|
|
6196
|
-
updated: z.string().default("2025-11-
|
|
6195
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
6196
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
6197
6197
|
guardrailConfig: z.union([
|
|
6198
6198
|
z.lazy(() =>
|
|
6199
6199
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -6431,8 +6431,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
6431
6431
|
> = z.object({
|
|
6432
6432
|
_id: z.string(),
|
|
6433
6433
|
description: z.string(),
|
|
6434
|
-
created: z.string().default("2025-11-
|
|
6435
|
-
updated: z.string().default("2025-11-
|
|
6434
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
6435
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
6436
6436
|
guardrail_config: z.union([
|
|
6437
6437
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
6438
6438
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -6471,8 +6471,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
6471
6471
|
> = z.object({
|
|
6472
6472
|
id: z.string(),
|
|
6473
6473
|
description: z.string(),
|
|
6474
|
-
created: z.string().default("2025-11-
|
|
6475
|
-
updated: z.string().default("2025-11-
|
|
6474
|
+
created: z.string().default("2025-11-27T11:10:48.412Z"),
|
|
6475
|
+
updated: z.string().default("2025-11-27T11:10:48.413Z"),
|
|
6476
6476
|
guardrailConfig: z.union([
|
|
6477
6477
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
6478
6478
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|