@orq-ai/node 4.9.6 → 4.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +7 -7
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createeval.ts +30 -16
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +22 -16
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +22 -16
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/src/lib/config.ts +2 -2
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
|
@@ -66,7 +66,7 @@ function retrieveDatasourceRequestToJSON(retrieveDatasourceRequest) {
|
|
|
66
66
|
exports.RetrieveDatasourceStatus$inboundSchema = z.nativeEnum(exports.RetrieveDatasourceStatus);
|
|
67
67
|
/** @internal */
|
|
68
68
|
exports.RetrieveDatasourceResponseBody$inboundSchema = z.object({
|
|
69
|
-
_id: z.string().default("
|
|
69
|
+
_id: z.string().default("01KRXSQ3RQ8J9C5F8KD7DBEXQR"),
|
|
70
70
|
display_name: z.string(),
|
|
71
71
|
description: z.string().optional(),
|
|
72
72
|
status: exports.RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -83,7 +83,7 @@ exports.RetrieveIdentityResponseBody$inboundSchema = z.object({
|
|
|
83
83
|
metadata: z.record(z.any()).optional(),
|
|
84
84
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
85
85
|
.optional(),
|
|
86
|
-
updated: z.string().datetime({ offset: true }).default("2026-05-
|
|
86
|
+
updated: z.string().datetime({ offset: true }).default("2026-05-18T15:01:36.657Z").transform(v => new Date(v)),
|
|
87
87
|
metrics: z.nullable(z.lazy(() => exports.Metrics$inboundSchema)).optional(),
|
|
88
88
|
}).transform((v) => {
|
|
89
89
|
return (0, primitives_js_1.remap)(v, {
|
|
@@ -187,7 +187,7 @@ function retrieveToolResponseBodyCodeToolFromJSON(jsonString) {
|
|
|
187
187
|
}
|
|
188
188
|
/** @internal */
|
|
189
189
|
exports.RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
190
|
-
_id: z.string().default("
|
|
190
|
+
_id: z.string().default("tool_01KRXSQ3P5G7MJ9G2H5NTFEZWH"),
|
|
191
191
|
path: z.string(),
|
|
192
192
|
key: z.string(),
|
|
193
193
|
display_name: z.string().optional(),
|
|
@@ -240,7 +240,7 @@ function retrieveToolResponseBodyToolsSchemaFromJSON(jsonString) {
|
|
|
240
240
|
}
|
|
241
241
|
/** @internal */
|
|
242
242
|
exports.RetrieveToolResponseBodyTools$inboundSchema = z.object({
|
|
243
|
-
id: z.string().default("
|
|
243
|
+
id: z.string().default("01KRXSQ3P4KJADB0D7DHMM76ST"),
|
|
244
244
|
name: z.string(),
|
|
245
245
|
description: z.string().optional(),
|
|
246
246
|
schema: z.lazy(() => exports.RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -270,7 +270,7 @@ function retrieveToolResponseBodyMcpFromJSON(jsonString) {
|
|
|
270
270
|
}
|
|
271
271
|
/** @internal */
|
|
272
272
|
exports.RetrieveToolResponseBodyMCPTool$inboundSchema = z.object({
|
|
273
|
-
_id: z.string().default("
|
|
273
|
+
_id: z.string().default("tool_01KRXSQ3P3EZHGHDCWA6K0HE7B"),
|
|
274
274
|
path: z.string(),
|
|
275
275
|
key: z.string(),
|
|
276
276
|
display_name: z.string().optional(),
|
|
@@ -357,7 +357,7 @@ function retrieveToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
357
357
|
}
|
|
358
358
|
/** @internal */
|
|
359
359
|
exports.RetrieveToolResponseBodyHTTPTool$inboundSchema = z.object({
|
|
360
|
-
_id: z.string().default("
|
|
360
|
+
_id: z.string().default("tool_01KRXSQ3P2MWX7XPQZQHVNNAST"),
|
|
361
361
|
path: z.string(),
|
|
362
362
|
key: z.string(),
|
|
363
363
|
display_name: z.string().optional(),
|
|
@@ -407,7 +407,7 @@ function retrieveToolResponseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
407
407
|
}
|
|
408
408
|
/** @internal */
|
|
409
409
|
exports.RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
410
|
-
_id: z.string().default("
|
|
410
|
+
_id: z.string().default("tool_01KRXSQ3P0NJ0DP2VWRBDR6XPD"),
|
|
411
411
|
path: z.string(),
|
|
412
412
|
key: z.string(),
|
|
413
413
|
display_name: z.string().optional(),
|
|
@@ -461,7 +461,7 @@ function retrieveToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
461
461
|
}
|
|
462
462
|
/** @internal */
|
|
463
463
|
exports.RetrieveToolResponseBodyFunctionTool$inboundSchema = z.object({
|
|
464
|
-
_id: z.string().default("
|
|
464
|
+
_id: z.string().default("tool_01KRXSQ3NR5EP7H52H1A53FCQ6"),
|
|
465
465
|
path: z.string(),
|
|
466
466
|
key: z.string(),
|
|
467
467
|
display_name: z.string().optional(),
|
|
@@ -1000,7 +1000,7 @@ function agentToolInputRunSchemaToJSON(agentToolInputRunSchema) {
|
|
|
1000
1000
|
}
|
|
1001
1001
|
/** @internal */
|
|
1002
1002
|
exports.Tools$outboundSchema = z.object({
|
|
1003
|
-
id: z.string().default("
|
|
1003
|
+
id: z.string().default("01KRXSQ3AXNJTZEYSTQ4SK1GEH"),
|
|
1004
1004
|
name: z.string(),
|
|
1005
1005
|
description: z.string().optional(),
|
|
1006
1006
|
schema: z.lazy(() => exports.AgentToolInputRunSchema$outboundSchema),
|
|
@@ -963,7 +963,7 @@ function streamRunAgentAgentToolInputRunAgentsSchemaToJSON(streamRunAgentAgentTo
|
|
|
963
963
|
}
|
|
964
964
|
/** @internal */
|
|
965
965
|
exports.AgentToolInputRunTools$outboundSchema = z.object({
|
|
966
|
-
id: z.string().default("
|
|
966
|
+
id: z.string().default("01KRXSQ3CDCAWV2PAZ9HS8C6YC"),
|
|
967
967
|
name: z.string(),
|
|
968
968
|
description: z.string().optional(),
|
|
969
969
|
schema: z.lazy(() => exports.StreamRunAgentAgentToolInputRunAgentsSchema$outboundSchema),
|
|
@@ -745,7 +745,7 @@ exports.UpdateDatapointEvaluations3$inboundSchema = z.object({
|
|
|
745
745
|
source: exports.UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema
|
|
746
746
|
.default("orq"),
|
|
747
747
|
reviewed_by_id: z.string(),
|
|
748
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-05-
|
|
748
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-05-18T15:01:51.086Z").transform(v => new Date(v)),
|
|
749
749
|
type: z.literal("string_array"),
|
|
750
750
|
values: z.array(z.string()),
|
|
751
751
|
}).transform((v) => {
|
|
@@ -772,7 +772,7 @@ exports.UpdateDatapointEvaluations2$inboundSchema = z.object({
|
|
|
772
772
|
human_review_id: z.string(),
|
|
773
773
|
source: exports.UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
774
774
|
reviewed_by_id: z.string(),
|
|
775
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-05-
|
|
775
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-05-18T15:01:51.085Z").transform(v => new Date(v)),
|
|
776
776
|
type: z.literal("number"),
|
|
777
777
|
value: z.number(),
|
|
778
778
|
}).transform((v) => {
|
|
@@ -798,7 +798,7 @@ exports.UpdateDatapointEvaluations1$inboundSchema = z.object({
|
|
|
798
798
|
human_review_id: z.string(),
|
|
799
799
|
source: exports.UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
800
800
|
reviewed_by_id: z.string(),
|
|
801
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-05-
|
|
801
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-05-18T15:01:51.085Z").transform(v => new Date(v)),
|
|
802
802
|
type: z.literal("string"),
|
|
803
803
|
value: z.string(),
|
|
804
804
|
}).transform((v) => {
|
|
@@ -845,7 +845,7 @@ exports.UpdateDatapointResponseBody$inboundSchema = z.object({
|
|
|
845
845
|
updated_by_id: z.string().optional(),
|
|
846
846
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
847
847
|
.optional(),
|
|
848
|
-
updated: z.string().datetime({ offset: true }).default("2026-05-
|
|
848
|
+
updated: z.string().datetime({ offset: true }).default("2026-05-18T15:01:36.657Z").transform(v => new Date(v)),
|
|
849
849
|
}).transform((v) => {
|
|
850
850
|
return (0, primitives_js_1.remap)(v, {
|
|
851
851
|
"_id": "id",
|
|
@@ -95,7 +95,7 @@ exports.UpdateDatasetResponseBody$inboundSchema = z.object({
|
|
|
95
95
|
updated_by_id: z.string().optional(),
|
|
96
96
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
97
97
|
.optional(),
|
|
98
|
-
updated: z.string().datetime({ offset: true }).default("2026-05-
|
|
98
|
+
updated: z.string().datetime({ offset: true }).default("2026-05-18T15:01:36.657Z").transform(v => new Date(v)),
|
|
99
99
|
}).transform((v) => {
|
|
100
100
|
return (0, primitives_js_1.remap)(v, {
|
|
101
101
|
"_id": "id",
|
|
@@ -80,7 +80,7 @@ function updateDatasourceRequestToJSON(updateDatasourceRequest) {
|
|
|
80
80
|
exports.UpdateDatasourceStatus$inboundSchema = z.nativeEnum(exports.UpdateDatasourceStatus);
|
|
81
81
|
/** @internal */
|
|
82
82
|
exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
83
|
-
_id: z.string().default("
|
|
83
|
+
_id: z.string().default("01KRXSQ3RSB1G19HK81VB0KZ8D"),
|
|
84
84
|
display_name: z.string(),
|
|
85
85
|
description: z.string().optional(),
|
|
86
86
|
status: exports.UpdateDatasourceStatus$inboundSchema,
|
|
@@ -527,8 +527,8 @@ exports.UpdateEvalResponseBodyEvalsResponse200ApplicationJson7Type$inboundSchema
|
|
|
527
527
|
exports.ResponseBodyTypescript$inboundSchema = z.object({
|
|
528
528
|
_id: z.string(),
|
|
529
529
|
description: z.string(),
|
|
530
|
-
created: z.string().default("2026-05-
|
|
531
|
-
updated: z.string().default("2026-05-
|
|
530
|
+
created: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
531
|
+
updated: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
532
532
|
guardrail_config: z.nullable(z.union([
|
|
533
533
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
534
534
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyCategorical$inboundSchema),
|
|
@@ -612,8 +612,8 @@ exports.ResponseBodyRagasMetric$inboundSchema = z.nativeEnum(exports.ResponseBod
|
|
|
612
612
|
exports.ResponseBodyRagas$inboundSchema = z.object({
|
|
613
613
|
_id: z.string(),
|
|
614
614
|
description: z.string(),
|
|
615
|
-
created: z.string().default("2026-05-
|
|
616
|
-
updated: z.string().default("2026-05-
|
|
615
|
+
created: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
616
|
+
updated: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
617
617
|
guardrail_config: z.nullable(z.union([
|
|
618
618
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
619
619
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONCategorical$inboundSchema),
|
|
@@ -969,8 +969,8 @@ function responseBodyFunctionParamsFromJSON(jsonString) {
|
|
|
969
969
|
exports.ResponseBodyFunction$inboundSchema = z.object({
|
|
970
970
|
_id: z.string(),
|
|
971
971
|
description: z.string(),
|
|
972
|
-
created: z.string().default("2026-05-
|
|
973
|
-
updated: z.string().default("2026-05-
|
|
972
|
+
created: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
973
|
+
updated: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
974
974
|
guardrail_config: z.nullable(z.union([
|
|
975
975
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
976
976
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Categorical$inboundSchema),
|
|
@@ -1084,8 +1084,8 @@ exports.UpdateEvalResponseBodyEvalsResponseType$inboundSchema = z
|
|
|
1084
1084
|
exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
1085
1085
|
_id: z.string(),
|
|
1086
1086
|
description: z.string(),
|
|
1087
|
-
created: z.string().default("2026-05-
|
|
1088
|
-
updated: z.string().default("2026-05-
|
|
1087
|
+
created: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1088
|
+
updated: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1089
1089
|
guardrail_config: z.nullable(z.union([
|
|
1090
1090
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1091
1091
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseCategorical$inboundSchema),
|
|
@@ -1165,8 +1165,8 @@ exports.UpdateEvalResponseBodyMethod$inboundSchema = z.nativeEnum(exports.Update
|
|
|
1165
1165
|
exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
1166
1166
|
_id: z.string(),
|
|
1167
1167
|
description: z.string(),
|
|
1168
|
-
created: z.string().default("2026-05-
|
|
1169
|
-
updated: z.string().default("2026-05-
|
|
1168
|
+
created: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1169
|
+
updated: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1170
1170
|
guardrail_config: z.nullable(z.union([
|
|
1171
1171
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsBoolean$inboundSchema),
|
|
1172
1172
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsCategorical$inboundSchema),
|
|
@@ -1247,8 +1247,8 @@ exports.UpdateEvalResponseBodyType$inboundSchema = z.nativeEnum(exports.UpdateEv
|
|
|
1247
1247
|
exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
1248
1248
|
_id: z.string(),
|
|
1249
1249
|
description: z.string(),
|
|
1250
|
-
created: z.string().default("2026-05-
|
|
1251
|
-
updated: z.string().default("2026-05-
|
|
1250
|
+
created: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1251
|
+
updated: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1252
1252
|
guardrail_config: z.nullable(z.union([
|
|
1253
1253
|
z.lazy(() => exports.UpdateEvalGuardrailConfigBoolean$inboundSchema),
|
|
1254
1254
|
z.lazy(() => exports.UpdateEvalGuardrailConfigCategorical$inboundSchema),
|
|
@@ -1413,8 +1413,8 @@ function updateEvalLLMJuryFromJSON(jsonString) {
|
|
|
1413
1413
|
exports.UpdateEvalLlm2$inboundSchema = z.object({
|
|
1414
1414
|
_id: z.string(),
|
|
1415
1415
|
description: z.string(),
|
|
1416
|
-
created: z.string().default("2026-05-
|
|
1417
|
-
updated: z.string().default("2026-05-
|
|
1416
|
+
created: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1417
|
+
updated: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1418
1418
|
guardrail_config: z.nullable(z.union([
|
|
1419
1419
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMBoolean$inboundSchema),
|
|
1420
1420
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1LLMCategorical$inboundSchema),
|
|
@@ -1509,8 +1509,8 @@ function updateEvalLLMCategoricalLabelsFromJSON(jsonString) {
|
|
|
1509
1509
|
exports.UpdateEvalLlm1$inboundSchema = z.object({
|
|
1510
1510
|
_id: z.string(),
|
|
1511
1511
|
description: z.string(),
|
|
1512
|
-
created: z.string().default("2026-05-
|
|
1513
|
-
updated: z.string().default("2026-05-
|
|
1512
|
+
created: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1513
|
+
updated: z.string().default("2026-05-18T15:01:38.747Z"),
|
|
1514
1514
|
guardrail_config: z.nullable(z.union([
|
|
1515
1515
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Boolean$inboundSchema),
|
|
1516
1516
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody1Categorical$inboundSchema),
|
|
@@ -83,7 +83,7 @@ exports.UpdateIdentityResponseBody$inboundSchema = z.object({
|
|
|
83
83
|
metadata: z.record(z.any()).optional(),
|
|
84
84
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
85
85
|
.optional(),
|
|
86
|
-
updated: z.string().datetime({ offset: true }).default("2026-05-
|
|
86
|
+
updated: z.string().datetime({ offset: true }).default("2026-05-18T15:01:36.657Z").transform(v => new Date(v)),
|
|
87
87
|
}).transform((v) => {
|
|
88
88
|
return (0, primitives_js_1.remap)(v, {
|
|
89
89
|
"_id": "id",
|
|
@@ -371,7 +371,7 @@ function updateToolRequestBodyToolsSchemaToJSON(updateToolRequestBodyToolsSchema
|
|
|
371
371
|
}
|
|
372
372
|
/** @internal */
|
|
373
373
|
exports.RequestBodyTools$outboundSchema = z.object({
|
|
374
|
-
id: z.string().default("
|
|
374
|
+
id: z.string().default("01KRXSQ3NFHMR63C6J4ZME9WCE"),
|
|
375
375
|
name: z.string(),
|
|
376
376
|
description: z.string().optional(),
|
|
377
377
|
schema: z.lazy(() => exports.UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -666,7 +666,7 @@ function updateToolResponseBodyCodeToolFromJSON(jsonString) {
|
|
|
666
666
|
}
|
|
667
667
|
/** @internal */
|
|
668
668
|
exports.UpdateToolResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
669
|
-
_id: z.string().default("
|
|
669
|
+
_id: z.string().default("tool_01KRXSQ3NA36YNB8Q55PSGFS1R"),
|
|
670
670
|
path: z.string(),
|
|
671
671
|
key: z.string(),
|
|
672
672
|
display_name: z.string().optional(),
|
|
@@ -719,7 +719,7 @@ function updateToolResponseBodyToolsSchemaFromJSON(jsonString) {
|
|
|
719
719
|
}
|
|
720
720
|
/** @internal */
|
|
721
721
|
exports.UpdateToolResponseBodyTools$inboundSchema = z.object({
|
|
722
|
-
id: z.string().default("
|
|
722
|
+
id: z.string().default("01KRXSQ3NA8YM5Z6KZPR16FDNB"),
|
|
723
723
|
name: z.string(),
|
|
724
724
|
description: z.string().optional(),
|
|
725
725
|
schema: z.lazy(() => exports.UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -749,7 +749,7 @@ function updateToolResponseBodyMcpFromJSON(jsonString) {
|
|
|
749
749
|
}
|
|
750
750
|
/** @internal */
|
|
751
751
|
exports.UpdateToolResponseBodyMCPTool$inboundSchema = z.object({
|
|
752
|
-
_id: z.string().default("
|
|
752
|
+
_id: z.string().default("tool_01KRXSQ3N9K38CEVAR6QJNQ49C"),
|
|
753
753
|
path: z.string(),
|
|
754
754
|
key: z.string(),
|
|
755
755
|
display_name: z.string().optional(),
|
|
@@ -836,7 +836,7 @@ function updateToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
836
836
|
}
|
|
837
837
|
/** @internal */
|
|
838
838
|
exports.UpdateToolResponseBodyHTTPTool$inboundSchema = z.object({
|
|
839
|
-
_id: z.string().default("
|
|
839
|
+
_id: z.string().default("tool_01KRXSQ3N70Z8RV0B448TK7W8B"),
|
|
840
840
|
path: z.string(),
|
|
841
841
|
key: z.string(),
|
|
842
842
|
display_name: z.string().optional(),
|
|
@@ -886,7 +886,7 @@ function updateToolResponseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
886
886
|
}
|
|
887
887
|
/** @internal */
|
|
888
888
|
exports.UpdateToolResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
889
|
-
_id: z.string().default("
|
|
889
|
+
_id: z.string().default("tool_01KRXSQ3N6SDKFF08EXS0S56DC"),
|
|
890
890
|
path: z.string(),
|
|
891
891
|
key: z.string(),
|
|
892
892
|
display_name: z.string().optional(),
|
|
@@ -940,7 +940,7 @@ function updateToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
940
940
|
}
|
|
941
941
|
/** @internal */
|
|
942
942
|
exports.UpdateToolResponseBodyFunctionTool$inboundSchema = z.object({
|
|
943
|
-
_id: z.string().default("
|
|
943
|
+
_id: z.string().default("tool_01KRXSQ3N5Z5W3PX7X07W1ESM6"),
|
|
944
944
|
path: z.string(),
|
|
945
945
|
key: z.string(),
|
|
946
946
|
display_name: z.string().optional(),
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orq-ai/node",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.8",
|
|
4
4
|
"author": "Orq",
|
|
5
5
|
"exports": {
|
|
6
|
-
"./*": "./*",
|
|
7
6
|
"./langchain": {
|
|
7
|
+
"import": "./langchain/index.mjs",
|
|
8
8
|
"require": "./langchain/index.js",
|
|
9
|
-
"types": "./langchain/index.d.mts"
|
|
10
|
-
"import": "./langchain/index.mjs"
|
|
9
|
+
"types": "./langchain/index.d.mts"
|
|
11
10
|
},
|
|
12
11
|
".": {
|
|
12
|
+
"import": "./index.js",
|
|
13
13
|
"require": "./index.js",
|
|
14
|
-
"types": "./index.d.ts"
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
"types": "./index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./*": "./*"
|
|
17
17
|
},
|
|
18
18
|
"main": "./index.js",
|
|
19
19
|
"sideEffects": false,
|
|
@@ -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.10.0-rc.
|
|
71
|
+
sdkVersion: "4.10.0-rc.12",
|
|
72
72
|
genVersion: "2.884.4",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.10.0-rc.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.10.0-rc.12 2.884.4 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
|
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
|
-
_id: z.string().default("
|
|
43
|
+
_id: z.string().default("reasoning_01krxpe4xzdr0hmt2sy6wbnvq5"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -138,7 +138,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
138
138
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
139
139
|
.optional(),
|
|
140
140
|
updated: z.string().datetime({ offset: true }).default(
|
|
141
|
-
"2026-05-
|
|
141
|
+
"2026-05-18T14:04:15.855Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2355,7 +2355,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2355
2355
|
),
|
|
2356
2356
|
reviewed_by_id: z.string(),
|
|
2357
2357
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2358
|
-
"2026-05-
|
|
2358
|
+
"2026-05-18T14:04:32.059Z",
|
|
2359
2359
|
).transform(v => new Date(v)),
|
|
2360
2360
|
type: z.literal("string_array"),
|
|
2361
2361
|
values: z.array(z.string()),
|
|
@@ -2400,7 +2400,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2400
2400
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
2401
2401
|
reviewed_by_id: z.string(),
|
|
2402
2402
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2403
|
-
"2026-05-
|
|
2403
|
+
"2026-05-18T14:04:32.059Z",
|
|
2404
2404
|
).transform(v => new Date(v)),
|
|
2405
2405
|
type: z.literal("number"),
|
|
2406
2406
|
value: z.number(),
|
|
@@ -2446,7 +2446,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2446
2446
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
2447
2447
|
reviewed_by_id: z.string(),
|
|
2448
2448
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2449
|
-
"2026-05-
|
|
2449
|
+
"2026-05-18T14:04:32.059Z",
|
|
2450
2450
|
).transform(v => new Date(v)),
|
|
2451
2451
|
type: z.literal("string"),
|
|
2452
2452
|
value: z.string(),
|
|
@@ -2529,7 +2529,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2529
2529
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2530
2530
|
.optional(),
|
|
2531
2531
|
updated: z.string().datetime({ offset: true }).default(
|
|
2532
|
-
"2026-05-
|
|
2532
|
+
"2026-05-18T14:04:15.855Z",
|
|
2533
2533
|
).transform(v => new Date(v)),
|
|
2534
2534
|
}).transform((v) => {
|
|
2535
2535
|
return remap$(v, {
|
|
@@ -403,7 +403,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
403
403
|
z.ZodTypeDef,
|
|
404
404
|
unknown
|
|
405
405
|
> = z.object({
|
|
406
|
-
_id: z.string().default("
|
|
406
|
+
_id: z.string().default("01KRXPE5C691TNTDMYPKTDXG8C"),
|
|
407
407
|
display_name: z.string(),
|
|
408
408
|
description: z.string().optional(),
|
|
409
409
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -378,6 +378,7 @@ export type Llm2 = {
|
|
|
378
378
|
prompt: string;
|
|
379
379
|
categories?: Array<string> | undefined;
|
|
380
380
|
categoricalLabels?: Array<LLMCategoricalLabels> | undefined;
|
|
381
|
+
datasetId?: string | undefined;
|
|
381
382
|
/**
|
|
382
383
|
* Entity storage path.
|
|
383
384
|
*
|
|
@@ -475,6 +476,7 @@ export type Llm1 = {
|
|
|
475
476
|
prompt: string;
|
|
476
477
|
categories?: Array<string> | undefined;
|
|
477
478
|
categoricalLabels?: Array<CreateEvalLLMCategoricalLabels> | undefined;
|
|
479
|
+
datasetId?: string | undefined;
|
|
478
480
|
/**
|
|
479
481
|
* Entity storage path.
|
|
480
482
|
*
|
|
@@ -1237,6 +1239,7 @@ export type CreateEvalLlm2 = {
|
|
|
1237
1239
|
prompt: string;
|
|
1238
1240
|
categories?: Array<string> | undefined;
|
|
1239
1241
|
categoricalLabels?: Array<CreateEvalLLMEvalsCategoricalLabels> | undefined;
|
|
1242
|
+
datasetId?: string | undefined;
|
|
1240
1243
|
key: string;
|
|
1241
1244
|
mode: "jury";
|
|
1242
1245
|
jury: CreateEvalLLMJury;
|
|
@@ -1315,6 +1318,7 @@ export type CreateEvalLlm1 = {
|
|
|
1315
1318
|
categoricalLabels?:
|
|
1316
1319
|
| Array<CreateEvalLLMEvalsResponseCategoricalLabels>
|
|
1317
1320
|
| undefined;
|
|
1321
|
+
datasetId?: string | undefined;
|
|
1318
1322
|
key: string;
|
|
1319
1323
|
mode: "single";
|
|
1320
1324
|
model: string;
|
|
@@ -2288,6 +2292,7 @@ export type Llm2$Outbound = {
|
|
|
2288
2292
|
prompt: string;
|
|
2289
2293
|
categories?: Array<string> | undefined;
|
|
2290
2294
|
categorical_labels?: Array<LLMCategoricalLabels$Outbound> | undefined;
|
|
2295
|
+
dataset_id?: string | undefined;
|
|
2291
2296
|
path: string;
|
|
2292
2297
|
description: string;
|
|
2293
2298
|
key: string;
|
|
@@ -2319,6 +2324,7 @@ export const Llm2$outboundSchema: z.ZodType<Llm2$Outbound, z.ZodTypeDef, Llm2> =
|
|
|
2319
2324
|
categoricalLabels: z.array(
|
|
2320
2325
|
z.lazy(() => LLMCategoricalLabels$outboundSchema),
|
|
2321
2326
|
).optional(),
|
|
2327
|
+
datasetId: z.string().optional(),
|
|
2322
2328
|
path: z.string(),
|
|
2323
2329
|
description: z.string().default(""),
|
|
2324
2330
|
key: z.string(),
|
|
@@ -2329,6 +2335,7 @@ export const Llm2$outboundSchema: z.ZodType<Llm2$Outbound, z.ZodTypeDef, Llm2> =
|
|
|
2329
2335
|
guardrailConfig: "guardrail_config",
|
|
2330
2336
|
outputType: "output_type",
|
|
2331
2337
|
categoricalLabels: "categorical_labels",
|
|
2338
|
+
datasetId: "dataset_id",
|
|
2332
2339
|
});
|
|
2333
2340
|
});
|
|
2334
2341
|
|
|
@@ -2530,6 +2537,7 @@ export type Llm1$Outbound = {
|
|
|
2530
2537
|
categorical_labels?:
|
|
2531
2538
|
| Array<CreateEvalLLMCategoricalLabels$Outbound>
|
|
2532
2539
|
| undefined;
|
|
2540
|
+
dataset_id?: string | undefined;
|
|
2533
2541
|
path: string;
|
|
2534
2542
|
description: string;
|
|
2535
2543
|
key: string;
|
|
@@ -2561,6 +2569,7 @@ export const Llm1$outboundSchema: z.ZodType<Llm1$Outbound, z.ZodTypeDef, Llm1> =
|
|
|
2561
2569
|
categoricalLabels: z.array(
|
|
2562
2570
|
z.lazy(() => CreateEvalLLMCategoricalLabels$outboundSchema),
|
|
2563
2571
|
).optional(),
|
|
2572
|
+
datasetId: z.string().optional(),
|
|
2564
2573
|
path: z.string(),
|
|
2565
2574
|
description: z.string().default(""),
|
|
2566
2575
|
key: z.string(),
|
|
@@ -2571,6 +2580,7 @@ export const Llm1$outboundSchema: z.ZodType<Llm1$Outbound, z.ZodTypeDef, Llm1> =
|
|
|
2571
2580
|
guardrailConfig: "guardrail_config",
|
|
2572
2581
|
outputType: "output_type",
|
|
2573
2582
|
categoricalLabels: "categorical_labels",
|
|
2583
|
+
datasetId: "dataset_id",
|
|
2574
2584
|
});
|
|
2575
2585
|
});
|
|
2576
2586
|
|
|
@@ -2776,8 +2786,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2776
2786
|
> = z.object({
|
|
2777
2787
|
_id: z.string(),
|
|
2778
2788
|
description: z.string(),
|
|
2779
|
-
created: z.string().default("2026-05-
|
|
2780
|
-
updated: z.string().default("2026-05-
|
|
2789
|
+
created: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
2790
|
+
updated: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
2781
2791
|
guardrail_config: z.nullable(
|
|
2782
2792
|
z.union([
|
|
2783
2793
|
z.lazy(() =>
|
|
@@ -2965,8 +2975,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2965
2975
|
.object({
|
|
2966
2976
|
_id: z.string(),
|
|
2967
2977
|
description: z.string(),
|
|
2968
|
-
created: z.string().default("2026-05-
|
|
2969
|
-
updated: z.string().default("2026-05-
|
|
2978
|
+
created: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
2979
|
+
updated: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
2970
2980
|
guardrail_config: z.nullable(
|
|
2971
2981
|
z.union([
|
|
2972
2982
|
z.lazy(() =>
|
|
@@ -3789,8 +3799,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3789
3799
|
> = z.object({
|
|
3790
3800
|
_id: z.string(),
|
|
3791
3801
|
description: z.string(),
|
|
3792
|
-
created: z.string().default("2026-05-
|
|
3793
|
-
updated: z.string().default("2026-05-
|
|
3802
|
+
created: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
3803
|
+
updated: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
3794
3804
|
guardrail_config: z.nullable(
|
|
3795
3805
|
z.union([
|
|
3796
3806
|
z.lazy(() =>
|
|
@@ -4008,8 +4018,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
4008
4018
|
> = z.object({
|
|
4009
4019
|
_id: z.string(),
|
|
4010
4020
|
description: z.string(),
|
|
4011
|
-
created: z.string().default("2026-05-
|
|
4012
|
-
updated: z.string().default("2026-05-
|
|
4021
|
+
created: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4022
|
+
updated: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4013
4023
|
guardrail_config: z.nullable(
|
|
4014
4024
|
z.union([
|
|
4015
4025
|
z.lazy(() =>
|
|
@@ -4190,8 +4200,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
4190
4200
|
> = z.object({
|
|
4191
4201
|
_id: z.string(),
|
|
4192
4202
|
description: z.string(),
|
|
4193
|
-
created: z.string().default("2026-05-
|
|
4194
|
-
updated: z.string().default("2026-05-
|
|
4203
|
+
created: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4204
|
+
updated: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4195
4205
|
guardrail_config: z.nullable(
|
|
4196
4206
|
z.union([
|
|
4197
4207
|
z.lazy(() =>
|
|
@@ -4367,8 +4377,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
4367
4377
|
> = z.object({
|
|
4368
4378
|
_id: z.string(),
|
|
4369
4379
|
description: z.string(),
|
|
4370
|
-
created: z.string().default("2026-05-
|
|
4371
|
-
updated: z.string().default("2026-05-
|
|
4380
|
+
created: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4381
|
+
updated: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4372
4382
|
guardrail_config: z.nullable(
|
|
4373
4383
|
z.union([
|
|
4374
4384
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -4738,8 +4748,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4738
4748
|
> = z.object({
|
|
4739
4749
|
_id: z.string(),
|
|
4740
4750
|
description: z.string(),
|
|
4741
|
-
created: z.string().default("2026-05-
|
|
4742
|
-
updated: z.string().default("2026-05-
|
|
4751
|
+
created: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4752
|
+
updated: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4743
4753
|
guardrail_config: z.nullable(
|
|
4744
4754
|
z.union([
|
|
4745
4755
|
z.lazy(() =>
|
|
@@ -4760,6 +4770,7 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4760
4770
|
categorical_labels: z.array(
|
|
4761
4771
|
z.lazy(() => CreateEvalLLMEvalsCategoricalLabels$inboundSchema),
|
|
4762
4772
|
).optional(),
|
|
4773
|
+
dataset_id: z.string().optional(),
|
|
4763
4774
|
key: z.string(),
|
|
4764
4775
|
mode: z.literal("jury"),
|
|
4765
4776
|
jury: z.lazy(() => CreateEvalLLMJury$inboundSchema),
|
|
@@ -4768,6 +4779,7 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4768
4779
|
"_id": "id",
|
|
4769
4780
|
"guardrail_config": "guardrailConfig",
|
|
4770
4781
|
"categorical_labels": "categoricalLabels",
|
|
4782
|
+
"dataset_id": "datasetId",
|
|
4771
4783
|
});
|
|
4772
4784
|
});
|
|
4773
4785
|
|
|
@@ -4954,8 +4966,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4954
4966
|
> = z.object({
|
|
4955
4967
|
_id: z.string(),
|
|
4956
4968
|
description: z.string(),
|
|
4957
|
-
created: z.string().default("2026-05-
|
|
4958
|
-
updated: z.string().default("2026-05-
|
|
4969
|
+
created: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4970
|
+
updated: z.string().default("2026-05-18T14:04:16.993Z"),
|
|
4959
4971
|
guardrail_config: z.nullable(
|
|
4960
4972
|
z.union([
|
|
4961
4973
|
z.lazy(() =>
|
|
@@ -4976,6 +4988,7 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4976
4988
|
categorical_labels: z.array(
|
|
4977
4989
|
z.lazy(() => CreateEvalLLMEvalsResponseCategoricalLabels$inboundSchema),
|
|
4978
4990
|
).optional(),
|
|
4991
|
+
dataset_id: z.string().optional(),
|
|
4979
4992
|
key: z.string(),
|
|
4980
4993
|
mode: z.literal("single"),
|
|
4981
4994
|
model: z.string(),
|
|
@@ -4984,6 +4997,7 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4984
4997
|
"_id": "id",
|
|
4985
4998
|
"guardrail_config": "guardrailConfig",
|
|
4986
4999
|
"categorical_labels": "categoricalLabels",
|
|
5000
|
+
"dataset_id": "datasetId",
|
|
4987
5001
|
});
|
|
4988
5002
|
});
|
|
4989
5003
|
|