@orq-ai/node 3.9.2 → 3.9.4
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/README.md +5 -2
- package/bin/mcp-server.js +144 -144
- package/bin/mcp-server.js.map +31 -31
- package/docs/sdks/knowledge/README.md +0 -87
- package/docs/sdks/knowledgebases/README.md +94 -0
- package/funcs/{knowledgeChunkText.d.ts → knowledgeBasesChunkText.d.ts} +3 -3
- package/funcs/knowledgeBasesChunkText.d.ts.map +1 -0
- package/funcs/{knowledgeChunkText.js → knowledgeBasesChunkText.js} +4 -4
- package/funcs/knowledgeBasesChunkText.js.map +1 -0
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +3 -3
- package/mcp-server/server.js.map +1 -1
- package/mcp-server/tools/{knowledgeChunkText.d.ts → knowledgeBasesChunkText.d.ts} +2 -2
- package/mcp-server/tools/knowledgeBasesChunkText.d.ts.map +1 -0
- package/mcp-server/tools/{knowledgeChunkText.js → knowledgeBasesChunkText.js} +7 -7
- package/mcp-server/tools/knowledgeBasesChunkText.js.map +1 -0
- package/models/operations/chunktext.d.ts +24 -24
- package/models/operations/chunktext.d.ts.map +1 -1
- package/models/operations/chunktext.js +38 -39
- package/models/operations/chunktext.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.js +16 -16
- package/package.json +1 -1
- package/packages/orq-rc/README.md +5 -2
- package/packages/orq-rc/docs/sdks/knowledge/README.md +0 -87
- package/packages/orq-rc/docs/sdks/knowledgebases/README.md +94 -0
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +56 -67
- package/packages/orq-rc/package.json +3 -3
- package/packages/orq-rc/src/funcs/{knowledgeChunkText.ts → knowledgeBasesChunkText.ts} +2 -2
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +3 -3
- package/packages/orq-rc/src/mcp-server/tools/{knowledgeChunkText.ts → knowledgeBasesChunkText.ts} +5 -5
- package/packages/orq-rc/src/models/operations/chunktext.ts +63 -57
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
- package/packages/orq-rc/src/sdk/knowledge.ts +0 -18
- package/packages/orq-rc/src/sdk/knowledgebases.ts +27 -0
- package/packages/orq-rc/src/sdk/sdk.ts +6 -0
- package/sdk/knowledge.d.ts +0 -7
- package/sdk/knowledge.d.ts.map +1 -1
- package/sdk/knowledge.js +0 -10
- package/sdk/knowledge.js.map +1 -1
- package/sdk/knowledgebases.d.ts +12 -0
- package/sdk/knowledgebases.d.ts.map +1 -0
- package/sdk/knowledgebases.js +22 -0
- package/sdk/knowledgebases.js.map +1 -0
- package/sdk/sdk.d.ts +3 -0
- package/sdk/sdk.d.ts.map +1 -1
- package/sdk/sdk.js +4 -0
- package/sdk/sdk.js.map +1 -1
- package/src/funcs/{knowledgeChunkText.ts → knowledgeBasesChunkText.ts} +2 -2
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +3 -3
- package/src/mcp-server/tools/{knowledgeChunkText.ts → knowledgeBasesChunkText.ts} +5 -5
- package/src/models/operations/chunktext.ts +63 -57
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +16 -16
- package/src/sdk/knowledge.ts +0 -18
- package/src/sdk/knowledgebases.ts +27 -0
- package/src/sdk/sdk.ts +6 -0
- package/funcs/knowledgeChunkText.d.ts.map +0 -1
- package/funcs/knowledgeChunkText.js.map +0 -1
- package/mcp-server/tools/knowledgeChunkText.d.ts.map +0 -1
- package/mcp-server/tools/knowledgeChunkText.js.map +0 -1
|
@@ -12,16 +12,17 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
|
12
12
|
/**
|
|
13
13
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
14
14
|
*/
|
|
15
|
-
export const
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
export const ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType =
|
|
16
|
+
{
|
|
17
|
+
Chunks: "chunks",
|
|
18
|
+
Texts: "texts",
|
|
19
|
+
} as const;
|
|
19
20
|
/**
|
|
20
21
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
21
22
|
*/
|
|
22
|
-
export type
|
|
23
|
+
export type ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType =
|
|
23
24
|
ClosedEnum<
|
|
24
|
-
typeof
|
|
25
|
+
typeof ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType
|
|
25
26
|
>;
|
|
26
27
|
|
|
27
28
|
export const AgenticChunker = {
|
|
@@ -45,7 +46,7 @@ export type AgenticChunkerStrategy = {
|
|
|
45
46
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
46
47
|
*/
|
|
47
48
|
returnType?:
|
|
48
|
-
|
|
|
49
|
+
| ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType
|
|
49
50
|
| undefined;
|
|
50
51
|
strategy: AgenticChunker;
|
|
51
52
|
/**
|
|
@@ -69,16 +70,15 @@ export type AgenticChunkerStrategy = {
|
|
|
69
70
|
/**
|
|
70
71
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
71
72
|
*/
|
|
72
|
-
export const
|
|
73
|
+
export const ChunkTextChunkingRequestKnowledgeBasesRequestReturnType = {
|
|
73
74
|
Chunks: "chunks",
|
|
74
75
|
Texts: "texts",
|
|
75
76
|
} as const;
|
|
76
77
|
/**
|
|
77
78
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
78
79
|
*/
|
|
79
|
-
export type
|
|
80
|
-
typeof
|
|
81
|
-
>;
|
|
80
|
+
export type ChunkTextChunkingRequestKnowledgeBasesRequestReturnType =
|
|
81
|
+
ClosedEnum<typeof ChunkTextChunkingRequestKnowledgeBasesRequestReturnType>;
|
|
82
82
|
|
|
83
83
|
export const SDPMChunker = {
|
|
84
84
|
Sdpm: "sdpm",
|
|
@@ -122,7 +122,9 @@ export type SDPMChunkerStrategy = {
|
|
|
122
122
|
/**
|
|
123
123
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
124
124
|
*/
|
|
125
|
-
returnType?:
|
|
125
|
+
returnType?:
|
|
126
|
+
| ChunkTextChunkingRequestKnowledgeBasesRequestReturnType
|
|
127
|
+
| undefined;
|
|
126
128
|
strategy: SDPMChunker;
|
|
127
129
|
/**
|
|
128
130
|
* Maximum tokens per chunk
|
|
@@ -149,15 +151,15 @@ export type SDPMChunkerStrategy = {
|
|
|
149
151
|
/**
|
|
150
152
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
151
153
|
*/
|
|
152
|
-
export const
|
|
154
|
+
export const ChunkTextChunkingRequestKnowledgeBasesReturnType = {
|
|
153
155
|
Chunks: "chunks",
|
|
154
156
|
Texts: "texts",
|
|
155
157
|
} as const;
|
|
156
158
|
/**
|
|
157
159
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
158
160
|
*/
|
|
159
|
-
export type
|
|
160
|
-
typeof
|
|
161
|
+
export type ChunkTextChunkingRequestKnowledgeBasesReturnType = ClosedEnum<
|
|
162
|
+
typeof ChunkTextChunkingRequestKnowledgeBasesReturnType
|
|
161
163
|
>;
|
|
162
164
|
|
|
163
165
|
export const SemanticChunker = {
|
|
@@ -202,7 +204,7 @@ export type SemanticChunkerStrategy = {
|
|
|
202
204
|
/**
|
|
203
205
|
* Return format: chunks (with metadata) or texts (plain strings)
|
|
204
206
|
*/
|
|
205
|
-
returnType?:
|
|
207
|
+
returnType?: ChunkTextChunkingRequestKnowledgeBasesReturnType | undefined;
|
|
206
208
|
strategy: SemanticChunker;
|
|
207
209
|
/**
|
|
208
210
|
* Maximum tokens per chunk
|
|
@@ -407,31 +409,31 @@ export type ChunkTextResponseBody = {
|
|
|
407
409
|
};
|
|
408
410
|
|
|
409
411
|
/** @internal */
|
|
410
|
-
export const
|
|
412
|
+
export const ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$inboundSchema:
|
|
411
413
|
z.ZodNativeEnum<
|
|
412
|
-
typeof
|
|
414
|
+
typeof ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType
|
|
413
415
|
> = z.nativeEnum(
|
|
414
|
-
|
|
416
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType,
|
|
415
417
|
);
|
|
416
418
|
|
|
417
419
|
/** @internal */
|
|
418
|
-
export const
|
|
420
|
+
export const ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$outboundSchema:
|
|
419
421
|
z.ZodNativeEnum<
|
|
420
|
-
typeof
|
|
422
|
+
typeof ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType
|
|
421
423
|
> =
|
|
422
|
-
|
|
424
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$inboundSchema;
|
|
423
425
|
|
|
424
426
|
/**
|
|
425
427
|
* @internal
|
|
426
428
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
427
429
|
*/
|
|
428
|
-
export namespace
|
|
429
|
-
/** @deprecated use `
|
|
430
|
+
export namespace ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$ {
|
|
431
|
+
/** @deprecated use `ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$inboundSchema` instead. */
|
|
430
432
|
export const inboundSchema =
|
|
431
|
-
|
|
432
|
-
/** @deprecated use `
|
|
433
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$inboundSchema;
|
|
434
|
+
/** @deprecated use `ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$outboundSchema` instead. */
|
|
433
435
|
export const outboundSchema =
|
|
434
|
-
|
|
436
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$outboundSchema;
|
|
435
437
|
}
|
|
436
438
|
|
|
437
439
|
/** @internal */
|
|
@@ -464,7 +466,7 @@ export const AgenticChunkerStrategy$inboundSchema: z.ZodType<
|
|
|
464
466
|
text: z.string(),
|
|
465
467
|
metadata: z.boolean().default(true),
|
|
466
468
|
return_type:
|
|
467
|
-
|
|
469
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$inboundSchema
|
|
468
470
|
.default("chunks"),
|
|
469
471
|
strategy: AgenticChunker$inboundSchema,
|
|
470
472
|
model: z.string(),
|
|
@@ -501,7 +503,7 @@ export const AgenticChunkerStrategy$outboundSchema: z.ZodType<
|
|
|
501
503
|
text: z.string(),
|
|
502
504
|
metadata: z.boolean().default(true),
|
|
503
505
|
returnType:
|
|
504
|
-
|
|
506
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestRequestBodyReturnType$outboundSchema
|
|
505
507
|
.default("chunks"),
|
|
506
508
|
strategy: AgenticChunker$outboundSchema,
|
|
507
509
|
model: z.string(),
|
|
@@ -549,26 +551,28 @@ export function agenticChunkerStrategyFromJSON(
|
|
|
549
551
|
}
|
|
550
552
|
|
|
551
553
|
/** @internal */
|
|
552
|
-
export const
|
|
553
|
-
z.ZodNativeEnum<
|
|
554
|
-
|
|
554
|
+
export const ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$inboundSchema:
|
|
555
|
+
z.ZodNativeEnum<
|
|
556
|
+
typeof ChunkTextChunkingRequestKnowledgeBasesRequestReturnType
|
|
557
|
+
> = z.nativeEnum(ChunkTextChunkingRequestKnowledgeBasesRequestReturnType);
|
|
555
558
|
|
|
556
559
|
/** @internal */
|
|
557
|
-
export const
|
|
558
|
-
z.ZodNativeEnum<
|
|
559
|
-
|
|
560
|
+
export const ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$outboundSchema:
|
|
561
|
+
z.ZodNativeEnum<
|
|
562
|
+
typeof ChunkTextChunkingRequestKnowledgeBasesRequestReturnType
|
|
563
|
+
> = ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$inboundSchema;
|
|
560
564
|
|
|
561
565
|
/**
|
|
562
566
|
* @internal
|
|
563
567
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
564
568
|
*/
|
|
565
|
-
export namespace
|
|
566
|
-
/** @deprecated use `
|
|
569
|
+
export namespace ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$ {
|
|
570
|
+
/** @deprecated use `ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$inboundSchema` instead. */
|
|
567
571
|
export const inboundSchema =
|
|
568
|
-
|
|
569
|
-
/** @deprecated use `
|
|
572
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$inboundSchema;
|
|
573
|
+
/** @deprecated use `ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$outboundSchema` instead. */
|
|
570
574
|
export const outboundSchema =
|
|
571
|
-
|
|
575
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$outboundSchema;
|
|
572
576
|
}
|
|
573
577
|
|
|
574
578
|
/** @internal */
|
|
@@ -688,8 +692,9 @@ export const SDPMChunkerStrategy$inboundSchema: z.ZodType<
|
|
|
688
692
|
> = z.object({
|
|
689
693
|
text: z.string(),
|
|
690
694
|
metadata: z.boolean().default(true),
|
|
691
|
-
return_type:
|
|
692
|
-
|
|
695
|
+
return_type:
|
|
696
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$inboundSchema
|
|
697
|
+
.default("chunks"),
|
|
693
698
|
strategy: SDPMChunker$inboundSchema,
|
|
694
699
|
chunk_size: z.number().int().default(512),
|
|
695
700
|
skip_window: z.number().int().default(1),
|
|
@@ -727,8 +732,9 @@ export const SDPMChunkerStrategy$outboundSchema: z.ZodType<
|
|
|
727
732
|
> = z.object({
|
|
728
733
|
text: z.string(),
|
|
729
734
|
metadata: z.boolean().default(true),
|
|
730
|
-
returnType:
|
|
731
|
-
|
|
735
|
+
returnType:
|
|
736
|
+
ChunkTextChunkingRequestKnowledgeBasesRequestReturnType$outboundSchema
|
|
737
|
+
.default("chunks"),
|
|
732
738
|
strategy: SDPMChunker$outboundSchema,
|
|
733
739
|
chunkSize: z.number().int().default(512),
|
|
734
740
|
skipWindow: z.number().int().default(1),
|
|
@@ -777,26 +783,26 @@ export function sdpmChunkerStrategyFromJSON(
|
|
|
777
783
|
}
|
|
778
784
|
|
|
779
785
|
/** @internal */
|
|
780
|
-
export const
|
|
781
|
-
z.ZodNativeEnum<typeof
|
|
782
|
-
.nativeEnum(
|
|
786
|
+
export const ChunkTextChunkingRequestKnowledgeBasesReturnType$inboundSchema:
|
|
787
|
+
z.ZodNativeEnum<typeof ChunkTextChunkingRequestKnowledgeBasesReturnType> = z
|
|
788
|
+
.nativeEnum(ChunkTextChunkingRequestKnowledgeBasesReturnType);
|
|
783
789
|
|
|
784
790
|
/** @internal */
|
|
785
|
-
export const
|
|
786
|
-
z.ZodNativeEnum<typeof
|
|
787
|
-
|
|
791
|
+
export const ChunkTextChunkingRequestKnowledgeBasesReturnType$outboundSchema:
|
|
792
|
+
z.ZodNativeEnum<typeof ChunkTextChunkingRequestKnowledgeBasesReturnType> =
|
|
793
|
+
ChunkTextChunkingRequestKnowledgeBasesReturnType$inboundSchema;
|
|
788
794
|
|
|
789
795
|
/**
|
|
790
796
|
* @internal
|
|
791
797
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
792
798
|
*/
|
|
793
|
-
export namespace
|
|
794
|
-
/** @deprecated use `
|
|
799
|
+
export namespace ChunkTextChunkingRequestKnowledgeBasesReturnType$ {
|
|
800
|
+
/** @deprecated use `ChunkTextChunkingRequestKnowledgeBasesReturnType$inboundSchema` instead. */
|
|
795
801
|
export const inboundSchema =
|
|
796
|
-
|
|
797
|
-
/** @deprecated use `
|
|
802
|
+
ChunkTextChunkingRequestKnowledgeBasesReturnType$inboundSchema;
|
|
803
|
+
/** @deprecated use `ChunkTextChunkingRequestKnowledgeBasesReturnType$outboundSchema` instead. */
|
|
798
804
|
export const outboundSchema =
|
|
799
|
-
|
|
805
|
+
ChunkTextChunkingRequestKnowledgeBasesReturnType$outboundSchema;
|
|
800
806
|
}
|
|
801
807
|
|
|
802
808
|
/** @internal */
|
|
@@ -911,7 +917,7 @@ export const SemanticChunkerStrategy$inboundSchema: z.ZodType<
|
|
|
911
917
|
> = z.object({
|
|
912
918
|
text: z.string(),
|
|
913
919
|
metadata: z.boolean().default(true),
|
|
914
|
-
return_type:
|
|
920
|
+
return_type: ChunkTextChunkingRequestKnowledgeBasesReturnType$inboundSchema
|
|
915
921
|
.default("chunks"),
|
|
916
922
|
strategy: SemanticChunker$inboundSchema,
|
|
917
923
|
chunk_size: z.number().int().default(512),
|
|
@@ -949,7 +955,7 @@ export const SemanticChunkerStrategy$outboundSchema: z.ZodType<
|
|
|
949
955
|
> = z.object({
|
|
950
956
|
text: z.string(),
|
|
951
957
|
metadata: z.boolean().default(true),
|
|
952
|
-
returnType:
|
|
958
|
+
returnType: ChunkTextChunkingRequestKnowledgeBasesReturnType$outboundSchema
|
|
953
959
|
.default("chunks"),
|
|
954
960
|
strategy: SemanticChunker$outboundSchema,
|
|
955
961
|
chunkSize: z.number().int().default(512),
|
|
@@ -182,7 +182,7 @@ export const CreateContactResponseBody$inboundSchema: z.ZodType<
|
|
|
182
182
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
183
183
|
.optional(),
|
|
184
184
|
updated: z.string().datetime({ offset: true }).default(
|
|
185
|
-
"2025-07-
|
|
185
|
+
"2025-07-04T12:58:16.632Z",
|
|
186
186
|
).transform(v => new Date(v)),
|
|
187
187
|
}).transform((v) => {
|
|
188
188
|
return remap$(v, {
|
|
@@ -223,7 +223,7 @@ export const CreateContactResponseBody$outboundSchema: z.ZodType<
|
|
|
223
223
|
tags: z.array(z.string()).optional(),
|
|
224
224
|
metadata: z.record(z.any()).optional(),
|
|
225
225
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
226
|
-
updated: z.date().default(() => new Date("2025-07-
|
|
226
|
+
updated: z.date().default(() => new Date("2025-07-04T12:58:16.632Z"))
|
|
227
227
|
.transform(v => v.toISOString()),
|
|
228
228
|
}).transform((v) => {
|
|
229
229
|
return remap$(v, {
|
|
@@ -211,7 +211,7 @@ export const CreateDatasetResponseBody$inboundSchema: z.ZodType<
|
|
|
211
211
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
212
212
|
.optional(),
|
|
213
213
|
updated: z.string().datetime({ offset: true }).default(
|
|
214
|
-
"2025-07-
|
|
214
|
+
"2025-07-04T12:58:16.632Z",
|
|
215
215
|
).transform(v => new Date(v)),
|
|
216
216
|
}).transform((v) => {
|
|
217
217
|
return remap$(v, {
|
|
@@ -251,7 +251,7 @@ export const CreateDatasetResponseBody$outboundSchema: z.ZodType<
|
|
|
251
251
|
updatedById: z.string().optional(),
|
|
252
252
|
metadata: z.lazy(() => CreateDatasetMetadata$outboundSchema),
|
|
253
253
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
254
|
-
updated: z.date().default(() => new Date("2025-07-
|
|
254
|
+
updated: z.date().default(() => new Date("2025-07-04T12:58:16.632Z"))
|
|
255
255
|
.transform(v => v.toISOString()),
|
|
256
256
|
}).transform((v) => {
|
|
257
257
|
return remap$(v, {
|
|
@@ -5111,7 +5111,7 @@ export const CreateDatasetItemResponseBody$inboundSchema: z.ZodType<
|
|
|
5111
5111
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
5112
5112
|
.optional(),
|
|
5113
5113
|
updated: z.string().datetime({ offset: true }).default(
|
|
5114
|
-
"2025-07-
|
|
5114
|
+
"2025-07-04T12:58:16.632Z",
|
|
5115
5115
|
).transform(v => new Date(v)),
|
|
5116
5116
|
}).transform((v) => {
|
|
5117
5117
|
return remap$(v, {
|
|
@@ -5175,7 +5175,7 @@ export const CreateDatasetItemResponseBody$outboundSchema: z.ZodType<
|
|
|
5175
5175
|
createdById: z.string().optional(),
|
|
5176
5176
|
updatedById: z.string().optional(),
|
|
5177
5177
|
created: z.date().transform(v => v.toISOString()).optional(),
|
|
5178
|
-
updated: z.date().default(() => new Date("2025-07-
|
|
5178
|
+
updated: z.date().default(() => new Date("2025-07-04T12:58:16.632Z"))
|
|
5179
5179
|
.transform(v => v.toISOString()),
|
|
5180
5180
|
}).transform((v) => {
|
|
5181
5181
|
return remap$(v, {
|
|
@@ -751,7 +751,7 @@ export const CreateDatasourceResponseBody$inboundSchema: z.ZodType<
|
|
|
751
751
|
z.ZodTypeDef,
|
|
752
752
|
unknown
|
|
753
753
|
> = z.object({
|
|
754
|
-
_id: z.string().default("
|
|
754
|
+
_id: z.string().default("01JZAR8H5A0HGMG4C7K1Z58QEC"),
|
|
755
755
|
display_name: z.string(),
|
|
756
756
|
description: z.string().optional(),
|
|
757
757
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -795,7 +795,7 @@ export const CreateDatasourceResponseBody$outboundSchema: z.ZodType<
|
|
|
795
795
|
z.ZodTypeDef,
|
|
796
796
|
CreateDatasourceResponseBody
|
|
797
797
|
> = z.object({
|
|
798
|
-
id: z.string().default("
|
|
798
|
+
id: z.string().default("01JZAR8H5A0HGMG4C7K1Z58QEC"),
|
|
799
799
|
displayName: z.string(),
|
|
800
800
|
description: z.string().optional(),
|
|
801
801
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -2399,8 +2399,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
2399
2399
|
> = z.object({
|
|
2400
2400
|
_id: z.string(),
|
|
2401
2401
|
description: z.string(),
|
|
2402
|
-
created: z.string().default("2025-07-
|
|
2403
|
-
updated: z.string().default("2025-07-
|
|
2402
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
2403
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
2404
2404
|
guardrail_config: z.union([
|
|
2405
2405
|
z.lazy(() =>
|
|
2406
2406
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -2442,8 +2442,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
2442
2442
|
> = z.object({
|
|
2443
2443
|
id: z.string(),
|
|
2444
2444
|
description: z.string(),
|
|
2445
|
-
created: z.string().default("2025-07-
|
|
2446
|
-
updated: z.string().default("2025-07-
|
|
2445
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
2446
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
2447
2447
|
guardrailConfig: z.union([
|
|
2448
2448
|
z.lazy(() =>
|
|
2449
2449
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -2856,8 +2856,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
2856
2856
|
> = z.object({
|
|
2857
2857
|
_id: z.string(),
|
|
2858
2858
|
description: z.string(),
|
|
2859
|
-
created: z.string().default("2025-07-
|
|
2860
|
-
updated: z.string().default("2025-07-
|
|
2859
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
2860
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
2861
2861
|
guardrail_config: z.union([
|
|
2862
2862
|
z.lazy(() =>
|
|
2863
2863
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -2905,8 +2905,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
2905
2905
|
> = z.object({
|
|
2906
2906
|
id: z.string(),
|
|
2907
2907
|
description: z.string(),
|
|
2908
|
-
created: z.string().default("2025-07-
|
|
2909
|
-
updated: z.string().default("2025-07-
|
|
2908
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
2909
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
2910
2910
|
guardrailConfig: z.union([
|
|
2911
2911
|
z.lazy(() =>
|
|
2912
2912
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -3283,8 +3283,8 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
3283
3283
|
> = z.object({
|
|
3284
3284
|
_id: z.string(),
|
|
3285
3285
|
description: z.string(),
|
|
3286
|
-
created: z.string().default("2025-07-
|
|
3287
|
-
updated: z.string().default("2025-07-
|
|
3286
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
3287
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
3288
3288
|
guardrail_config: z.union([
|
|
3289
3289
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
3290
3290
|
z.lazy(() =>
|
|
@@ -3324,8 +3324,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
3324
3324
|
> = z.object({
|
|
3325
3325
|
id: z.string(),
|
|
3326
3326
|
description: z.string(),
|
|
3327
|
-
created: z.string().default("2025-07-
|
|
3328
|
-
updated: z.string().default("2025-07-
|
|
3327
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
3328
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
3329
3329
|
guardrailConfig: z.union([
|
|
3330
3330
|
z.lazy(() =>
|
|
3331
3331
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -3680,8 +3680,8 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
3680
3680
|
> = z.object({
|
|
3681
3681
|
_id: z.string(),
|
|
3682
3682
|
description: z.string(),
|
|
3683
|
-
created: z.string().default("2025-07-
|
|
3684
|
-
updated: z.string().default("2025-07-
|
|
3683
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
3684
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
3685
3685
|
guardrail_config: z.union([
|
|
3686
3686
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
3687
3687
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -3721,8 +3721,8 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
3721
3721
|
> = z.object({
|
|
3722
3722
|
id: z.string(),
|
|
3723
3723
|
description: z.string(),
|
|
3724
|
-
created: z.string().default("2025-07-
|
|
3725
|
-
updated: z.string().default("2025-07-
|
|
3724
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
3725
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
3726
3726
|
guardrailConfig: z.union([
|
|
3727
3727
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
3728
3728
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -146,7 +146,7 @@ export const FileGetResponseBody$inboundSchema: z.ZodType<
|
|
|
146
146
|
file_name: z.string(),
|
|
147
147
|
workspace_id: z.string(),
|
|
148
148
|
created: z.string().datetime({ offset: true }).default(
|
|
149
|
-
"2025-07-
|
|
149
|
+
"2025-07-04T12:58:19.613Z",
|
|
150
150
|
).transform(v => new Date(v)),
|
|
151
151
|
}).transform((v) => {
|
|
152
152
|
return remap$(v, {
|
|
@@ -180,7 +180,7 @@ export const FileGetResponseBody$outboundSchema: z.ZodType<
|
|
|
180
180
|
bytes: z.number(),
|
|
181
181
|
fileName: z.string(),
|
|
182
182
|
workspaceId: z.string(),
|
|
183
|
-
created: z.date().default(() => new Date("2025-07-
|
|
183
|
+
created: z.date().default(() => new Date("2025-07-04T12:58:19.613Z"))
|
|
184
184
|
.transform(v => v.toISOString()),
|
|
185
185
|
}).transform((v) => {
|
|
186
186
|
return remap$(v, {
|
|
@@ -196,7 +196,7 @@ export const FileListData$inboundSchema: z.ZodType<
|
|
|
196
196
|
file_name: z.string(),
|
|
197
197
|
workspace_id: z.string(),
|
|
198
198
|
created: z.string().datetime({ offset: true }).default(
|
|
199
|
-
"2025-07-
|
|
199
|
+
"2025-07-04T12:58:19.613Z",
|
|
200
200
|
).transform(v => new Date(v)),
|
|
201
201
|
}).transform((v) => {
|
|
202
202
|
return remap$(v, {
|
|
@@ -230,7 +230,7 @@ export const FileListData$outboundSchema: z.ZodType<
|
|
|
230
230
|
bytes: z.number(),
|
|
231
231
|
fileName: z.string(),
|
|
232
232
|
workspaceId: z.string(),
|
|
233
|
-
created: z.date().default(() => new Date("2025-07-
|
|
233
|
+
created: z.date().default(() => new Date("2025-07-04T12:58:19.613Z"))
|
|
234
234
|
.transform(v => v.toISOString()),
|
|
235
235
|
}).transform((v) => {
|
|
236
236
|
return remap$(v, {
|
|
@@ -250,7 +250,7 @@ export const FileUploadResponseBody$inboundSchema: z.ZodType<
|
|
|
250
250
|
file_name: z.string(),
|
|
251
251
|
workspace_id: z.string(),
|
|
252
252
|
created: z.string().datetime({ offset: true }).default(
|
|
253
|
-
"2025-07-
|
|
253
|
+
"2025-07-04T12:58:19.613Z",
|
|
254
254
|
).transform(v => new Date(v)),
|
|
255
255
|
}).transform((v) => {
|
|
256
256
|
return remap$(v, {
|
|
@@ -284,7 +284,7 @@ export const FileUploadResponseBody$outboundSchema: z.ZodType<
|
|
|
284
284
|
bytes: z.number(),
|
|
285
285
|
fileName: z.string(),
|
|
286
286
|
workspaceId: z.string(),
|
|
287
|
-
created: z.date().default(() => new Date("2025-07-
|
|
287
|
+
created: z.date().default(() => new Date("2025-07-04T12:58:19.613Z"))
|
|
288
288
|
.transform(v => v.toISOString()),
|
|
289
289
|
}).transform((v) => {
|
|
290
290
|
return remap$(v, {
|
|
@@ -1373,8 +1373,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
1373
1373
|
> = z.object({
|
|
1374
1374
|
_id: z.string(),
|
|
1375
1375
|
description: z.string(),
|
|
1376
|
-
created: z.string().default("2025-07-
|
|
1377
|
-
updated: z.string().default("2025-07-
|
|
1376
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
1377
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
1378
1378
|
guardrail_config: z.union([
|
|
1379
1379
|
z.lazy(() =>
|
|
1380
1380
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1417,8 +1417,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
1417
1417
|
> = z.object({
|
|
1418
1418
|
id: z.string(),
|
|
1419
1419
|
description: z.string(),
|
|
1420
|
-
created: z.string().default("2025-07-
|
|
1421
|
-
updated: z.string().default("2025-07-
|
|
1420
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
1421
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
1422
1422
|
guardrailConfig: z.union([
|
|
1423
1423
|
z.lazy(() =>
|
|
1424
1424
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -1814,8 +1814,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
1814
1814
|
.object({
|
|
1815
1815
|
_id: z.string(),
|
|
1816
1816
|
description: z.string(),
|
|
1817
|
-
created: z.string().default("2025-07-
|
|
1818
|
-
updated: z.string().default("2025-07-
|
|
1817
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
1818
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
1819
1819
|
guardrail_config: z.union([
|
|
1820
1820
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1821
1821
|
z.lazy(() =>
|
|
@@ -1858,8 +1858,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
1858
1858
|
> = z.object({
|
|
1859
1859
|
id: z.string(),
|
|
1860
1860
|
description: z.string(),
|
|
1861
|
-
created: z.string().default("2025-07-
|
|
1862
|
-
updated: z.string().default("2025-07-
|
|
1861
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
1862
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
1863
1863
|
guardrailConfig: z.union([
|
|
1864
1864
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1865
1865
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
@@ -4222,8 +4222,8 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
4222
4222
|
> = z.object({
|
|
4223
4223
|
_id: z.string(),
|
|
4224
4224
|
description: z.string(),
|
|
4225
|
-
created: z.string().default("2025-07-
|
|
4226
|
-
updated: z.string().default("2025-07-
|
|
4225
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
4226
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
4227
4227
|
guardrail_config: z.union([
|
|
4228
4228
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
4229
4229
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
@@ -4311,8 +4311,8 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
4311
4311
|
> = z.object({
|
|
4312
4312
|
id: z.string(),
|
|
4313
4313
|
description: z.string(),
|
|
4314
|
-
created: z.string().default("2025-07-
|
|
4315
|
-
updated: z.string().default("2025-07-
|
|
4314
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
4315
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
4316
4316
|
guardrailConfig: z.union([
|
|
4317
4317
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
4318
4318
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
@@ -4683,8 +4683,8 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
4683
4683
|
> = z.object({
|
|
4684
4684
|
_id: z.string(),
|
|
4685
4685
|
description: z.string(),
|
|
4686
|
-
created: z.string().default("2025-07-
|
|
4687
|
-
updated: z.string().default("2025-07-
|
|
4686
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
4687
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
4688
4688
|
guardrail_config: z.union([
|
|
4689
4689
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
4690
4690
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
@@ -4722,8 +4722,8 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
4722
4722
|
> = z.object({
|
|
4723
4723
|
id: z.string(),
|
|
4724
4724
|
description: z.string(),
|
|
4725
|
-
created: z.string().default("2025-07-
|
|
4726
|
-
updated: z.string().default("2025-07-
|
|
4725
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
4726
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
4727
4727
|
guardrailConfig: z.union([
|
|
4728
4728
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
4729
4729
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
@@ -5069,8 +5069,8 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
5069
5069
|
> = z.object({
|
|
5070
5070
|
_id: z.string(),
|
|
5071
5071
|
description: z.string(),
|
|
5072
|
-
created: z.string().default("2025-07-
|
|
5073
|
-
updated: z.string().default("2025-07-
|
|
5072
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5073
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5074
5074
|
guardrail_config: z.union([
|
|
5075
5075
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
5076
5076
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
@@ -5114,8 +5114,8 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
5114
5114
|
> = z.object({
|
|
5115
5115
|
id: z.string(),
|
|
5116
5116
|
description: z.string(),
|
|
5117
|
-
created: z.string().default("2025-07-
|
|
5118
|
-
updated: z.string().default("2025-07-
|
|
5117
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5118
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5119
5119
|
guardrailConfig: z.union([
|
|
5120
5120
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
5121
5121
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
@@ -5480,8 +5480,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
5480
5480
|
> = z.object({
|
|
5481
5481
|
_id: z.string(),
|
|
5482
5482
|
description: z.string(),
|
|
5483
|
-
created: z.string().default("2025-07-
|
|
5484
|
-
updated: z.string().default("2025-07-
|
|
5483
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5484
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5485
5485
|
guardrail_config: z.union([
|
|
5486
5486
|
z.lazy(() =>
|
|
5487
5487
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -5523,8 +5523,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
5523
5523
|
> = z.object({
|
|
5524
5524
|
id: z.string(),
|
|
5525
5525
|
description: z.string(),
|
|
5526
|
-
created: z.string().default("2025-07-
|
|
5527
|
-
updated: z.string().default("2025-07-
|
|
5526
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5527
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5528
5528
|
guardrailConfig: z.union([
|
|
5529
5529
|
z.lazy(() =>
|
|
5530
5530
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -5906,8 +5906,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
5906
5906
|
z.object({
|
|
5907
5907
|
_id: z.string(),
|
|
5908
5908
|
description: z.string(),
|
|
5909
|
-
created: z.string().default("2025-07-
|
|
5910
|
-
updated: z.string().default("2025-07-
|
|
5909
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5910
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5911
5911
|
guardrail_config: z.union([
|
|
5912
5912
|
z.lazy(() =>
|
|
5913
5913
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -5951,8 +5951,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
5951
5951
|
> = z.object({
|
|
5952
5952
|
id: z.string(),
|
|
5953
5953
|
description: z.string(),
|
|
5954
|
-
created: z.string().default("2025-07-
|
|
5955
|
-
updated: z.string().default("2025-07-
|
|
5954
|
+
created: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5955
|
+
updated: z.string().default("2025-07-04T12:58:18.731Z"),
|
|
5956
5956
|
guardrailConfig: z.union([
|
|
5957
5957
|
z.lazy(() =>
|
|
5958
5958
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|