@orq-ai/node 4.13.0-rc.4 → 4.13.0-rc.5
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/agenttoolinputcrud.d.ts +69 -3
- package/models/components/agenttoolinputcrud.d.ts.map +1 -1
- package/models/components/agenttoolinputcrud.js +42 -4
- package/models/components/agenttoolinputcrud.js.map +1 -1
- package/models/components/evaluatorresponsefunction.js +2 -2
- package/models/components/evaluatorresponsehttp.js +2 -2
- package/models/components/evaluatorresponsejsonschema.js +2 -2
- package/models/components/evaluatorresponsellm.js +2 -2
- package/models/components/evaluatorresponsepython.js +2 -2
- package/models/components/evaluatorresponseragas.js +2 -2
- package/models/components/evaluatorresponsetypescript.js +2 -2
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +5 -5
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +5 -5
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +4 -4
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +5 -5
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.d.ts +74 -20
- package/models/operations/runagent.d.ts.map +1 -1
- package/models/operations/runagent.js +48 -16
- package/models/operations/runagent.js.map +1 -1
- package/models/operations/streamrunagent.d.ts +74 -20
- package/models/operations/streamrunagent.d.ts.map +1 -1
- package/models/operations/streamrunagent.js +48 -16
- package/models/operations/streamrunagent.js.map +1 -1
- package/models/operations/updatedatapoint.js +5 -5
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +1 -1
- package/sdk/feedback.d.ts +6 -0
- package/sdk/feedback.d.ts.map +1 -1
- package/sdk/feedback.js +6 -0
- package/sdk/feedback.js.map +1 -1
- package/src/lib/config.ts +2 -2
- package/src/models/components/agenttoolinputcrud.ts +113 -7
- package/src/models/components/evaluatorresponsefunction.ts +2 -2
- package/src/models/components/evaluatorresponsehttp.ts +2 -2
- package/src/models/components/evaluatorresponsejsonschema.ts +2 -2
- package/src/models/components/evaluatorresponsellm.ts +2 -2
- package/src/models/components/evaluatorresponsepython.ts +2 -2
- package/src/models/components/evaluatorresponseragas.ts +2 -2
- package/src/models/components/evaluatorresponsetypescript.ts +2 -2
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +5 -5
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +5 -5
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +4 -4
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +5 -5
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +127 -33
- package/src/models/operations/streamrunagent.ts +139 -33
- package/src/models/operations/updatedatapoint.ts +5 -5
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
- package/src/sdk/feedback.ts +6 -0
|
@@ -28,8 +28,8 @@ export const EvaluatorResponseJsonSchema$inboundSchema: z.ZodType<
|
|
|
28
28
|
> = z.object({
|
|
29
29
|
_id: z.string(),
|
|
30
30
|
description: z.string(),
|
|
31
|
-
created: z.string().default("2026-07-
|
|
32
|
-
updated: z.string().default("2026-07-
|
|
31
|
+
created: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
32
|
+
updated: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
33
33
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
34
34
|
guardrail_config: z.any().optional(),
|
|
35
35
|
type: z.literal("json_schema"),
|
|
@@ -267,8 +267,8 @@ export const EvaluatorResponseLlm$inboundSchema: z.ZodType<
|
|
|
267
267
|
> = z.object({
|
|
268
268
|
_id: z.string(),
|
|
269
269
|
description: z.string(),
|
|
270
|
-
created: z.string().default("2026-07-
|
|
271
|
-
updated: z.string().default("2026-07-
|
|
270
|
+
created: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
271
|
+
updated: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
272
272
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
273
273
|
guardrail_config: z.any().optional(),
|
|
274
274
|
type: z.literal("llm_eval"),
|
|
@@ -28,8 +28,8 @@ export const EvaluatorResponsePython$inboundSchema: z.ZodType<
|
|
|
28
28
|
> = z.object({
|
|
29
29
|
_id: z.string(),
|
|
30
30
|
description: z.string(),
|
|
31
|
-
created: z.string().default("2026-07-
|
|
32
|
-
updated: z.string().default("2026-07-
|
|
31
|
+
created: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
32
|
+
updated: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
33
33
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
34
34
|
guardrail_config: z.any().optional(),
|
|
35
35
|
code: z.string(),
|
|
@@ -50,8 +50,8 @@ export const EvaluatorResponseRagas$inboundSchema: z.ZodType<
|
|
|
50
50
|
> = z.object({
|
|
51
51
|
_id: z.string(),
|
|
52
52
|
description: z.string(),
|
|
53
|
-
created: z.string().default("2026-07-
|
|
54
|
-
updated: z.string().default("2026-07-
|
|
53
|
+
created: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
54
|
+
updated: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
55
55
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
56
56
|
guardrail_config: z.any().optional(),
|
|
57
57
|
type: z.literal("ragas"),
|
|
@@ -28,8 +28,8 @@ export const EvaluatorResponseTypescript$inboundSchema: z.ZodType<
|
|
|
28
28
|
> = z.object({
|
|
29
29
|
_id: z.string(),
|
|
30
30
|
description: z.string(),
|
|
31
|
-
created: z.string().default("2026-07-
|
|
32
|
-
updated: z.string().default("2026-07-
|
|
31
|
+
created: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
32
|
+
updated: z.string().default("2026-07-25T22:03:09.281Z"),
|
|
33
33
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
34
34
|
guardrail_config: z.any().optional(),
|
|
35
35
|
code: z.string(),
|
|
@@ -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_01kydmwchahk59zgzt1xzmyksp"),
|
|
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-07-
|
|
141
|
+
"2026-07-25T22:03:03.348Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -2732,7 +2732,7 @@ export const Evaluations4$inboundSchema: z.ZodType<
|
|
|
2732
2732
|
explanation: z.string().optional(),
|
|
2733
2733
|
reviewed_by_id: z.string(),
|
|
2734
2734
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2735
|
-
"2026-07-
|
|
2735
|
+
"2026-07-25T22:03:41.798Z",
|
|
2736
2736
|
).transform(v => new Date(v)),
|
|
2737
2737
|
type: z.literal("string_array"),
|
|
2738
2738
|
values: z.array(z.string()),
|
|
@@ -2822,7 +2822,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2822
2822
|
explanation: z.string().optional(),
|
|
2823
2823
|
reviewed_by_id: z.string(),
|
|
2824
2824
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2825
|
-
"2026-07-
|
|
2825
|
+
"2026-07-25T22:03:41.796Z",
|
|
2826
2826
|
).transform(v => new Date(v)),
|
|
2827
2827
|
type: z.literal("boolean"),
|
|
2828
2828
|
value: z.boolean(),
|
|
@@ -2907,7 +2907,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2907
2907
|
explanation: z.string().optional(),
|
|
2908
2908
|
reviewed_by_id: z.string(),
|
|
2909
2909
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2910
|
-
"2026-07-
|
|
2910
|
+
"2026-07-25T22:03:41.794Z",
|
|
2911
2911
|
).transform(v => new Date(v)),
|
|
2912
2912
|
type: z.literal("number"),
|
|
2913
2913
|
value: z.number(),
|
|
@@ -2993,7 +2993,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2993
2993
|
explanation: z.string().optional(),
|
|
2994
2994
|
reviewed_by_id: z.string(),
|
|
2995
2995
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2996
|
-
"2026-07-
|
|
2996
|
+
"2026-07-25T22:03:41.793Z",
|
|
2997
2997
|
).transform(v => new Date(v)),
|
|
2998
2998
|
type: z.literal("string"),
|
|
2999
2999
|
value: z.string(),
|
|
@@ -3080,7 +3080,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
3080
3080
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
3081
3081
|
.optional(),
|
|
3082
3082
|
updated: z.string().datetime({ offset: true }).default(
|
|
3083
|
-
"2026-07-
|
|
3083
|
+
"2026-07-25T22:03:03.348Z",
|
|
3084
3084
|
).transform(v => new Date(v)),
|
|
3085
3085
|
}).transform((v) => {
|
|
3086
3086
|
return remap$(v, {
|
|
@@ -487,7 +487,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
487
487
|
z.ZodTypeDef,
|
|
488
488
|
unknown
|
|
489
489
|
> = z.object({
|
|
490
|
-
_id: z.string().default("
|
|
490
|
+
_id: z.string().default("01KYDMWD70517XDDMCJ9X5RPYP"),
|
|
491
491
|
display_name: z.string(),
|
|
492
492
|
description: z.nullable(z.string()).optional(),
|
|
493
493
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -1892,7 +1892,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1892
1892
|
z.ZodTypeDef,
|
|
1893
1893
|
unknown
|
|
1894
1894
|
> = z.object({
|
|
1895
|
-
_id: z.string().default("
|
|
1895
|
+
_id: z.string().default("tool_01KYDMWD0XAWJZ2VK8QWP3D4FT"),
|
|
1896
1896
|
path: z.string(),
|
|
1897
1897
|
key: z.string(),
|
|
1898
1898
|
display_name: z.string().optional(),
|
|
@@ -1989,7 +1989,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1989
1989
|
z.ZodTypeDef,
|
|
1990
1990
|
unknown
|
|
1991
1991
|
> = z.object({
|
|
1992
|
-
id: z.string().default("
|
|
1992
|
+
id: z.string().default("01KYDMWD0V6P0QJQRAKBE522T5"),
|
|
1993
1993
|
name: z.string(),
|
|
1994
1994
|
description: z.string().optional(),
|
|
1995
1995
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2045,7 +2045,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2045
2045
|
z.ZodTypeDef,
|
|
2046
2046
|
unknown
|
|
2047
2047
|
> = z.object({
|
|
2048
|
-
_id: z.string().default("
|
|
2048
|
+
_id: z.string().default("tool_01KYDMWD0TY6KGAG87QQ3513QS"),
|
|
2049
2049
|
path: z.string(),
|
|
2050
2050
|
key: z.string(),
|
|
2051
2051
|
display_name: z.string().optional(),
|
|
@@ -2232,7 +2232,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2232
2232
|
z.ZodTypeDef,
|
|
2233
2233
|
unknown
|
|
2234
2234
|
> = z.object({
|
|
2235
|
-
_id: z.string().default("
|
|
2235
|
+
_id: z.string().default("tool_01KYDMWD0PAZW0E3DWB142BJWT"),
|
|
2236
2236
|
path: z.string(),
|
|
2237
2237
|
key: z.string(),
|
|
2238
2238
|
display_name: z.string().optional(),
|
|
@@ -2325,7 +2325,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2325
2325
|
z.ZodTypeDef,
|
|
2326
2326
|
unknown
|
|
2327
2327
|
> = z.object({
|
|
2328
|
-
_id: z.string().default("
|
|
2328
|
+
_id: z.string().default("tool_01KYDMWD0MTS8S606S4A6RP762"),
|
|
2329
2329
|
path: z.string(),
|
|
2330
2330
|
key: z.string(),
|
|
2331
2331
|
display_name: z.string().optional(),
|
|
@@ -2426,7 +2426,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2426
2426
|
z.ZodTypeDef,
|
|
2427
2427
|
unknown
|
|
2428
2428
|
> = z.object({
|
|
2429
|
-
_id: z.string().default("
|
|
2429
|
+
_id: z.string().default("tool_01KYDMWD0H6KV41MWQ1WTQK5XA"),
|
|
2430
2430
|
path: z.string(),
|
|
2431
2431
|
key: z.string(),
|
|
2432
2432
|
display_name: z.string().optional(),
|
|
@@ -770,7 +770,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
770
770
|
z.ZodTypeDef,
|
|
771
771
|
unknown
|
|
772
772
|
> = z.object({
|
|
773
|
-
_id: z.string().default("
|
|
773
|
+
_id: z.string().default("tool_01KYDMWCZY2WMPM441GHNV1YA7"),
|
|
774
774
|
path: z.string(),
|
|
775
775
|
key: z.string(),
|
|
776
776
|
display_name: z.string().optional(),
|
|
@@ -867,7 +867,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
867
867
|
z.ZodTypeDef,
|
|
868
868
|
unknown
|
|
869
869
|
> = z.object({
|
|
870
|
-
id: z.string().default("
|
|
870
|
+
id: z.string().default("01KYDMWCZX6JZ7HYE1GSNDK0RV"),
|
|
871
871
|
name: z.string(),
|
|
872
872
|
description: z.string().optional(),
|
|
873
873
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -920,7 +920,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
920
920
|
z.ZodTypeDef,
|
|
921
921
|
unknown
|
|
922
922
|
> = z.object({
|
|
923
|
-
_id: z.string().default("
|
|
923
|
+
_id: z.string().default("tool_01KYDMWCZVY79YAF2J9V23NEC6"),
|
|
924
924
|
path: z.string(),
|
|
925
925
|
key: z.string(),
|
|
926
926
|
display_name: z.string().optional(),
|
|
@@ -1105,7 +1105,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1105
1105
|
z.ZodTypeDef,
|
|
1106
1106
|
unknown
|
|
1107
1107
|
> = z.object({
|
|
1108
|
-
_id: z.string().default("
|
|
1108
|
+
_id: z.string().default("tool_01KYDMWCZQDZHJPKVPC4MA13TH"),
|
|
1109
1109
|
path: z.string(),
|
|
1110
1110
|
key: z.string(),
|
|
1111
1111
|
display_name: z.string().optional(),
|
|
@@ -1198,7 +1198,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1198
1198
|
z.ZodTypeDef,
|
|
1199
1199
|
unknown
|
|
1200
1200
|
> = z.object({
|
|
1201
|
-
_id: z.string().default("
|
|
1201
|
+
_id: z.string().default("tool_01KYDMWCZN8GHVBNGXZSHMQSFD"),
|
|
1202
1202
|
path: z.string(),
|
|
1203
1203
|
key: z.string(),
|
|
1204
1204
|
display_name: z.string().optional(),
|
|
@@ -1296,7 +1296,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1296
1296
|
z.ZodTypeDef,
|
|
1297
1297
|
unknown
|
|
1298
1298
|
> = z.object({
|
|
1299
|
-
_id: z.string().default("
|
|
1299
|
+
_id: z.string().default("tool_01KYDMWCZKPWENDFYJ5KSQX45T"),
|
|
1300
1300
|
path: z.string(),
|
|
1301
1301
|
key: z.string(),
|
|
1302
1302
|
display_name: z.string().optional(),
|
|
@@ -140,7 +140,7 @@ export const GetV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
|
|
|
140
140
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
141
141
|
.optional(),
|
|
142
142
|
updated: z.string().datetime({ offset: true }).default(
|
|
143
|
-
"2026-07-
|
|
143
|
+
"2026-07-25T22:03:03.348Z",
|
|
144
144
|
).transform(v => new Date(v)),
|
|
145
145
|
filter_type: z.literal("name"),
|
|
146
146
|
filter_value: z.string(),
|
|
@@ -185,7 +185,7 @@ export const GetV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
|
|
|
185
185
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
186
186
|
.optional(),
|
|
187
187
|
updated: z.string().datetime({ offset: true }).default(
|
|
188
|
-
"2026-07-
|
|
188
|
+
"2026-07-25T22:03:03.348Z",
|
|
189
189
|
).transform(v => new Date(v)),
|
|
190
190
|
filter_type: z.literal("span_type"),
|
|
191
191
|
filter_values: z.array(z.string()),
|
|
@@ -141,7 +141,7 @@ export const GetV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
|
|
|
141
141
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
142
142
|
.optional(),
|
|
143
143
|
updated: z.string().datetime({ offset: true }).default(
|
|
144
|
-
"2026-07-
|
|
144
|
+
"2026-07-25T22:03:03.348Z",
|
|
145
145
|
).transform(v => new Date(v)),
|
|
146
146
|
filter_type: z.literal("name"),
|
|
147
147
|
filter_value: z.string(),
|
|
@@ -186,7 +186,7 @@ export const GetV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
|
|
|
186
186
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
187
187
|
.optional(),
|
|
188
188
|
updated: z.string().datetime({ offset: true }).default(
|
|
189
|
-
"2026-07-
|
|
189
|
+
"2026-07-25T22:03:03.348Z",
|
|
190
190
|
).transform(v => new Date(v)),
|
|
191
191
|
filter_type: z.literal("span_type"),
|
|
192
192
|
filter_values: z.array(z.string()),
|
|
@@ -1647,7 +1647,7 @@ export const ListDatasetDatapointsEvaluations4$inboundSchema: z.ZodType<
|
|
|
1647
1647
|
explanation: z.string().optional(),
|
|
1648
1648
|
reviewed_by_id: z.string(),
|
|
1649
1649
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1650
|
-
"2026-07-
|
|
1650
|
+
"2026-07-25T22:03:41.751Z",
|
|
1651
1651
|
).transform(v => new Date(v)),
|
|
1652
1652
|
type: z.literal("string_array"),
|
|
1653
1653
|
values: z.array(z.string()),
|
|
@@ -1743,7 +1743,7 @@ export const ListDatasetDatapointsEvaluations3$inboundSchema: z.ZodType<
|
|
|
1743
1743
|
explanation: z.string().optional(),
|
|
1744
1744
|
reviewed_by_id: z.string(),
|
|
1745
1745
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1746
|
-
"2026-07-
|
|
1746
|
+
"2026-07-25T22:03:41.750Z",
|
|
1747
1747
|
).transform(v => new Date(v)),
|
|
1748
1748
|
type: z.literal("boolean"),
|
|
1749
1749
|
value: z.boolean(),
|
|
@@ -1847,7 +1847,7 @@ export const ListDatasetDatapointsEvaluations2$inboundSchema: z.ZodType<
|
|
|
1847
1847
|
explanation: z.string().optional(),
|
|
1848
1848
|
reviewed_by_id: z.string(),
|
|
1849
1849
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1850
|
-
"2026-07-
|
|
1850
|
+
"2026-07-25T22:03:41.748Z",
|
|
1851
1851
|
).transform(v => new Date(v)),
|
|
1852
1852
|
type: z.literal("number"),
|
|
1853
1853
|
value: z.number(),
|
|
@@ -1953,7 +1953,7 @@ export const ListDatasetDatapointsEvaluations1$inboundSchema: z.ZodType<
|
|
|
1953
1953
|
explanation: z.string().optional(),
|
|
1954
1954
|
reviewed_by_id: z.string(),
|
|
1955
1955
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1956
|
-
"2026-07-
|
|
1956
|
+
"2026-07-25T22:03:41.746Z",
|
|
1957
1957
|
).transform(v => new Date(v)),
|
|
1958
1958
|
type: z.literal("string"),
|
|
1959
1959
|
value: z.string(),
|
|
@@ -2036,7 +2036,7 @@ export const ListDatasetDatapointsData$inboundSchema: z.ZodType<
|
|
|
2036
2036
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2037
2037
|
.optional(),
|
|
2038
2038
|
updated: z.string().datetime({ offset: true }).default(
|
|
2039
|
-
"2026-07-
|
|
2039
|
+
"2026-07-25T22:03:03.348Z",
|
|
2040
2040
|
).transform(v => new Date(v)),
|
|
2041
2041
|
}).transform((v) => {
|
|
2042
2042
|
return remap$(v, {
|
|
@@ -169,7 +169,7 @@ export const ListDatasetsData$inboundSchema: z.ZodType<
|
|
|
169
169
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
170
170
|
.optional(),
|
|
171
171
|
updated: z.string().datetime({ offset: true }).default(
|
|
172
|
-
"2026-07-
|
|
172
|
+
"2026-07-25T22:03:03.348Z",
|
|
173
173
|
).transform(v => new Date(v)),
|
|
174
174
|
}).transform((v) => {
|
|
175
175
|
return remap$(v, {
|
|
@@ -278,7 +278,7 @@ export const ListDatasourcesData$inboundSchema: z.ZodType<
|
|
|
278
278
|
z.ZodTypeDef,
|
|
279
279
|
unknown
|
|
280
280
|
> = z.object({
|
|
281
|
-
_id: z.string().default("
|
|
281
|
+
_id: z.string().default("01KYDMWD6TC07CBJHHRP29S6JP"),
|
|
282
282
|
display_name: z.string(),
|
|
283
283
|
description: z.nullable(z.string()).optional(),
|
|
284
284
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -318,7 +318,7 @@ export const PatchV2HumanEvalSetsIdResponseBody2$inboundSchema: z.ZodType<
|
|
|
318
318
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
319
319
|
.optional(),
|
|
320
320
|
updated: z.string().datetime({ offset: true }).default(
|
|
321
|
-
"2026-07-
|
|
321
|
+
"2026-07-25T22:03:03.348Z",
|
|
322
322
|
).transform(v => new Date(v)),
|
|
323
323
|
filter_type: z.literal("name"),
|
|
324
324
|
filter_value: z.string(),
|
|
@@ -364,7 +364,7 @@ export const PatchV2HumanEvalSetsIdResponseBody1$inboundSchema: z.ZodType<
|
|
|
364
364
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
365
365
|
.optional(),
|
|
366
366
|
updated: z.string().datetime({ offset: true }).default(
|
|
367
|
-
"2026-07-
|
|
367
|
+
"2026-07-25T22:03:03.348Z",
|
|
368
368
|
).transform(v => new Date(v)),
|
|
369
369
|
filter_type: z.literal("span_type"),
|
|
370
370
|
filter_values: z.array(z.string()),
|
|
@@ -245,7 +245,7 @@ export const RequestBody4$outboundSchema: z.ZodType<
|
|
|
245
245
|
PostV2FeedbackEvaluationRequestBodyFeedbackRequestSource$outboundSchema
|
|
246
246
|
.default("orq"),
|
|
247
247
|
explanation: z.string().optional(),
|
|
248
|
-
reviewedAt: z.date().default(() => new Date("2026-07-
|
|
248
|
+
reviewedAt: z.date().default(() => new Date("2026-07-25T22:03:41.984Z"))
|
|
249
249
|
.transform(v => v.toISOString()),
|
|
250
250
|
type: z.literal("string_array"),
|
|
251
251
|
values: z.array(z.string()),
|
|
@@ -299,7 +299,7 @@ export const RequestBody3$outboundSchema: z.ZodType<
|
|
|
299
299
|
source: PostV2FeedbackEvaluationRequestBodyFeedbackSource$outboundSchema
|
|
300
300
|
.default("orq"),
|
|
301
301
|
explanation: z.string().optional(),
|
|
302
|
-
reviewedAt: z.date().default(() => new Date("2026-07-
|
|
302
|
+
reviewedAt: z.date().default(() => new Date("2026-07-25T22:03:41.983Z"))
|
|
303
303
|
.transform(v => v.toISOString()),
|
|
304
304
|
type: z.literal("boolean"),
|
|
305
305
|
value: z.boolean(),
|
|
@@ -353,7 +353,7 @@ export const PostV2FeedbackEvaluationRequestBody2$outboundSchema: z.ZodType<
|
|
|
353
353
|
"orq",
|
|
354
354
|
),
|
|
355
355
|
explanation: z.string().optional(),
|
|
356
|
-
reviewedAt: z.date().default(() => new Date("2026-07-
|
|
356
|
+
reviewedAt: z.date().default(() => new Date("2026-07-25T22:03:41.982Z"))
|
|
357
357
|
.transform(v => v.toISOString()),
|
|
358
358
|
type: z.literal("number"),
|
|
359
359
|
value: z.number(),
|
|
@@ -411,7 +411,7 @@ export const PostV2FeedbackEvaluationRequestBody1$outboundSchema: z.ZodType<
|
|
|
411
411
|
humanReviewId: z.string().optional(),
|
|
412
412
|
source: RequestBodySource$outboundSchema.default("orq"),
|
|
413
413
|
explanation: z.string().optional(),
|
|
414
|
-
reviewedAt: z.date().default(() => new Date("2026-07-
|
|
414
|
+
reviewedAt: z.date().default(() => new Date("2026-07-25T22:03:41.981Z"))
|
|
415
415
|
.transform(v => v.toISOString()),
|
|
416
416
|
type: z.literal("string"),
|
|
417
417
|
value: z.string(),
|
|
@@ -271,7 +271,7 @@ export const PostV2HumanEvalSetsResponseBody2$inboundSchema: z.ZodType<
|
|
|
271
271
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
272
272
|
.optional(),
|
|
273
273
|
updated: z.string().datetime({ offset: true }).default(
|
|
274
|
-
"2026-07-
|
|
274
|
+
"2026-07-25T22:03:03.348Z",
|
|
275
275
|
).transform(v => new Date(v)),
|
|
276
276
|
filter_type: z.literal("name"),
|
|
277
277
|
filter_value: z.string(),
|
|
@@ -316,7 +316,7 @@ export const PostV2HumanEvalSetsResponseBody1$inboundSchema: z.ZodType<
|
|
|
316
316
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
317
317
|
.optional(),
|
|
318
318
|
updated: z.string().datetime({ offset: true }).default(
|
|
319
|
-
"2026-07-
|
|
319
|
+
"2026-07-25T22:03:03.348Z",
|
|
320
320
|
).transform(v => new Date(v)),
|
|
321
321
|
filter_type: z.literal("span_type"),
|
|
322
322
|
filter_values: z.array(z.string()),
|
|
@@ -1579,7 +1579,7 @@ export const RetrieveDatapointEvaluations4$inboundSchema: z.ZodType<
|
|
|
1579
1579
|
explanation: z.string().optional(),
|
|
1580
1580
|
reviewed_by_id: z.string(),
|
|
1581
1581
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1582
|
-
"2026-07-
|
|
1582
|
+
"2026-07-25T22:03:41.781Z",
|
|
1583
1583
|
).transform(v => new Date(v)),
|
|
1584
1584
|
type: z.literal("string_array"),
|
|
1585
1585
|
values: z.array(z.string()),
|
|
@@ -1679,7 +1679,7 @@ export const RetrieveDatapointEvaluations3$inboundSchema: z.ZodType<
|
|
|
1679
1679
|
explanation: z.string().optional(),
|
|
1680
1680
|
reviewed_by_id: z.string(),
|
|
1681
1681
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1682
|
-
"2026-07-
|
|
1682
|
+
"2026-07-25T22:03:41.780Z",
|
|
1683
1683
|
).transform(v => new Date(v)),
|
|
1684
1684
|
type: z.literal("boolean"),
|
|
1685
1685
|
value: z.boolean(),
|
|
@@ -1777,7 +1777,7 @@ export const RetrieveDatapointEvaluations2$inboundSchema: z.ZodType<
|
|
|
1777
1777
|
explanation: z.string().optional(),
|
|
1778
1778
|
reviewed_by_id: z.string(),
|
|
1779
1779
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1780
|
-
"2026-07-
|
|
1780
|
+
"2026-07-25T22:03:41.778Z",
|
|
1781
1781
|
).transform(v => new Date(v)),
|
|
1782
1782
|
type: z.literal("number"),
|
|
1783
1783
|
value: z.number(),
|
|
@@ -1865,7 +1865,7 @@ export const RetrieveDatapointEvaluations1$inboundSchema: z.ZodType<
|
|
|
1865
1865
|
explanation: z.string().optional(),
|
|
1866
1866
|
reviewed_by_id: z.string(),
|
|
1867
1867
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
1868
|
-
"2026-07-
|
|
1868
|
+
"2026-07-25T22:03:41.777Z",
|
|
1869
1869
|
).transform(v => new Date(v)),
|
|
1870
1870
|
type: z.literal("string"),
|
|
1871
1871
|
value: z.string(),
|
|
@@ -1946,7 +1946,7 @@ export const RetrieveDatapointResponseBody$inboundSchema: z.ZodType<
|
|
|
1946
1946
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
1947
1947
|
.optional(),
|
|
1948
1948
|
updated: z.string().datetime({ offset: true }).default(
|
|
1949
|
-
"2026-07-
|
|
1949
|
+
"2026-07-25T22:03:03.348Z",
|
|
1950
1950
|
).transform(v => new Date(v)),
|
|
1951
1951
|
}).transform((v) => {
|
|
1952
1952
|
return remap$(v, {
|
|
@@ -126,7 +126,7 @@ export const RetrieveDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
126
126
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
127
127
|
.optional(),
|
|
128
128
|
updated: z.string().datetime({ offset: true }).default(
|
|
129
|
-
"2026-07-
|
|
129
|
+
"2026-07-25T22:03:03.348Z",
|
|
130
130
|
).transform(v => new Date(v)),
|
|
131
131
|
}).transform((v) => {
|
|
132
132
|
return remap$(v, {
|
|
@@ -187,7 +187,7 @@ export const RetrieveDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
187
187
|
z.ZodTypeDef,
|
|
188
188
|
unknown
|
|
189
189
|
> = z.object({
|
|
190
|
-
_id: z.string().default("
|
|
190
|
+
_id: z.string().default("01KYDMWD6YMK4BGBF948G8NNZH"),
|
|
191
191
|
display_name: z.string(),
|
|
192
192
|
description: z.nullable(z.string()).optional(),
|
|
193
193
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -757,7 +757,7 @@ export const RetrieveToolResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
757
757
|
z.ZodTypeDef,
|
|
758
758
|
unknown
|
|
759
759
|
> = z.object({
|
|
760
|
-
_id: z.string().default("
|
|
760
|
+
_id: z.string().default("tool_01KYDMWD34FAQGFMT141B3H5MN"),
|
|
761
761
|
path: z.string(),
|
|
762
762
|
key: z.string(),
|
|
763
763
|
display_name: z.string().optional(),
|
|
@@ -863,7 +863,7 @@ export const RetrieveToolResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
863
863
|
z.ZodTypeDef,
|
|
864
864
|
unknown
|
|
865
865
|
> = z.object({
|
|
866
|
-
id: z.string().default("
|
|
866
|
+
id: z.string().default("01KYDMWD33P0HWWXS57R7HQ8FA"),
|
|
867
867
|
name: z.string(),
|
|
868
868
|
description: z.string().optional(),
|
|
869
869
|
schema: z.lazy(() => RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -921,7 +921,7 @@ export const RetrieveToolResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
921
921
|
z.ZodTypeDef,
|
|
922
922
|
unknown
|
|
923
923
|
> = z.object({
|
|
924
|
-
_id: z.string().default("
|
|
924
|
+
_id: z.string().default("tool_01KYDMWD32BNMHC7EBMDCF18MR"),
|
|
925
925
|
path: z.string(),
|
|
926
926
|
key: z.string(),
|
|
927
927
|
display_name: z.string().optional(),
|
|
@@ -1113,7 +1113,7 @@ export const RetrieveToolResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
1113
1113
|
z.ZodTypeDef,
|
|
1114
1114
|
unknown
|
|
1115
1115
|
> = z.object({
|
|
1116
|
-
_id: z.string().default("
|
|
1116
|
+
_id: z.string().default("tool_01KYDMWD2YTE03AVF5TAKMMZYZ"),
|
|
1117
1117
|
path: z.string(),
|
|
1118
1118
|
key: z.string(),
|
|
1119
1119
|
display_name: z.string().optional(),
|
|
@@ -1209,7 +1209,7 @@ export const RetrieveToolResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1209
1209
|
z.ZodTypeDef,
|
|
1210
1210
|
unknown
|
|
1211
1211
|
> = z.object({
|
|
1212
|
-
_id: z.string().default("
|
|
1212
|
+
_id: z.string().default("tool_01KYDMWD2W08TA5GF8R8BY3RA4"),
|
|
1213
1213
|
path: z.string(),
|
|
1214
1214
|
key: z.string(),
|
|
1215
1215
|
display_name: z.string().optional(),
|
|
@@ -1315,7 +1315,7 @@ export const RetrieveToolResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
1315
1315
|
z.ZodTypeDef,
|
|
1316
1316
|
unknown
|
|
1317
1317
|
> = z.object({
|
|
1318
|
-
_id: z.string().default("
|
|
1318
|
+
_id: z.string().default("tool_01KYDMWD2SJHMX394FXY6PZ1XX"),
|
|
1319
1319
|
path: z.string(),
|
|
1320
1320
|
key: z.string(),
|
|
1321
1321
|
display_name: z.string().optional(),
|