@orq-ai/node 4.11.0-rc.17 → 4.11.0-rc.19
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/funcs/knowledgeList.js +3 -0
- package/funcs/knowledgeList.js.map +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/modelmetadata.d.ts +4 -0
- package/models/components/modelmetadata.d.ts.map +1 -1
- package/models/components/modelmetadata.js +8 -0
- package/models/components/modelmetadata.js.map +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createchatcompletion.d.ts +4 -4
- package/models/operations/createchatcompletion.d.ts.map +1 -1
- package/models/operations/createchatcompletion.js +5 -5
- package/models/operations/createchatcompletion.js.map +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.d.ts +9 -3
- package/models/operations/createdatasetitem.d.ts.map +1 -1
- package/models/operations/createdatasetitem.js +14 -7
- package/models/operations/createdatasetitem.js.map +1 -1
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createknowledge.d.ts +11 -0
- package/models/operations/createknowledge.d.ts.map +1 -1
- package/models/operations/createknowledge.js +1 -0
- package/models/operations/createknowledge.js.map +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/invokeeval.d.ts +1 -0
- package/models/operations/invokeeval.d.ts.map +1 -1
- package/models/operations/invokeeval.js +2 -0
- package/models/operations/invokeeval.js.map +1 -1
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listknowledgebases.d.ts +28 -0
- package/models/operations/listknowledgebases.d.ts.map +1 -1
- package/models/operations/listknowledgebases.js +14 -1
- package/models/operations/listknowledgebases.js.map +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/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.d.ts +9 -3
- package/models/operations/updatedatapoint.d.ts.map +1 -1
- package/models/operations/updatedatapoint.js +14 -7
- package/models/operations/updatedatapoint.js.map +1 -1
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updatetool.js +7 -7
- package/package.json +5 -5
- package/sdk/feedback.d.ts +4 -1
- package/sdk/feedback.d.ts.map +1 -1
- package/sdk/feedback.js +4 -1
- package/sdk/feedback.js.map +1 -1
- package/src/funcs/knowledgeList.ts +3 -0
- package/src/lib/config.ts +3 -3
- package/src/models/components/modelmetadata.ts +12 -0
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createchatcompletion.ts +13 -7
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +25 -8
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createknowledge.ts +12 -0
- 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/invokeeval.ts +3 -0
- 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/listknowledgebases.ts +38 -0
- 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/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 +29 -8
- 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/updatetool.ts +7 -7
- package/src/sdk/feedback.ts +4 -1
package/sdk/feedback.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"feedback.js","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,kEAA4D;AAC5D,sFAAgF;AAChF,kEAA4D;AAC5D,sFAAgF;AAChF,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,QAAS,SAAQ,mBAAS;IACrC,KAAK,CAAC,gBAAgB,CACpB,OAA0E,EAC1E,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,gBAAgB,CACpB,OAAoE,EACpE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,MAAM,CACV,OAAgE,EAChE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED
|
|
1
|
+
{"version":3,"file":"feedback.js","sourceRoot":"","sources":["../src/sdk/feedback.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEH,kEAA4D;AAC5D,sFAAgF;AAChF,kEAA4D;AAC5D,sFAAgF;AAChF,4CAA2D;AAE3D,0CAA6C;AAE7C,MAAa,QAAS,SAAQ,mBAAS;IACrC,KAAK,CAAC,gBAAgB,CACpB,OAA0E,EAC1E,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,gBAAgB,CACpB,OAAoE,EACpE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,sDAAwB,EACzC,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED,KAAK,CAAC,MAAM,CACV,OAAgE,EAChE,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;IAED;;;;;OAKG;IACH,KAAK,CAAC,MAAM,CACV,OAA0D,EAC1D,OAAwB;QAExB,OAAO,IAAA,mBAAW,EAAC,IAAA,kCAAc,EAC/B,IAAI,EACJ,OAAO,EACP,OAAO,CACR,CAAC,CAAC;IACL,CAAC;CACF;AAlDD,4BAkDC"}
|
|
@@ -94,7 +94,10 @@ async function $do(
|
|
|
94
94
|
const query = encodeFormQuery({
|
|
95
95
|
"ending_before": payload?.ending_before,
|
|
96
96
|
"limit": payload?.limit,
|
|
97
|
+
"search": payload?.search,
|
|
97
98
|
"starting_after": payload?.starting_after,
|
|
99
|
+
"type": payload?.type,
|
|
100
|
+
"updated_by": payload?.updated_by,
|
|
98
101
|
});
|
|
99
102
|
|
|
100
103
|
const headers = new Headers(compactMap({
|
package/src/lib/config.ts
CHANGED
|
@@ -58,7 +58,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
58
58
|
export const SDK_METADATA = {
|
|
59
59
|
language: "typescript",
|
|
60
60
|
openapiDocVersion: "2.0",
|
|
61
|
-
sdkVersion: "4.11.0-rc.
|
|
62
|
-
genVersion: "2.
|
|
63
|
-
userAgent: "speakeasy-sdk/typescript 4.11.0-rc.
|
|
61
|
+
sdkVersion: "4.11.0-rc.19",
|
|
62
|
+
genVersion: "2.904.2",
|
|
63
|
+
userAgent: "speakeasy-sdk/typescript 4.11.0-rc.19 2.904.2 2.0 @orq-ai/node",
|
|
64
64
|
} as const;
|
|
@@ -85,6 +85,7 @@ export type ModelMetadata = {
|
|
|
85
85
|
supportsB64JsonResponseFormat?: boolean | undefined;
|
|
86
86
|
supportsBatchApi?: boolean | undefined;
|
|
87
87
|
supportsCacheControl?: boolean | undefined;
|
|
88
|
+
supportsCitations?: boolean | undefined;
|
|
88
89
|
supportsCodeExecution?: boolean | undefined;
|
|
89
90
|
supportsCommercialUse?: boolean | undefined;
|
|
90
91
|
supportsComputerUse?: boolean | undefined;
|
|
@@ -108,6 +109,7 @@ export type ModelMetadata = {
|
|
|
108
109
|
supportsReasoningEffortDefault?: boolean | undefined;
|
|
109
110
|
supportsReasoningEffortHigh?: boolean | undefined;
|
|
110
111
|
supportsReasoningEffortLow?: boolean | undefined;
|
|
112
|
+
supportsReasoningEffortMax?: boolean | undefined;
|
|
111
113
|
supportsReasoningEffortMedium?: boolean | undefined;
|
|
112
114
|
supportsReasoningEffortMinimal?: boolean | undefined;
|
|
113
115
|
supportsReasoningEffortNone?: boolean | undefined;
|
|
@@ -204,6 +206,7 @@ export const ModelMetadata$inboundSchema: z.ZodType<
|
|
|
204
206
|
supports_b64_json_response_format: z.boolean().optional(),
|
|
205
207
|
supports_batch_api: z.boolean().optional(),
|
|
206
208
|
supports_cache_control: z.boolean().optional(),
|
|
209
|
+
supports_citations: z.boolean().optional(),
|
|
207
210
|
supports_code_execution: z.boolean().optional(),
|
|
208
211
|
supports_commercial_use: z.boolean().optional(),
|
|
209
212
|
supports_computer_use: z.boolean().optional(),
|
|
@@ -227,6 +230,7 @@ export const ModelMetadata$inboundSchema: z.ZodType<
|
|
|
227
230
|
supports_reasoning_effort_default: z.boolean().optional(),
|
|
228
231
|
supports_reasoning_effort_high: z.boolean().optional(),
|
|
229
232
|
supports_reasoning_effort_low: z.boolean().optional(),
|
|
233
|
+
supports_reasoning_effort_max: z.boolean().optional(),
|
|
230
234
|
supports_reasoning_effort_medium: z.boolean().optional(),
|
|
231
235
|
supports_reasoning_effort_minimal: z.boolean().optional(),
|
|
232
236
|
supports_reasoning_effort_none: z.boolean().optional(),
|
|
@@ -316,6 +320,7 @@ export const ModelMetadata$inboundSchema: z.ZodType<
|
|
|
316
320
|
"supports_b64_json_response_format": "supportsB64JsonResponseFormat",
|
|
317
321
|
"supports_batch_api": "supportsBatchApi",
|
|
318
322
|
"supports_cache_control": "supportsCacheControl",
|
|
323
|
+
"supports_citations": "supportsCitations",
|
|
319
324
|
"supports_code_execution": "supportsCodeExecution",
|
|
320
325
|
"supports_commercial_use": "supportsCommercialUse",
|
|
321
326
|
"supports_computer_use": "supportsComputerUse",
|
|
@@ -339,6 +344,7 @@ export const ModelMetadata$inboundSchema: z.ZodType<
|
|
|
339
344
|
"supports_reasoning_effort_default": "supportsReasoningEffortDefault",
|
|
340
345
|
"supports_reasoning_effort_high": "supportsReasoningEffortHigh",
|
|
341
346
|
"supports_reasoning_effort_low": "supportsReasoningEffortLow",
|
|
347
|
+
"supports_reasoning_effort_max": "supportsReasoningEffortMax",
|
|
342
348
|
"supports_reasoning_effort_medium": "supportsReasoningEffortMedium",
|
|
343
349
|
"supports_reasoning_effort_minimal": "supportsReasoningEffortMinimal",
|
|
344
350
|
"supports_reasoning_effort_none": "supportsReasoningEffortNone",
|
|
@@ -431,6 +437,7 @@ export type ModelMetadata$Outbound = {
|
|
|
431
437
|
supports_b64_json_response_format?: boolean | undefined;
|
|
432
438
|
supports_batch_api?: boolean | undefined;
|
|
433
439
|
supports_cache_control?: boolean | undefined;
|
|
440
|
+
supports_citations?: boolean | undefined;
|
|
434
441
|
supports_code_execution?: boolean | undefined;
|
|
435
442
|
supports_commercial_use?: boolean | undefined;
|
|
436
443
|
supports_computer_use?: boolean | undefined;
|
|
@@ -454,6 +461,7 @@ export type ModelMetadata$Outbound = {
|
|
|
454
461
|
supports_reasoning_effort_default?: boolean | undefined;
|
|
455
462
|
supports_reasoning_effort_high?: boolean | undefined;
|
|
456
463
|
supports_reasoning_effort_low?: boolean | undefined;
|
|
464
|
+
supports_reasoning_effort_max?: boolean | undefined;
|
|
457
465
|
supports_reasoning_effort_medium?: boolean | undefined;
|
|
458
466
|
supports_reasoning_effort_minimal?: boolean | undefined;
|
|
459
467
|
supports_reasoning_effort_none?: boolean | undefined;
|
|
@@ -550,6 +558,7 @@ export const ModelMetadata$outboundSchema: z.ZodType<
|
|
|
550
558
|
supportsB64JsonResponseFormat: z.boolean().optional(),
|
|
551
559
|
supportsBatchApi: z.boolean().optional(),
|
|
552
560
|
supportsCacheControl: z.boolean().optional(),
|
|
561
|
+
supportsCitations: z.boolean().optional(),
|
|
553
562
|
supportsCodeExecution: z.boolean().optional(),
|
|
554
563
|
supportsCommercialUse: z.boolean().optional(),
|
|
555
564
|
supportsComputerUse: z.boolean().optional(),
|
|
@@ -573,6 +582,7 @@ export const ModelMetadata$outboundSchema: z.ZodType<
|
|
|
573
582
|
supportsReasoningEffortDefault: z.boolean().optional(),
|
|
574
583
|
supportsReasoningEffortHigh: z.boolean().optional(),
|
|
575
584
|
supportsReasoningEffortLow: z.boolean().optional(),
|
|
585
|
+
supportsReasoningEffortMax: z.boolean().optional(),
|
|
576
586
|
supportsReasoningEffortMedium: z.boolean().optional(),
|
|
577
587
|
supportsReasoningEffortMinimal: z.boolean().optional(),
|
|
578
588
|
supportsReasoningEffortNone: z.boolean().optional(),
|
|
@@ -662,6 +672,7 @@ export const ModelMetadata$outboundSchema: z.ZodType<
|
|
|
662
672
|
supportsB64JsonResponseFormat: "supports_b64_json_response_format",
|
|
663
673
|
supportsBatchApi: "supports_batch_api",
|
|
664
674
|
supportsCacheControl: "supports_cache_control",
|
|
675
|
+
supportsCitations: "supports_citations",
|
|
665
676
|
supportsCodeExecution: "supports_code_execution",
|
|
666
677
|
supportsCommercialUse: "supports_commercial_use",
|
|
667
678
|
supportsComputerUse: "supports_computer_use",
|
|
@@ -685,6 +696,7 @@ export const ModelMetadata$outboundSchema: z.ZodType<
|
|
|
685
696
|
supportsReasoningEffortDefault: "supports_reasoning_effort_default",
|
|
686
697
|
supportsReasoningEffortHigh: "supports_reasoning_effort_high",
|
|
687
698
|
supportsReasoningEffortLow: "supports_reasoning_effort_low",
|
|
699
|
+
supportsReasoningEffortMax: "supports_reasoning_effort_max",
|
|
688
700
|
supportsReasoningEffortMedium: "supports_reasoning_effort_medium",
|
|
689
701
|
supportsReasoningEffortMinimal: "supports_reasoning_effort_minimal",
|
|
690
702
|
supportsReasoningEffortNone: "supports_reasoning_effort_none",
|
|
@@ -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_01kv4v0c448k5mrbp27hs85889"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -886,7 +886,7 @@ export type Inputs2 = {
|
|
|
886
886
|
*
|
|
887
887
|
* @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
888
888
|
*/
|
|
889
|
-
export type
|
|
889
|
+
export type CreateChatCompletionInputs = { [k: string]: any } | Array<Inputs2>;
|
|
890
890
|
|
|
891
891
|
export const CreateChatCompletionRouterChatCompletionsRequestRequestBodyOrqType =
|
|
892
892
|
{
|
|
@@ -3786,17 +3786,23 @@ export function inputs2ToJSON(inputs2: Inputs2): string {
|
|
|
3786
3786
|
}
|
|
3787
3787
|
|
|
3788
3788
|
/** @internal */
|
|
3789
|
-
export type
|
|
3789
|
+
export type CreateChatCompletionInputs$Outbound =
|
|
3790
|
+
| { [k: string]: any }
|
|
3791
|
+
| Array<Inputs2$Outbound>;
|
|
3790
3792
|
|
|
3791
3793
|
/** @internal */
|
|
3792
|
-
export const
|
|
3793
|
-
|
|
3794
|
+
export const CreateChatCompletionInputs$outboundSchema: z.ZodType<
|
|
3795
|
+
CreateChatCompletionInputs$Outbound,
|
|
3794
3796
|
z.ZodTypeDef,
|
|
3795
|
-
|
|
3797
|
+
CreateChatCompletionInputs
|
|
3796
3798
|
> = z.union([z.record(z.any()), z.array(z.lazy(() => Inputs2$outboundSchema))]);
|
|
3797
3799
|
|
|
3798
|
-
export function
|
|
3799
|
-
|
|
3800
|
+
export function createChatCompletionInputsToJSON(
|
|
3801
|
+
createChatCompletionInputs: CreateChatCompletionInputs,
|
|
3802
|
+
): string {
|
|
3803
|
+
return JSON.stringify(
|
|
3804
|
+
CreateChatCompletionInputs$outboundSchema.parse(createChatCompletionInputs),
|
|
3805
|
+
);
|
|
3800
3806
|
}
|
|
3801
3807
|
|
|
3802
3808
|
/** @internal */
|
|
@@ -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-06-
|
|
141
|
+
"2026-06-15T05:10:09.577Z",
|
|
142
142
|
).transform(v => new Date(v)),
|
|
143
143
|
}).transform((v) => {
|
|
144
144
|
return remap$(v, {
|
|
@@ -10,6 +10,8 @@ import { Result as SafeParseResult } from "../../types/fp.js";
|
|
|
10
10
|
import * as components from "../components/index.js";
|
|
11
11
|
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
12
12
|
|
|
13
|
+
export type Inputs = string | number | boolean;
|
|
14
|
+
|
|
13
15
|
export type CreateDatasetItemContentDatasetsRequest2 =
|
|
14
16
|
components.TextContentPartSchema;
|
|
15
17
|
|
|
@@ -364,9 +366,9 @@ export type CreateDatasetItemMessages =
|
|
|
364
366
|
|
|
365
367
|
export type CreateDatasetItemRequestBody = {
|
|
366
368
|
/**
|
|
367
|
-
* The inputs of the dataset. Key value pairs where the key is the input name and the value is the input value. Nested objects are not supported.
|
|
369
|
+
* The inputs of the dataset. Key value pairs where the key is the input name and the value is the input value. Nested objects and arrays are not supported.
|
|
368
370
|
*/
|
|
369
|
-
inputs?: { [k: string]:
|
|
371
|
+
inputs?: { [k: string]: string | number | boolean | null } | undefined;
|
|
370
372
|
/**
|
|
371
373
|
* A list of messages comprising the conversation so far
|
|
372
374
|
*/
|
|
@@ -941,6 +943,20 @@ export type CreateDatasetItemResponseBody = {
|
|
|
941
943
|
updated: Date;
|
|
942
944
|
};
|
|
943
945
|
|
|
946
|
+
/** @internal */
|
|
947
|
+
export type Inputs$Outbound = string | number | boolean;
|
|
948
|
+
|
|
949
|
+
/** @internal */
|
|
950
|
+
export const Inputs$outboundSchema: z.ZodType<
|
|
951
|
+
Inputs$Outbound,
|
|
952
|
+
z.ZodTypeDef,
|
|
953
|
+
Inputs
|
|
954
|
+
> = z.union([z.string(), z.number(), z.boolean()]);
|
|
955
|
+
|
|
956
|
+
export function inputsToJSON(inputs: Inputs): string {
|
|
957
|
+
return JSON.stringify(Inputs$outboundSchema.parse(inputs));
|
|
958
|
+
}
|
|
959
|
+
|
|
944
960
|
/** @internal */
|
|
945
961
|
export type CreateDatasetItemContentDatasetsRequest2$Outbound =
|
|
946
962
|
components.TextContentPartSchema$Outbound;
|
|
@@ -1624,7 +1640,7 @@ export function createDatasetItemMessagesToJSON(
|
|
|
1624
1640
|
|
|
1625
1641
|
/** @internal */
|
|
1626
1642
|
export type CreateDatasetItemRequestBody$Outbound = {
|
|
1627
|
-
inputs?: { [k: string]:
|
|
1643
|
+
inputs?: { [k: string]: string | number | boolean | null } | undefined;
|
|
1628
1644
|
messages?:
|
|
1629
1645
|
| Array<
|
|
1630
1646
|
| CreateDatasetItemMessagesSystemMessage$Outbound
|
|
@@ -1643,7 +1659,8 @@ export const CreateDatasetItemRequestBody$outboundSchema: z.ZodType<
|
|
|
1643
1659
|
z.ZodTypeDef,
|
|
1644
1660
|
CreateDatasetItemRequestBody
|
|
1645
1661
|
> = z.object({
|
|
1646
|
-
inputs: z.record(z.
|
|
1662
|
+
inputs: z.record(z.nullable(z.union([z.string(), z.number(), z.boolean()])))
|
|
1663
|
+
.optional(),
|
|
1647
1664
|
messages: z.array(
|
|
1648
1665
|
z.union([
|
|
1649
1666
|
z.lazy(() => CreateDatasetItemMessagesSystemMessage$outboundSchema),
|
|
@@ -2355,7 +2372,7 @@ export const Evaluations3$inboundSchema: z.ZodType<
|
|
|
2355
2372
|
),
|
|
2356
2373
|
reviewed_by_id: z.string(),
|
|
2357
2374
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2358
|
-
"2026-06-
|
|
2375
|
+
"2026-06-15T05:10:28.298Z",
|
|
2359
2376
|
).transform(v => new Date(v)),
|
|
2360
2377
|
type: z.literal("string_array"),
|
|
2361
2378
|
values: z.array(z.string()),
|
|
@@ -2400,7 +2417,7 @@ export const Evaluations2$inboundSchema: z.ZodType<
|
|
|
2400
2417
|
source: CreateDatasetItemEvaluationsSource$inboundSchema.default("orq"),
|
|
2401
2418
|
reviewed_by_id: z.string(),
|
|
2402
2419
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2403
|
-
"2026-06-
|
|
2420
|
+
"2026-06-15T05:10:28.298Z",
|
|
2404
2421
|
).transform(v => new Date(v)),
|
|
2405
2422
|
type: z.literal("number"),
|
|
2406
2423
|
value: z.number(),
|
|
@@ -2446,7 +2463,7 @@ export const Evaluations1$inboundSchema: z.ZodType<
|
|
|
2446
2463
|
source: EvaluationsSource$inboundSchema.default("orq"),
|
|
2447
2464
|
reviewed_by_id: z.string(),
|
|
2448
2465
|
reviewed_at: z.string().datetime({ offset: true }).default(
|
|
2449
|
-
"2026-06-
|
|
2466
|
+
"2026-06-15T05:10:28.297Z",
|
|
2450
2467
|
).transform(v => new Date(v)),
|
|
2451
2468
|
type: z.literal("string"),
|
|
2452
2469
|
value: z.string(),
|
|
@@ -2529,7 +2546,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
2529
2546
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
2530
2547
|
.optional(),
|
|
2531
2548
|
updated: z.string().datetime({ offset: true }).default(
|
|
2532
|
-
"2026-06-
|
|
2549
|
+
"2026-06-15T05:10:09.577Z",
|
|
2533
2550
|
).transform(v => new Date(v)),
|
|
2534
2551
|
}).transform((v) => {
|
|
2535
2552
|
return remap$(v, {
|
|
@@ -409,7 +409,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
409
409
|
z.ZodTypeDef,
|
|
410
410
|
unknown
|
|
411
411
|
> = z.object({
|
|
412
|
-
_id: z.string().default("
|
|
412
|
+
_id: z.string().default("01KV4V0CK5S4BFN78N2VT3AMM1"),
|
|
413
413
|
display_name: z.string(),
|
|
414
414
|
description: z.nullable(z.string()).optional(),
|
|
415
415
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -2193,8 +2193,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
2193
2193
|
> = z.object({
|
|
2194
2194
|
_id: z.string(),
|
|
2195
2195
|
description: z.string(),
|
|
2196
|
-
created: z.string().default("2026-06-
|
|
2197
|
-
updated: z.string().default("2026-06-
|
|
2196
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
2197
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
2198
2198
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2199
2199
|
guardrail_config: z.nullable(
|
|
2200
2200
|
z.union([
|
|
@@ -2384,8 +2384,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
2384
2384
|
.object({
|
|
2385
2385
|
_id: z.string(),
|
|
2386
2386
|
description: z.string(),
|
|
2387
|
-
created: z.string().default("2026-06-
|
|
2388
|
-
updated: z.string().default("2026-06-
|
|
2387
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
2388
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
2389
2389
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2390
2390
|
guardrail_config: z.nullable(
|
|
2391
2391
|
z.union([
|
|
@@ -3210,8 +3210,8 @@ export const CreateEvalResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
3210
3210
|
> = z.object({
|
|
3211
3211
|
_id: z.string(),
|
|
3212
3212
|
description: z.string(),
|
|
3213
|
-
created: z.string().default("2026-06-
|
|
3214
|
-
updated: z.string().default("2026-06-
|
|
3213
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
3214
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
3215
3215
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3216
3216
|
guardrail_config: z.nullable(
|
|
3217
3217
|
z.union([
|
|
@@ -3430,8 +3430,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
3430
3430
|
> = z.object({
|
|
3431
3431
|
_id: z.string(),
|
|
3432
3432
|
description: z.string(),
|
|
3433
|
-
created: z.string().default("2026-06-
|
|
3434
|
-
updated: z.string().default("2026-06-
|
|
3433
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
3434
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
3435
3435
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3436
3436
|
guardrail_config: z.nullable(
|
|
3437
3437
|
z.union([
|
|
@@ -3612,8 +3612,8 @@ export const CreateEvalResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
3612
3612
|
> = z.object({
|
|
3613
3613
|
_id: z.string(),
|
|
3614
3614
|
description: z.string(),
|
|
3615
|
-
created: z.string().default("2026-06-
|
|
3616
|
-
updated: z.string().default("2026-06-
|
|
3615
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
3616
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
3617
3617
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3618
3618
|
guardrail_config: z.nullable(
|
|
3619
3619
|
z.union([
|
|
@@ -3772,8 +3772,8 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
|
|
|
3772
3772
|
.object({
|
|
3773
3773
|
_id: z.string(),
|
|
3774
3774
|
description: z.string(),
|
|
3775
|
-
created: z.string().default("2026-06-
|
|
3776
|
-
updated: z.string().default("2026-06-
|
|
3775
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
3776
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
3777
3777
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3778
3778
|
guardrail_config: z.nullable(
|
|
3779
3779
|
z.union([
|
|
@@ -4143,8 +4143,8 @@ export const CreateEvalLlm2$inboundSchema: z.ZodType<
|
|
|
4143
4143
|
> = z.object({
|
|
4144
4144
|
_id: z.string(),
|
|
4145
4145
|
description: z.string(),
|
|
4146
|
-
created: z.string().default("2026-06-
|
|
4147
|
-
updated: z.string().default("2026-06-
|
|
4146
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
4147
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
4148
4148
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
4149
4149
|
guardrail_config: z.nullable(
|
|
4150
4150
|
z.union([
|
|
@@ -4363,8 +4363,8 @@ export const CreateEvalLlm1$inboundSchema: z.ZodType<
|
|
|
4363
4363
|
> = z.object({
|
|
4364
4364
|
_id: z.string(),
|
|
4365
4365
|
description: z.string(),
|
|
4366
|
-
created: z.string().default("2026-06-
|
|
4367
|
-
updated: z.string().default("2026-06-
|
|
4366
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
4367
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
4368
4368
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
4369
4369
|
guardrail_config: z.nullable(
|
|
4370
4370
|
z.union([
|
|
@@ -36,6 +36,16 @@ export type RequestBody2 = {
|
|
|
36
36
|
key: string;
|
|
37
37
|
description?: string | undefined;
|
|
38
38
|
externalConfig: ExternalConfig;
|
|
39
|
+
/**
|
|
40
|
+
* Entity storage path.
|
|
41
|
+
*
|
|
42
|
+
* @remarks
|
|
43
|
+
*
|
|
44
|
+
* With workspace-level API keys, use the format `project/folder/subfolder/...`. The first element identifies the project, followed by nested folders (auto-created as needed). Example: `Default/agents`.
|
|
45
|
+
*
|
|
46
|
+
* With project-level API keys, the project is predetermined by the API key, so the path is relative to that project. Example: `agents`. For backward compatibility, a leading project name is ignored when it matches the scoped project.
|
|
47
|
+
*/
|
|
48
|
+
path: string;
|
|
39
49
|
};
|
|
40
50
|
|
|
41
51
|
export const CreateKnowledgeRequestBodyType = {
|
|
@@ -424,6 +434,7 @@ export type RequestBody2$Outbound = {
|
|
|
424
434
|
key: string;
|
|
425
435
|
description?: string | undefined;
|
|
426
436
|
external_config: ExternalConfig$Outbound;
|
|
437
|
+
path: string;
|
|
427
438
|
};
|
|
428
439
|
|
|
429
440
|
/** @internal */
|
|
@@ -438,6 +449,7 @@ export const RequestBody2$outboundSchema: z.ZodType<
|
|
|
438
449
|
key: z.string(),
|
|
439
450
|
description: z.string().optional(),
|
|
440
451
|
externalConfig: z.lazy(() => ExternalConfig$outboundSchema),
|
|
452
|
+
path: z.string(),
|
|
441
453
|
}).transform((v) => {
|
|
442
454
|
return remap$(v, {
|
|
443
455
|
externalConfig: "external_config",
|
|
@@ -1898,7 +1898,7 @@ export const ResponseBodyCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
1898
1898
|
z.ZodTypeDef,
|
|
1899
1899
|
unknown
|
|
1900
1900
|
> = z.object({
|
|
1901
|
-
_id: z.string().default("
|
|
1901
|
+
_id: z.string().default("tool_01KV4V0CF3RZ000JRSF3MPTRX5"),
|
|
1902
1902
|
path: z.string(),
|
|
1903
1903
|
key: z.string(),
|
|
1904
1904
|
display_name: z.string().optional(),
|
|
@@ -1995,7 +1995,7 @@ export const ResponseBodyTools$inboundSchema: z.ZodType<
|
|
|
1995
1995
|
z.ZodTypeDef,
|
|
1996
1996
|
unknown
|
|
1997
1997
|
> = z.object({
|
|
1998
|
-
id: z.string().default("
|
|
1998
|
+
id: z.string().default("01KV4V0CEM0PAEYZQAF2KWECXK"),
|
|
1999
1999
|
name: z.string(),
|
|
2000
2000
|
description: z.string().optional(),
|
|
2001
2001
|
schema: z.lazy(() => CreateToolResponseBodySchema$inboundSchema),
|
|
@@ -2051,7 +2051,7 @@ export const ResponseBodyMCPTool$inboundSchema: z.ZodType<
|
|
|
2051
2051
|
z.ZodTypeDef,
|
|
2052
2052
|
unknown
|
|
2053
2053
|
> = z.object({
|
|
2054
|
-
_id: z.string().default("
|
|
2054
|
+
_id: z.string().default("tool_01KV4V0CEKK0HRX7E1VB7PX5CR"),
|
|
2055
2055
|
path: z.string(),
|
|
2056
2056
|
key: z.string(),
|
|
2057
2057
|
display_name: z.string().optional(),
|
|
@@ -2237,7 +2237,7 @@ export const ResponseBodyHTTPTool$inboundSchema: z.ZodType<
|
|
|
2237
2237
|
z.ZodTypeDef,
|
|
2238
2238
|
unknown
|
|
2239
2239
|
> = z.object({
|
|
2240
|
-
_id: z.string().default("
|
|
2240
|
+
_id: z.string().default("tool_01KV4V0CEHMM0QR3H9VV94X9XY"),
|
|
2241
2241
|
path: z.string(),
|
|
2242
2242
|
key: z.string(),
|
|
2243
2243
|
display_name: z.string().optional(),
|
|
@@ -2330,7 +2330,7 @@ export const ResponseBodyJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
2330
2330
|
z.ZodTypeDef,
|
|
2331
2331
|
unknown
|
|
2332
2332
|
> = z.object({
|
|
2333
|
-
_id: z.string().default("
|
|
2333
|
+
_id: z.string().default("tool_01KV4V0CEF47ZC0RTS414F31WB"),
|
|
2334
2334
|
path: z.string(),
|
|
2335
2335
|
key: z.string(),
|
|
2336
2336
|
display_name: z.string().optional(),
|
|
@@ -2431,7 +2431,7 @@ export const ResponseBodyFunctionTool$inboundSchema: z.ZodType<
|
|
|
2431
2431
|
z.ZodTypeDef,
|
|
2432
2432
|
unknown
|
|
2433
2433
|
> = z.object({
|
|
2434
|
-
_id: z.string().default("
|
|
2434
|
+
_id: z.string().default("tool_01KV4V0CED1WGGPQDF8WCK6GNV"),
|
|
2435
2435
|
path: z.string(),
|
|
2436
2436
|
key: z.string(),
|
|
2437
2437
|
display_name: z.string().optional(),
|
|
@@ -767,7 +767,7 @@ export const DataCodeExecutionTool$inboundSchema: z.ZodType<
|
|
|
767
767
|
z.ZodTypeDef,
|
|
768
768
|
unknown
|
|
769
769
|
> = z.object({
|
|
770
|
-
_id: z.string().default("
|
|
770
|
+
_id: z.string().default("tool_01KV4V0CE1KXD8DT8MQE8DKB4Z"),
|
|
771
771
|
path: z.string(),
|
|
772
772
|
key: z.string(),
|
|
773
773
|
display_name: z.string().optional(),
|
|
@@ -864,7 +864,7 @@ export const DataTools$inboundSchema: z.ZodType<
|
|
|
864
864
|
z.ZodTypeDef,
|
|
865
865
|
unknown
|
|
866
866
|
> = z.object({
|
|
867
|
-
id: z.string().default("
|
|
867
|
+
id: z.string().default("01KV4V0CE044VADS9GW2D3G2Q4"),
|
|
868
868
|
name: z.string(),
|
|
869
869
|
description: z.string().optional(),
|
|
870
870
|
schema: z.lazy(() => GetAllToolsDataSchema$inboundSchema),
|
|
@@ -917,7 +917,7 @@ export const DataMCPTool$inboundSchema: z.ZodType<
|
|
|
917
917
|
z.ZodTypeDef,
|
|
918
918
|
unknown
|
|
919
919
|
> = z.object({
|
|
920
|
-
_id: z.string().default("
|
|
920
|
+
_id: z.string().default("tool_01KV4V0CDY4TYM7JKWK0Z1A1HC"),
|
|
921
921
|
path: z.string(),
|
|
922
922
|
key: z.string(),
|
|
923
923
|
display_name: z.string().optional(),
|
|
@@ -1102,7 +1102,7 @@ export const DataHTTPTool$inboundSchema: z.ZodType<
|
|
|
1102
1102
|
z.ZodTypeDef,
|
|
1103
1103
|
unknown
|
|
1104
1104
|
> = z.object({
|
|
1105
|
-
_id: z.string().default("
|
|
1105
|
+
_id: z.string().default("tool_01KV4V0CDWKGC3SYEC43Q5GKAK"),
|
|
1106
1106
|
path: z.string(),
|
|
1107
1107
|
key: z.string(),
|
|
1108
1108
|
display_name: z.string().optional(),
|
|
@@ -1195,7 +1195,7 @@ export const DataJSONSchemaTool$inboundSchema: z.ZodType<
|
|
|
1195
1195
|
z.ZodTypeDef,
|
|
1196
1196
|
unknown
|
|
1197
1197
|
> = z.object({
|
|
1198
|
-
_id: z.string().default("
|
|
1198
|
+
_id: z.string().default("tool_01KV4V0CDT674X7XCQTSKFTY7H"),
|
|
1199
1199
|
path: z.string(),
|
|
1200
1200
|
key: z.string(),
|
|
1201
1201
|
display_name: z.string().optional(),
|
|
@@ -1297,7 +1297,7 @@ export const DataFunctionTool$inboundSchema: z.ZodType<
|
|
|
1297
1297
|
z.ZodTypeDef,
|
|
1298
1298
|
unknown
|
|
1299
1299
|
> = z.object({
|
|
1300
|
-
_id: z.string().default("
|
|
1300
|
+
_id: z.string().default("tool_01KV4V0CDSGQ5WBRFQT8ZH0FNP"),
|
|
1301
1301
|
path: z.string(),
|
|
1302
1302
|
key: z.string(),
|
|
1303
1303
|
display_name: z.string().optional(),
|
|
@@ -1070,8 +1070,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1070
1070
|
> = z.object({
|
|
1071
1071
|
_id: z.string(),
|
|
1072
1072
|
description: z.string(),
|
|
1073
|
-
created: z.string().default("2026-06-
|
|
1074
|
-
updated: z.string().default("2026-06-
|
|
1073
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
1074
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
1075
1075
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1076
1076
|
guardrail_config: z.nullable(
|
|
1077
1077
|
z.union([
|
|
@@ -1252,8 +1252,8 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
1252
1252
|
> = z.object({
|
|
1253
1253
|
_id: z.string(),
|
|
1254
1254
|
description: z.string(),
|
|
1255
|
-
created: z.string().default("2026-06-
|
|
1256
|
-
updated: z.string().default("2026-06-
|
|
1255
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
1256
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
1257
1257
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
1258
1258
|
guardrail_config: z.nullable(
|
|
1259
1259
|
z.union([
|
|
@@ -2084,8 +2084,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
2084
2084
|
> = z.object({
|
|
2085
2085
|
_id: z.string(),
|
|
2086
2086
|
description: z.string(),
|
|
2087
|
-
created: z.string().default("2026-06-
|
|
2088
|
-
updated: z.string().default("2026-06-
|
|
2087
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
2088
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
2089
2089
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2090
2090
|
guardrail_config: z.nullable(
|
|
2091
2091
|
z.union([
|
|
@@ -2268,8 +2268,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
2268
2268
|
> = z.object({
|
|
2269
2269
|
_id: z.string(),
|
|
2270
2270
|
description: z.string(),
|
|
2271
|
-
created: z.string().default("2026-06-
|
|
2272
|
-
updated: z.string().default("2026-06-
|
|
2271
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
2272
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
2273
2273
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2274
2274
|
guardrail_config: z.nullable(
|
|
2275
2275
|
z.union([
|
|
@@ -2448,8 +2448,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
2448
2448
|
> = z.object({
|
|
2449
2449
|
_id: z.string(),
|
|
2450
2450
|
description: z.string(),
|
|
2451
|
-
created: z.string().default("2026-06-
|
|
2452
|
-
updated: z.string().default("2026-06-
|
|
2451
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
2452
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
2453
2453
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2454
2454
|
guardrail_config: z.nullable(
|
|
2455
2455
|
z.union([
|
|
@@ -2640,8 +2640,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
2640
2640
|
> = z.object({
|
|
2641
2641
|
_id: z.string(),
|
|
2642
2642
|
description: z.string(),
|
|
2643
|
-
created: z.string().default("2026-06-
|
|
2644
|
-
updated: z.string().default("2026-06-
|
|
2643
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
2644
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
2645
2645
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
2646
2646
|
guardrail_config: z.nullable(
|
|
2647
2647
|
z.union([
|
|
@@ -3008,8 +3008,8 @@ export const GetEvalsLlm2$inboundSchema: z.ZodType<
|
|
|
3008
3008
|
> = z.object({
|
|
3009
3009
|
_id: z.string(),
|
|
3010
3010
|
description: z.string(),
|
|
3011
|
-
created: z.string().default("2026-06-
|
|
3012
|
-
updated: z.string().default("2026-06-
|
|
3011
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
3012
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
3013
3013
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3014
3014
|
guardrail_config: z.nullable(
|
|
3015
3015
|
z.union([
|
|
@@ -3221,8 +3221,8 @@ export const GetEvalsLlm1$inboundSchema: z.ZodType<
|
|
|
3221
3221
|
> = z.object({
|
|
3222
3222
|
_id: z.string(),
|
|
3223
3223
|
description: z.string(),
|
|
3224
|
-
created: z.string().default("2026-06-
|
|
3225
|
-
updated: z.string().default("2026-06-
|
|
3224
|
+
created: z.string().default("2026-06-15T05:10:10.808Z"),
|
|
3225
|
+
updated: z.string().default("2026-06-15T05:10:10.809Z"),
|
|
3226
3226
|
updated_by_id: z.nullable(z.string()).optional(),
|
|
3227
3227
|
guardrail_config: z.nullable(
|
|
3228
3228
|
z.union([
|
|
@@ -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-06-
|
|
143
|
+
"2026-06-15T05:10:09.577Z",
|
|
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-06-
|
|
188
|
+
"2026-06-15T05:10:09.577Z",
|
|
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-06-
|
|
144
|
+
"2026-06-15T05:10:09.577Z",
|
|
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-06-
|
|
189
|
+
"2026-06-15T05:10:09.577Z",
|
|
190
190
|
).transform(v => new Date(v)),
|
|
191
191
|
filter_type: z.literal("span_type"),
|
|
192
192
|
filter_values: z.array(z.string()),
|