@orq-ai/node 3.8.0-rc.30 → 3.8.0-rc.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/mcp-server.js +570 -570
- package/bin/mcp-server.js.map +40 -40
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/deployments.d.ts +12 -12
- package/models/components/deployments.d.ts.map +1 -1
- package/models/components/deployments.js +12 -12
- package/models/components/deployments.js.map +1 -1
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.d.ts +12 -12
- package/models/operations/createdatasetitem.d.ts.map +1 -1
- package/models/operations/createdatasetitem.js +14 -14
- package/models/operations/createdatasetitem.js.map +1 -1
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.d.ts +36 -36
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +56 -56
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/createprompt.d.ts +8 -8
- package/models/operations/createprompt.js +8 -8
- package/models/operations/deploymentcreatemetric.d.ts +12 -12
- package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
- package/models/operations/deploymentcreatemetric.js +12 -12
- package/models/operations/deploymentcreatemetric.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +16 -16
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +16 -16
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentinvoke.d.ts +4 -4
- package/models/operations/deploymentinvoke.js +8 -8
- package/models/operations/deployments.d.ts +4 -4
- package/models/operations/deployments.js +4 -4
- package/models/operations/deploymentstream.d.ts +16 -16
- package/models/operations/deploymentstream.d.ts.map +1 -1
- package/models/operations/deploymentstream.js +16 -16
- package/models/operations/deploymentstream.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getallprompts.d.ts +4 -4
- package/models/operations/getallprompts.js +4 -4
- package/models/operations/getevals.d.ts +36 -36
- package/models/operations/getevals.d.ts.map +1 -1
- package/models/operations/getevals.js +108 -108
- package/models/operations/getevals.js.map +1 -1
- package/models/operations/getoneprompt.d.ts +4 -4
- package/models/operations/getoneprompt.js +4 -4
- package/models/operations/getpromptversion.d.ts +4 -4
- package/models/operations/getpromptversion.js +4 -4
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.d.ts +6 -6
- package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
- package/models/operations/listdatasetdatapoints.js +8 -8
- package/models/operations/listdatasetdatapoints.js.map +1 -1
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/listpromptversions.d.ts +4 -4
- package/models/operations/listpromptversions.js +4 -4
- package/models/operations/postv2modelslitellmimport.d.ts +4 -4
- package/models/operations/postv2modelslitellmimport.js +8 -8
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.d.ts +6 -6
- package/models/operations/retrievedatapoint.d.ts.map +1 -1
- package/models/operations/retrievedatapoint.js +8 -8
- package/models/operations/retrievedatapoint.js.map +1 -1
- 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.d.ts +12 -12
- package/models/operations/updatedatapoint.d.ts.map +1 -1
- package/models/operations/updatedatapoint.js +14 -14
- package/models/operations/updatedatapoint.js.map +1 -1
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.d.ts +38 -38
- package/models/operations/updateeval.d.ts.map +1 -1
- package/models/operations/updateeval.js +60 -60
- package/models/operations/updateeval.js.map +1 -1
- package/models/operations/updateprompt.d.ts +8 -8
- package/models/operations/updateprompt.js +8 -8
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/deployments.ts +24 -24
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +26 -26
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +121 -121
- package/src/models/operations/createprompt.ts +19 -19
- package/src/models/operations/deploymentcreatemetric.ts +30 -26
- package/src/models/operations/deploymentgetconfig.ts +34 -34
- package/src/models/operations/deploymentinvoke.ts +13 -13
- package/src/models/operations/deployments.ts +10 -10
- package/src/models/operations/deploymentstream.ts +34 -34
- 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/getallprompts.ts +10 -10
- package/src/models/operations/getevals.ts +220 -220
- package/src/models/operations/getoneprompt.ts +10 -10
- package/src/models/operations/getpromptversion.ts +10 -10
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +20 -16
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/listpromptversions.ts +10 -10
- package/src/models/operations/postv2modelslitellmimport.ts +18 -18
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +14 -14
- 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 +29 -27
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +139 -139
- package/src/models/operations/updateprompt.ts +20 -20
- package/src/types/constdatetime.ts +1 -1
- package/types/constdatetime.js +1 -1
|
@@ -76,8 +76,8 @@ export type GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean = {
|
|
|
76
76
|
};
|
|
77
77
|
|
|
78
78
|
export type GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig =
|
|
79
|
-
|
|
|
80
|
-
|
|
|
79
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber
|
|
80
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean;
|
|
81
81
|
|
|
82
82
|
export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType = {
|
|
83
83
|
TypescriptEval: "typescript_eval",
|
|
@@ -93,8 +93,8 @@ export type Typescript = {
|
|
|
93
93
|
created?: string | undefined;
|
|
94
94
|
updated?: string | undefined;
|
|
95
95
|
guardrailConfig?:
|
|
96
|
-
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean
|
|
97
96
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber
|
|
97
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean
|
|
98
98
|
| undefined;
|
|
99
99
|
code: string;
|
|
100
100
|
type: GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType;
|
|
@@ -147,8 +147,8 @@ export type GetEvalsGuardrailConfigEvalsResponse200Boolean = {
|
|
|
147
147
|
};
|
|
148
148
|
|
|
149
149
|
export type GetEvalsDataEvalsResponse200GuardrailConfig =
|
|
150
|
-
|
|
|
151
|
-
|
|
|
150
|
+
| GetEvalsGuardrailConfigEvalsResponse200Number
|
|
151
|
+
| GetEvalsGuardrailConfigEvalsResponse200Boolean;
|
|
152
152
|
|
|
153
153
|
export const GetEvalsDataEvalsResponse200ApplicationJSONType = {
|
|
154
154
|
Ragas: "ragas",
|
|
@@ -178,8 +178,8 @@ export type Ragas = {
|
|
|
178
178
|
created?: string | undefined;
|
|
179
179
|
updated?: string | undefined;
|
|
180
180
|
guardrailConfig?:
|
|
181
|
-
| GetEvalsGuardrailConfigEvalsResponse200Boolean
|
|
182
181
|
| GetEvalsGuardrailConfigEvalsResponse200Number
|
|
182
|
+
| GetEvalsGuardrailConfigEvalsResponse200Boolean
|
|
183
183
|
| undefined;
|
|
184
184
|
type: GetEvalsDataEvalsResponse200ApplicationJSONType;
|
|
185
185
|
ragasMetric: RagasMetric;
|
|
@@ -233,8 +233,8 @@ export type GetEvalsGuardrailConfigEvalsResponseBoolean = {
|
|
|
233
233
|
};
|
|
234
234
|
|
|
235
235
|
export type GetEvalsDataEvalsResponseGuardrailConfig =
|
|
236
|
-
|
|
|
237
|
-
|
|
|
236
|
+
| GetEvalsGuardrailConfigEvalsResponseNumber
|
|
237
|
+
| GetEvalsGuardrailConfigEvalsResponseBoolean;
|
|
238
238
|
|
|
239
239
|
export const GetEvalsDataEvalsResponse200Type = {
|
|
240
240
|
FunctionEval: "function_eval",
|
|
@@ -569,6 +569,16 @@ export type FunctionParams1 = {
|
|
|
569
569
|
};
|
|
570
570
|
|
|
571
571
|
export type DataFunctionParams =
|
|
572
|
+
| Twelve
|
|
573
|
+
| FunctionParams1
|
|
574
|
+
| FunctionParams2
|
|
575
|
+
| FunctionParams3
|
|
576
|
+
| FunctionParams4
|
|
577
|
+
| Eight
|
|
578
|
+
| Nine
|
|
579
|
+
| Eleven
|
|
580
|
+
| Thirteen
|
|
581
|
+
| Fifteen
|
|
572
582
|
| Five
|
|
573
583
|
| Six
|
|
574
584
|
| Seven
|
|
@@ -582,17 +592,7 @@ export type DataFunctionParams =
|
|
|
582
592
|
| TwentyOne
|
|
583
593
|
| TwentyTwo
|
|
584
594
|
| TwentyThree
|
|
585
|
-
| TwentyFour
|
|
586
|
-
| FunctionParams1
|
|
587
|
-
| FunctionParams2
|
|
588
|
-
| FunctionParams3
|
|
589
|
-
| FunctionParams4
|
|
590
|
-
| Eight
|
|
591
|
-
| Nine
|
|
592
|
-
| Eleven
|
|
593
|
-
| Thirteen
|
|
594
|
-
| Fifteen
|
|
595
|
-
| Twelve;
|
|
595
|
+
| TwentyFour;
|
|
596
596
|
|
|
597
597
|
export type DataFunction = {
|
|
598
598
|
id: string;
|
|
@@ -600,11 +600,21 @@ export type DataFunction = {
|
|
|
600
600
|
created?: string | undefined;
|
|
601
601
|
updated?: string | undefined;
|
|
602
602
|
guardrailConfig?:
|
|
603
|
-
| GetEvalsGuardrailConfigEvalsResponseBoolean
|
|
604
603
|
| GetEvalsGuardrailConfigEvalsResponseNumber
|
|
604
|
+
| GetEvalsGuardrailConfigEvalsResponseBoolean
|
|
605
605
|
| undefined;
|
|
606
606
|
type: GetEvalsDataEvalsResponse200Type;
|
|
607
607
|
functionParams:
|
|
608
|
+
| Twelve
|
|
609
|
+
| FunctionParams1
|
|
610
|
+
| FunctionParams2
|
|
611
|
+
| FunctionParams3
|
|
612
|
+
| FunctionParams4
|
|
613
|
+
| Eight
|
|
614
|
+
| Nine
|
|
615
|
+
| Eleven
|
|
616
|
+
| Thirteen
|
|
617
|
+
| Fifteen
|
|
608
618
|
| Five
|
|
609
619
|
| Six
|
|
610
620
|
| Seven
|
|
@@ -618,17 +628,7 @@ export type DataFunction = {
|
|
|
618
628
|
| TwentyOne
|
|
619
629
|
| TwentyTwo
|
|
620
630
|
| TwentyThree
|
|
621
|
-
| TwentyFour
|
|
622
|
-
| FunctionParams1
|
|
623
|
-
| FunctionParams2
|
|
624
|
-
| FunctionParams3
|
|
625
|
-
| FunctionParams4
|
|
626
|
-
| Eight
|
|
627
|
-
| Nine
|
|
628
|
-
| Eleven
|
|
629
|
-
| Thirteen
|
|
630
|
-
| Fifteen
|
|
631
|
-
| Twelve;
|
|
631
|
+
| TwentyFour;
|
|
632
632
|
key: string;
|
|
633
633
|
};
|
|
634
634
|
|
|
@@ -677,8 +677,8 @@ export type GetEvalsGuardrailConfigEvalsBoolean = {
|
|
|
677
677
|
};
|
|
678
678
|
|
|
679
679
|
export type GetEvalsDataEvalsGuardrailConfig =
|
|
680
|
-
|
|
|
681
|
-
|
|
|
680
|
+
| GetEvalsGuardrailConfigEvalsNumber
|
|
681
|
+
| GetEvalsGuardrailConfigEvalsBoolean;
|
|
682
682
|
|
|
683
683
|
export const GetEvalsDataEvalsResponseType = {
|
|
684
684
|
PythonEval: "python_eval",
|
|
@@ -693,8 +693,8 @@ export type DataPython = {
|
|
|
693
693
|
created?: string | undefined;
|
|
694
694
|
updated?: string | undefined;
|
|
695
695
|
guardrailConfig?:
|
|
696
|
-
| GetEvalsGuardrailConfigEvalsBoolean
|
|
697
696
|
| GetEvalsGuardrailConfigEvalsNumber
|
|
697
|
+
| GetEvalsGuardrailConfigEvalsBoolean
|
|
698
698
|
| undefined;
|
|
699
699
|
code: string;
|
|
700
700
|
type: GetEvalsDataEvalsResponseType;
|
|
@@ -740,8 +740,8 @@ export type GetEvalsGuardrailConfigBoolean = {
|
|
|
740
740
|
};
|
|
741
741
|
|
|
742
742
|
export type GetEvalsDataGuardrailConfig =
|
|
743
|
-
|
|
|
744
|
-
|
|
|
743
|
+
| GetEvalsGuardrailConfigNumber
|
|
744
|
+
| GetEvalsGuardrailConfigBoolean;
|
|
745
745
|
|
|
746
746
|
export const GetEvalsDataEvalsType = {
|
|
747
747
|
HttpEval: "http_eval",
|
|
@@ -760,8 +760,8 @@ export type DataHTTP = {
|
|
|
760
760
|
created?: string | undefined;
|
|
761
761
|
updated?: string | undefined;
|
|
762
762
|
guardrailConfig?:
|
|
763
|
-
| GetEvalsGuardrailConfigBoolean
|
|
764
763
|
| GetEvalsGuardrailConfigNumber
|
|
764
|
+
| GetEvalsGuardrailConfigBoolean
|
|
765
765
|
| undefined;
|
|
766
766
|
type: GetEvalsDataEvalsType;
|
|
767
767
|
url: string;
|
|
@@ -816,8 +816,8 @@ export type GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDa
|
|
|
816
816
|
};
|
|
817
817
|
|
|
818
818
|
export type DataGuardrailConfig =
|
|
819
|
-
|
|
|
820
|
-
|
|
|
819
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber
|
|
820
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean;
|
|
821
821
|
|
|
822
822
|
export const GetEvalsDataType = {
|
|
823
823
|
JsonSchema: "json_schema",
|
|
@@ -830,8 +830,8 @@ export type DataJSON = {
|
|
|
830
830
|
created?: string | undefined;
|
|
831
831
|
updated?: string | undefined;
|
|
832
832
|
guardrailConfig?:
|
|
833
|
-
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean
|
|
834
833
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber
|
|
834
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean
|
|
835
835
|
| undefined;
|
|
836
836
|
type: GetEvalsDataType;
|
|
837
837
|
schema: string;
|
|
@@ -886,8 +886,8 @@ export type GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBo
|
|
|
886
886
|
};
|
|
887
887
|
|
|
888
888
|
export type GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfig =
|
|
889
|
-
|
|
|
890
|
-
|
|
|
889
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber
|
|
890
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean;
|
|
891
891
|
|
|
892
892
|
export const DataType = {
|
|
893
893
|
LlmEval: "llm_eval",
|
|
@@ -900,8 +900,8 @@ export type DataLLM = {
|
|
|
900
900
|
created?: string | undefined;
|
|
901
901
|
updated?: string | undefined;
|
|
902
902
|
guardrailConfig?:
|
|
903
|
-
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean
|
|
904
903
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber
|
|
904
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean
|
|
905
905
|
| undefined;
|
|
906
906
|
type: DataType;
|
|
907
907
|
prompt: string;
|
|
@@ -910,13 +910,13 @@ export type DataLLM = {
|
|
|
910
910
|
};
|
|
911
911
|
|
|
912
912
|
export type GetEvalsData =
|
|
913
|
+
| DataHTTP
|
|
914
|
+
| DataLLM
|
|
915
|
+
| Ragas
|
|
913
916
|
| DataJSON
|
|
914
917
|
| DataPython
|
|
915
918
|
| DataFunction
|
|
916
|
-
| Typescript
|
|
917
|
-
| DataLLM
|
|
918
|
-
| Ragas
|
|
919
|
-
| DataHTTP;
|
|
919
|
+
| Typescript;
|
|
920
920
|
|
|
921
921
|
/**
|
|
922
922
|
* Returns a list of evals
|
|
@@ -924,13 +924,13 @@ export type GetEvalsData =
|
|
|
924
924
|
export type GetEvalsResponseBody = {
|
|
925
925
|
object: GetEvalsObject;
|
|
926
926
|
data: Array<
|
|
927
|
+
| DataHTTP
|
|
928
|
+
| DataLLM
|
|
929
|
+
| Ragas
|
|
927
930
|
| DataJSON
|
|
928
931
|
| DataPython
|
|
929
932
|
| DataFunction
|
|
930
933
|
| Typescript
|
|
931
|
-
| DataLLM
|
|
932
|
-
| Ragas
|
|
933
|
-
| DataHTTP
|
|
934
934
|
>;
|
|
935
935
|
hasMore: boolean;
|
|
936
936
|
};
|
|
@@ -1271,17 +1271,17 @@ export const GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig$inboundS
|
|
|
1271
1271
|
unknown
|
|
1272
1272
|
> = z.union([
|
|
1273
1273
|
z.lazy(() =>
|
|
1274
|
-
|
|
1274
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
1275
1275
|
),
|
|
1276
1276
|
z.lazy(() =>
|
|
1277
|
-
|
|
1277
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
1278
1278
|
),
|
|
1279
1279
|
]);
|
|
1280
1280
|
|
|
1281
1281
|
/** @internal */
|
|
1282
1282
|
export type GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig$Outbound =
|
|
1283
|
-
|
|
|
1284
|
-
|
|
|
1283
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$Outbound
|
|
1284
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$Outbound;
|
|
1285
1285
|
|
|
1286
1286
|
/** @internal */
|
|
1287
1287
|
export const GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig$outboundSchema:
|
|
@@ -1291,10 +1291,10 @@ export const GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig$outbound
|
|
|
1291
1291
|
GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig
|
|
1292
1292
|
> = z.union([
|
|
1293
1293
|
z.lazy(() =>
|
|
1294
|
-
|
|
1294
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
1295
1295
|
),
|
|
1296
1296
|
z.lazy(() =>
|
|
1297
|
-
|
|
1297
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
1298
1298
|
),
|
|
1299
1299
|
]);
|
|
1300
1300
|
|
|
@@ -1372,14 +1372,14 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
1372
1372
|
> = z.object({
|
|
1373
1373
|
_id: z.string(),
|
|
1374
1374
|
description: z.string(),
|
|
1375
|
-
created: z.string().default("2025-06-
|
|
1376
|
-
updated: z.string().default("2025-06-
|
|
1375
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
1376
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
1377
1377
|
guardrail_config: z.union([
|
|
1378
1378
|
z.lazy(() =>
|
|
1379
|
-
|
|
1379
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
1380
1380
|
),
|
|
1381
1381
|
z.lazy(() =>
|
|
1382
|
-
|
|
1382
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
1383
1383
|
),
|
|
1384
1384
|
]).optional(),
|
|
1385
1385
|
code: z.string(),
|
|
@@ -1400,8 +1400,8 @@ export type Typescript$Outbound = {
|
|
|
1400
1400
|
created: string;
|
|
1401
1401
|
updated: string;
|
|
1402
1402
|
guardrail_config?:
|
|
1403
|
-
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$Outbound
|
|
1404
1403
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$Outbound
|
|
1404
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$Outbound
|
|
1405
1405
|
| undefined;
|
|
1406
1406
|
code: string;
|
|
1407
1407
|
type: string;
|
|
@@ -1416,14 +1416,14 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
1416
1416
|
> = z.object({
|
|
1417
1417
|
id: z.string(),
|
|
1418
1418
|
description: z.string(),
|
|
1419
|
-
created: z.string().default("2025-06-
|
|
1420
|
-
updated: z.string().default("2025-06-
|
|
1419
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
1420
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
1421
1421
|
guardrailConfig: z.union([
|
|
1422
1422
|
z.lazy(() =>
|
|
1423
|
-
|
|
1423
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
1424
1424
|
),
|
|
1425
1425
|
z.lazy(() =>
|
|
1426
|
-
|
|
1426
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
1427
1427
|
),
|
|
1428
1428
|
]).optional(),
|
|
1429
1429
|
code: z.string(),
|
|
@@ -1704,14 +1704,14 @@ export const GetEvalsDataEvalsResponse200GuardrailConfig$inboundSchema:
|
|
|
1704
1704
|
z.ZodTypeDef,
|
|
1705
1705
|
unknown
|
|
1706
1706
|
> = z.union([
|
|
1707
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
1708
1707
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1708
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
1709
1709
|
]);
|
|
1710
1710
|
|
|
1711
1711
|
/** @internal */
|
|
1712
1712
|
export type GetEvalsDataEvalsResponse200GuardrailConfig$Outbound =
|
|
1713
|
-
|
|
|
1714
|
-
|
|
|
1713
|
+
| GetEvalsGuardrailConfigEvalsResponse200Number$Outbound
|
|
1714
|
+
| GetEvalsGuardrailConfigEvalsResponse200Boolean$Outbound;
|
|
1715
1715
|
|
|
1716
1716
|
/** @internal */
|
|
1717
1717
|
export const GetEvalsDataEvalsResponse200GuardrailConfig$outboundSchema:
|
|
@@ -1720,8 +1720,8 @@ export const GetEvalsDataEvalsResponse200GuardrailConfig$outboundSchema:
|
|
|
1720
1720
|
z.ZodTypeDef,
|
|
1721
1721
|
GetEvalsDataEvalsResponse200GuardrailConfig
|
|
1722
1722
|
> = z.union([
|
|
1723
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
1724
1723
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1724
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
1725
1725
|
]);
|
|
1726
1726
|
|
|
1727
1727
|
/**
|
|
@@ -1813,13 +1813,13 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
1813
1813
|
.object({
|
|
1814
1814
|
_id: z.string(),
|
|
1815
1815
|
description: z.string(),
|
|
1816
|
-
created: z.string().default("2025-06-
|
|
1817
|
-
updated: z.string().default("2025-06-
|
|
1816
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
1817
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
1818
1818
|
guardrail_config: z.union([
|
|
1819
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1819
1820
|
z.lazy(() =>
|
|
1820
1821
|
GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
1821
1822
|
),
|
|
1822
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
1823
1823
|
]).optional(),
|
|
1824
1824
|
type: GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema,
|
|
1825
1825
|
ragas_metric: RagasMetric$inboundSchema,
|
|
@@ -1840,8 +1840,8 @@ export type Ragas$Outbound = {
|
|
|
1840
1840
|
created: string;
|
|
1841
1841
|
updated: string;
|
|
1842
1842
|
guardrail_config?:
|
|
1843
|
-
| GetEvalsGuardrailConfigEvalsResponse200Boolean$Outbound
|
|
1844
1843
|
| GetEvalsGuardrailConfigEvalsResponse200Number$Outbound
|
|
1844
|
+
| GetEvalsGuardrailConfigEvalsResponse200Boolean$Outbound
|
|
1845
1845
|
| undefined;
|
|
1846
1846
|
type: string;
|
|
1847
1847
|
ragas_metric: string;
|
|
@@ -1857,11 +1857,11 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
1857
1857
|
> = z.object({
|
|
1858
1858
|
id: z.string(),
|
|
1859
1859
|
description: z.string(),
|
|
1860
|
-
created: z.string().default("2025-06-
|
|
1861
|
-
updated: z.string().default("2025-06-
|
|
1860
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
1861
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
1862
1862
|
guardrailConfig: z.union([
|
|
1863
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
1864
1863
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
1864
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
1865
1865
|
]).optional(),
|
|
1866
1866
|
type: GetEvalsDataEvalsResponse200ApplicationJSONType$outboundSchema,
|
|
1867
1867
|
ragasMetric: RagasMetric$outboundSchema,
|
|
@@ -2137,14 +2137,14 @@ export const GetEvalsDataEvalsResponseGuardrailConfig$inboundSchema: z.ZodType<
|
|
|
2137
2137
|
z.ZodTypeDef,
|
|
2138
2138
|
unknown
|
|
2139
2139
|
> = z.union([
|
|
2140
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
2141
2140
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
2141
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
2142
2142
|
]);
|
|
2143
2143
|
|
|
2144
2144
|
/** @internal */
|
|
2145
2145
|
export type GetEvalsDataEvalsResponseGuardrailConfig$Outbound =
|
|
2146
|
-
|
|
|
2147
|
-
|
|
|
2146
|
+
| GetEvalsGuardrailConfigEvalsResponseNumber$Outbound
|
|
2147
|
+
| GetEvalsGuardrailConfigEvalsResponseBoolean$Outbound;
|
|
2148
2148
|
|
|
2149
2149
|
/** @internal */
|
|
2150
2150
|
export const GetEvalsDataEvalsResponseGuardrailConfig$outboundSchema: z.ZodType<
|
|
@@ -2152,8 +2152,8 @@ export const GetEvalsDataEvalsResponseGuardrailConfig$outboundSchema: z.ZodType<
|
|
|
2152
2152
|
z.ZodTypeDef,
|
|
2153
2153
|
GetEvalsDataEvalsResponseGuardrailConfig
|
|
2154
2154
|
> = z.union([
|
|
2155
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
2156
2155
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
2156
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
2157
2157
|
]);
|
|
2158
2158
|
|
|
2159
2159
|
/**
|
|
@@ -4097,6 +4097,16 @@ export const DataFunctionParams$inboundSchema: z.ZodType<
|
|
|
4097
4097
|
z.ZodTypeDef,
|
|
4098
4098
|
unknown
|
|
4099
4099
|
> = z.union([
|
|
4100
|
+
z.lazy(() => Twelve$inboundSchema),
|
|
4101
|
+
z.lazy(() => FunctionParams1$inboundSchema),
|
|
4102
|
+
z.lazy(() => FunctionParams2$inboundSchema),
|
|
4103
|
+
z.lazy(() => FunctionParams3$inboundSchema),
|
|
4104
|
+
z.lazy(() => FunctionParams4$inboundSchema),
|
|
4105
|
+
z.lazy(() => Eight$inboundSchema),
|
|
4106
|
+
z.lazy(() => Nine$inboundSchema),
|
|
4107
|
+
z.lazy(() => Eleven$inboundSchema),
|
|
4108
|
+
z.lazy(() => Thirteen$inboundSchema),
|
|
4109
|
+
z.lazy(() => Fifteen$inboundSchema),
|
|
4100
4110
|
z.lazy(() => Five$inboundSchema),
|
|
4101
4111
|
z.lazy(() => Six$inboundSchema),
|
|
4102
4112
|
z.lazy(() => Seven$inboundSchema),
|
|
@@ -4111,20 +4121,20 @@ export const DataFunctionParams$inboundSchema: z.ZodType<
|
|
|
4111
4121
|
z.lazy(() => TwentyTwo$inboundSchema),
|
|
4112
4122
|
z.lazy(() => TwentyThree$inboundSchema),
|
|
4113
4123
|
z.lazy(() => TwentyFour$inboundSchema),
|
|
4114
|
-
z.lazy(() => FunctionParams1$inboundSchema),
|
|
4115
|
-
z.lazy(() => FunctionParams2$inboundSchema),
|
|
4116
|
-
z.lazy(() => FunctionParams3$inboundSchema),
|
|
4117
|
-
z.lazy(() => FunctionParams4$inboundSchema),
|
|
4118
|
-
z.lazy(() => Eight$inboundSchema),
|
|
4119
|
-
z.lazy(() => Nine$inboundSchema),
|
|
4120
|
-
z.lazy(() => Eleven$inboundSchema),
|
|
4121
|
-
z.lazy(() => Thirteen$inboundSchema),
|
|
4122
|
-
z.lazy(() => Fifteen$inboundSchema),
|
|
4123
|
-
z.lazy(() => Twelve$inboundSchema),
|
|
4124
4124
|
]);
|
|
4125
4125
|
|
|
4126
4126
|
/** @internal */
|
|
4127
4127
|
export type DataFunctionParams$Outbound =
|
|
4128
|
+
| Twelve$Outbound
|
|
4129
|
+
| FunctionParams1$Outbound
|
|
4130
|
+
| FunctionParams2$Outbound
|
|
4131
|
+
| FunctionParams3$Outbound
|
|
4132
|
+
| FunctionParams4$Outbound
|
|
4133
|
+
| Eight$Outbound
|
|
4134
|
+
| Nine$Outbound
|
|
4135
|
+
| Eleven$Outbound
|
|
4136
|
+
| Thirteen$Outbound
|
|
4137
|
+
| Fifteen$Outbound
|
|
4128
4138
|
| Five$Outbound
|
|
4129
4139
|
| Six$Outbound
|
|
4130
4140
|
| Seven$Outbound
|
|
@@ -4138,17 +4148,7 @@ export type DataFunctionParams$Outbound =
|
|
|
4138
4148
|
| TwentyOne$Outbound
|
|
4139
4149
|
| TwentyTwo$Outbound
|
|
4140
4150
|
| TwentyThree$Outbound
|
|
4141
|
-
| TwentyFour$Outbound
|
|
4142
|
-
| FunctionParams1$Outbound
|
|
4143
|
-
| FunctionParams2$Outbound
|
|
4144
|
-
| FunctionParams3$Outbound
|
|
4145
|
-
| FunctionParams4$Outbound
|
|
4146
|
-
| Eight$Outbound
|
|
4147
|
-
| Nine$Outbound
|
|
4148
|
-
| Eleven$Outbound
|
|
4149
|
-
| Thirteen$Outbound
|
|
4150
|
-
| Fifteen$Outbound
|
|
4151
|
-
| Twelve$Outbound;
|
|
4151
|
+
| TwentyFour$Outbound;
|
|
4152
4152
|
|
|
4153
4153
|
/** @internal */
|
|
4154
4154
|
export const DataFunctionParams$outboundSchema: z.ZodType<
|
|
@@ -4156,6 +4156,16 @@ export const DataFunctionParams$outboundSchema: z.ZodType<
|
|
|
4156
4156
|
z.ZodTypeDef,
|
|
4157
4157
|
DataFunctionParams
|
|
4158
4158
|
> = z.union([
|
|
4159
|
+
z.lazy(() => Twelve$outboundSchema),
|
|
4160
|
+
z.lazy(() => FunctionParams1$outboundSchema),
|
|
4161
|
+
z.lazy(() => FunctionParams2$outboundSchema),
|
|
4162
|
+
z.lazy(() => FunctionParams3$outboundSchema),
|
|
4163
|
+
z.lazy(() => FunctionParams4$outboundSchema),
|
|
4164
|
+
z.lazy(() => Eight$outboundSchema),
|
|
4165
|
+
z.lazy(() => Nine$outboundSchema),
|
|
4166
|
+
z.lazy(() => Eleven$outboundSchema),
|
|
4167
|
+
z.lazy(() => Thirteen$outboundSchema),
|
|
4168
|
+
z.lazy(() => Fifteen$outboundSchema),
|
|
4159
4169
|
z.lazy(() => Five$outboundSchema),
|
|
4160
4170
|
z.lazy(() => Six$outboundSchema),
|
|
4161
4171
|
z.lazy(() => Seven$outboundSchema),
|
|
@@ -4170,16 +4180,6 @@ export const DataFunctionParams$outboundSchema: z.ZodType<
|
|
|
4170
4180
|
z.lazy(() => TwentyTwo$outboundSchema),
|
|
4171
4181
|
z.lazy(() => TwentyThree$outboundSchema),
|
|
4172
4182
|
z.lazy(() => TwentyFour$outboundSchema),
|
|
4173
|
-
z.lazy(() => FunctionParams1$outboundSchema),
|
|
4174
|
-
z.lazy(() => FunctionParams2$outboundSchema),
|
|
4175
|
-
z.lazy(() => FunctionParams3$outboundSchema),
|
|
4176
|
-
z.lazy(() => FunctionParams4$outboundSchema),
|
|
4177
|
-
z.lazy(() => Eight$outboundSchema),
|
|
4178
|
-
z.lazy(() => Nine$outboundSchema),
|
|
4179
|
-
z.lazy(() => Eleven$outboundSchema),
|
|
4180
|
-
z.lazy(() => Thirteen$outboundSchema),
|
|
4181
|
-
z.lazy(() => Fifteen$outboundSchema),
|
|
4182
|
-
z.lazy(() => Twelve$outboundSchema),
|
|
4183
4183
|
]);
|
|
4184
4184
|
|
|
4185
4185
|
/**
|
|
@@ -4221,14 +4221,24 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
4221
4221
|
> = z.object({
|
|
4222
4222
|
_id: z.string(),
|
|
4223
4223
|
description: z.string(),
|
|
4224
|
-
created: z.string().default("2025-06-
|
|
4225
|
-
updated: z.string().default("2025-06-
|
|
4224
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
4225
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
4226
4226
|
guardrail_config: z.union([
|
|
4227
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
4228
4227
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
4228
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
4229
4229
|
]).optional(),
|
|
4230
4230
|
type: GetEvalsDataEvalsResponse200Type$inboundSchema,
|
|
4231
4231
|
function_params: z.union([
|
|
4232
|
+
z.lazy(() => Twelve$inboundSchema),
|
|
4233
|
+
z.lazy(() => FunctionParams1$inboundSchema),
|
|
4234
|
+
z.lazy(() => FunctionParams2$inboundSchema),
|
|
4235
|
+
z.lazy(() => FunctionParams3$inboundSchema),
|
|
4236
|
+
z.lazy(() => FunctionParams4$inboundSchema),
|
|
4237
|
+
z.lazy(() => Eight$inboundSchema),
|
|
4238
|
+
z.lazy(() => Nine$inboundSchema),
|
|
4239
|
+
z.lazy(() => Eleven$inboundSchema),
|
|
4240
|
+
z.lazy(() => Thirteen$inboundSchema),
|
|
4241
|
+
z.lazy(() => Fifteen$inboundSchema),
|
|
4232
4242
|
z.lazy(() => Five$inboundSchema),
|
|
4233
4243
|
z.lazy(() => Six$inboundSchema),
|
|
4234
4244
|
z.lazy(() => Seven$inboundSchema),
|
|
@@ -4243,16 +4253,6 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
4243
4253
|
z.lazy(() => TwentyTwo$inboundSchema),
|
|
4244
4254
|
z.lazy(() => TwentyThree$inboundSchema),
|
|
4245
4255
|
z.lazy(() => TwentyFour$inboundSchema),
|
|
4246
|
-
z.lazy(() => FunctionParams1$inboundSchema),
|
|
4247
|
-
z.lazy(() => FunctionParams2$inboundSchema),
|
|
4248
|
-
z.lazy(() => FunctionParams3$inboundSchema),
|
|
4249
|
-
z.lazy(() => FunctionParams4$inboundSchema),
|
|
4250
|
-
z.lazy(() => Eight$inboundSchema),
|
|
4251
|
-
z.lazy(() => Nine$inboundSchema),
|
|
4252
|
-
z.lazy(() => Eleven$inboundSchema),
|
|
4253
|
-
z.lazy(() => Thirteen$inboundSchema),
|
|
4254
|
-
z.lazy(() => Fifteen$inboundSchema),
|
|
4255
|
-
z.lazy(() => Twelve$inboundSchema),
|
|
4256
4256
|
]),
|
|
4257
4257
|
key: z.string(),
|
|
4258
4258
|
}).transform((v) => {
|
|
@@ -4270,11 +4270,21 @@ export type DataFunction$Outbound = {
|
|
|
4270
4270
|
created: string;
|
|
4271
4271
|
updated: string;
|
|
4272
4272
|
guardrail_config?:
|
|
4273
|
-
| GetEvalsGuardrailConfigEvalsResponseBoolean$Outbound
|
|
4274
4273
|
| GetEvalsGuardrailConfigEvalsResponseNumber$Outbound
|
|
4274
|
+
| GetEvalsGuardrailConfigEvalsResponseBoolean$Outbound
|
|
4275
4275
|
| undefined;
|
|
4276
4276
|
type: string;
|
|
4277
4277
|
function_params:
|
|
4278
|
+
| Twelve$Outbound
|
|
4279
|
+
| FunctionParams1$Outbound
|
|
4280
|
+
| FunctionParams2$Outbound
|
|
4281
|
+
| FunctionParams3$Outbound
|
|
4282
|
+
| FunctionParams4$Outbound
|
|
4283
|
+
| Eight$Outbound
|
|
4284
|
+
| Nine$Outbound
|
|
4285
|
+
| Eleven$Outbound
|
|
4286
|
+
| Thirteen$Outbound
|
|
4287
|
+
| Fifteen$Outbound
|
|
4278
4288
|
| Five$Outbound
|
|
4279
4289
|
| Six$Outbound
|
|
4280
4290
|
| Seven$Outbound
|
|
@@ -4288,17 +4298,7 @@ export type DataFunction$Outbound = {
|
|
|
4288
4298
|
| TwentyOne$Outbound
|
|
4289
4299
|
| TwentyTwo$Outbound
|
|
4290
4300
|
| TwentyThree$Outbound
|
|
4291
|
-
| TwentyFour$Outbound
|
|
4292
|
-
| FunctionParams1$Outbound
|
|
4293
|
-
| FunctionParams2$Outbound
|
|
4294
|
-
| FunctionParams3$Outbound
|
|
4295
|
-
| FunctionParams4$Outbound
|
|
4296
|
-
| Eight$Outbound
|
|
4297
|
-
| Nine$Outbound
|
|
4298
|
-
| Eleven$Outbound
|
|
4299
|
-
| Thirteen$Outbound
|
|
4300
|
-
| Fifteen$Outbound
|
|
4301
|
-
| Twelve$Outbound;
|
|
4301
|
+
| TwentyFour$Outbound;
|
|
4302
4302
|
key: string;
|
|
4303
4303
|
};
|
|
4304
4304
|
|
|
@@ -4310,14 +4310,24 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
4310
4310
|
> = z.object({
|
|
4311
4311
|
id: z.string(),
|
|
4312
4312
|
description: z.string(),
|
|
4313
|
-
created: z.string().default("2025-06-
|
|
4314
|
-
updated: z.string().default("2025-06-
|
|
4313
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
4314
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
4315
4315
|
guardrailConfig: z.union([
|
|
4316
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
4317
4316
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
4317
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
4318
4318
|
]).optional(),
|
|
4319
4319
|
type: GetEvalsDataEvalsResponse200Type$outboundSchema,
|
|
4320
4320
|
functionParams: z.union([
|
|
4321
|
+
z.lazy(() => Twelve$outboundSchema),
|
|
4322
|
+
z.lazy(() => FunctionParams1$outboundSchema),
|
|
4323
|
+
z.lazy(() => FunctionParams2$outboundSchema),
|
|
4324
|
+
z.lazy(() => FunctionParams3$outboundSchema),
|
|
4325
|
+
z.lazy(() => FunctionParams4$outboundSchema),
|
|
4326
|
+
z.lazy(() => Eight$outboundSchema),
|
|
4327
|
+
z.lazy(() => Nine$outboundSchema),
|
|
4328
|
+
z.lazy(() => Eleven$outboundSchema),
|
|
4329
|
+
z.lazy(() => Thirteen$outboundSchema),
|
|
4330
|
+
z.lazy(() => Fifteen$outboundSchema),
|
|
4321
4331
|
z.lazy(() => Five$outboundSchema),
|
|
4322
4332
|
z.lazy(() => Six$outboundSchema),
|
|
4323
4333
|
z.lazy(() => Seven$outboundSchema),
|
|
@@ -4332,16 +4342,6 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
4332
4342
|
z.lazy(() => TwentyTwo$outboundSchema),
|
|
4333
4343
|
z.lazy(() => TwentyThree$outboundSchema),
|
|
4334
4344
|
z.lazy(() => TwentyFour$outboundSchema),
|
|
4335
|
-
z.lazy(() => FunctionParams1$outboundSchema),
|
|
4336
|
-
z.lazy(() => FunctionParams2$outboundSchema),
|
|
4337
|
-
z.lazy(() => FunctionParams3$outboundSchema),
|
|
4338
|
-
z.lazy(() => FunctionParams4$outboundSchema),
|
|
4339
|
-
z.lazy(() => Eight$outboundSchema),
|
|
4340
|
-
z.lazy(() => Nine$outboundSchema),
|
|
4341
|
-
z.lazy(() => Eleven$outboundSchema),
|
|
4342
|
-
z.lazy(() => Thirteen$outboundSchema),
|
|
4343
|
-
z.lazy(() => Fifteen$outboundSchema),
|
|
4344
|
-
z.lazy(() => Twelve$outboundSchema),
|
|
4345
4345
|
]),
|
|
4346
4346
|
key: z.string(),
|
|
4347
4347
|
}).transform((v) => {
|
|
@@ -4601,14 +4601,14 @@ export const GetEvalsDataEvalsGuardrailConfig$inboundSchema: z.ZodType<
|
|
|
4601
4601
|
z.ZodTypeDef,
|
|
4602
4602
|
unknown
|
|
4603
4603
|
> = z.union([
|
|
4604
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
4605
4604
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
4605
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
4606
4606
|
]);
|
|
4607
4607
|
|
|
4608
4608
|
/** @internal */
|
|
4609
4609
|
export type GetEvalsDataEvalsGuardrailConfig$Outbound =
|
|
4610
|
-
|
|
|
4611
|
-
|
|
|
4610
|
+
| GetEvalsGuardrailConfigEvalsNumber$Outbound
|
|
4611
|
+
| GetEvalsGuardrailConfigEvalsBoolean$Outbound;
|
|
4612
4612
|
|
|
4613
4613
|
/** @internal */
|
|
4614
4614
|
export const GetEvalsDataEvalsGuardrailConfig$outboundSchema: z.ZodType<
|
|
@@ -4616,8 +4616,8 @@ export const GetEvalsDataEvalsGuardrailConfig$outboundSchema: z.ZodType<
|
|
|
4616
4616
|
z.ZodTypeDef,
|
|
4617
4617
|
GetEvalsDataEvalsGuardrailConfig
|
|
4618
4618
|
> = z.union([
|
|
4619
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
4620
4619
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
4620
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
4621
4621
|
]);
|
|
4622
4622
|
|
|
4623
4623
|
/**
|
|
@@ -4682,11 +4682,11 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
4682
4682
|
> = z.object({
|
|
4683
4683
|
_id: z.string(),
|
|
4684
4684
|
description: z.string(),
|
|
4685
|
-
created: z.string().default("2025-06-
|
|
4686
|
-
updated: z.string().default("2025-06-
|
|
4685
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
4686
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
4687
4687
|
guardrail_config: z.union([
|
|
4688
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
4689
4688
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
4689
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
4690
4690
|
]).optional(),
|
|
4691
4691
|
code: z.string(),
|
|
4692
4692
|
type: GetEvalsDataEvalsResponseType$inboundSchema,
|
|
@@ -4705,8 +4705,8 @@ export type DataPython$Outbound = {
|
|
|
4705
4705
|
created: string;
|
|
4706
4706
|
updated: string;
|
|
4707
4707
|
guardrail_config?:
|
|
4708
|
-
| GetEvalsGuardrailConfigEvalsBoolean$Outbound
|
|
4709
4708
|
| GetEvalsGuardrailConfigEvalsNumber$Outbound
|
|
4709
|
+
| GetEvalsGuardrailConfigEvalsBoolean$Outbound
|
|
4710
4710
|
| undefined;
|
|
4711
4711
|
code: string;
|
|
4712
4712
|
type: string;
|
|
@@ -4721,11 +4721,11 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
4721
4721
|
> = z.object({
|
|
4722
4722
|
id: z.string(),
|
|
4723
4723
|
description: z.string(),
|
|
4724
|
-
created: z.string().default("2025-06-
|
|
4725
|
-
updated: z.string().default("2025-06-
|
|
4724
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
4725
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
4726
4726
|
guardrailConfig: z.union([
|
|
4727
|
-
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
4728
4727
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
4728
|
+
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
4729
4729
|
]).optional(),
|
|
4730
4730
|
code: z.string(),
|
|
4731
4731
|
type: GetEvalsDataEvalsResponseType$outboundSchema,
|
|
@@ -4968,14 +4968,14 @@ export const GetEvalsDataGuardrailConfig$inboundSchema: z.ZodType<
|
|
|
4968
4968
|
z.ZodTypeDef,
|
|
4969
4969
|
unknown
|
|
4970
4970
|
> = z.union([
|
|
4971
|
-
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
4972
4971
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
4972
|
+
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
4973
4973
|
]);
|
|
4974
4974
|
|
|
4975
4975
|
/** @internal */
|
|
4976
4976
|
export type GetEvalsDataGuardrailConfig$Outbound =
|
|
4977
|
-
|
|
|
4978
|
-
|
|
|
4977
|
+
| GetEvalsGuardrailConfigNumber$Outbound
|
|
4978
|
+
| GetEvalsGuardrailConfigBoolean$Outbound;
|
|
4979
4979
|
|
|
4980
4980
|
/** @internal */
|
|
4981
4981
|
export const GetEvalsDataGuardrailConfig$outboundSchema: z.ZodType<
|
|
@@ -4983,8 +4983,8 @@ export const GetEvalsDataGuardrailConfig$outboundSchema: z.ZodType<
|
|
|
4983
4983
|
z.ZodTypeDef,
|
|
4984
4984
|
GetEvalsDataGuardrailConfig
|
|
4985
4985
|
> = z.union([
|
|
4986
|
-
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
4987
4986
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
4987
|
+
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
4988
4988
|
]);
|
|
4989
4989
|
|
|
4990
4990
|
/**
|
|
@@ -5068,11 +5068,11 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
5068
5068
|
> = z.object({
|
|
5069
5069
|
_id: z.string(),
|
|
5070
5070
|
description: z.string(),
|
|
5071
|
-
created: z.string().default("2025-06-
|
|
5072
|
-
updated: z.string().default("2025-06-
|
|
5071
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5072
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5073
5073
|
guardrail_config: z.union([
|
|
5074
|
-
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
5075
5074
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
5075
|
+
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
5076
5076
|
]).optional(),
|
|
5077
5077
|
type: GetEvalsDataEvalsType$inboundSchema,
|
|
5078
5078
|
url: z.string(),
|
|
@@ -5094,8 +5094,8 @@ export type DataHTTP$Outbound = {
|
|
|
5094
5094
|
created: string;
|
|
5095
5095
|
updated: string;
|
|
5096
5096
|
guardrail_config?:
|
|
5097
|
-
| GetEvalsGuardrailConfigBoolean$Outbound
|
|
5098
5097
|
| GetEvalsGuardrailConfigNumber$Outbound
|
|
5098
|
+
| GetEvalsGuardrailConfigBoolean$Outbound
|
|
5099
5099
|
| undefined;
|
|
5100
5100
|
type: string;
|
|
5101
5101
|
url: string;
|
|
@@ -5113,11 +5113,11 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
5113
5113
|
> = z.object({
|
|
5114
5114
|
id: z.string(),
|
|
5115
5115
|
description: z.string(),
|
|
5116
|
-
created: z.string().default("2025-06-
|
|
5117
|
-
updated: z.string().default("2025-06-
|
|
5116
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5117
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5118
5118
|
guardrailConfig: z.union([
|
|
5119
|
-
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
5120
5119
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
5120
|
+
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
5121
5121
|
]).optional(),
|
|
5122
5122
|
type: GetEvalsDataEvalsType$outboundSchema,
|
|
5123
5123
|
url: z.string(),
|
|
@@ -5393,17 +5393,17 @@ export const DataGuardrailConfig$inboundSchema: z.ZodType<
|
|
|
5393
5393
|
unknown
|
|
5394
5394
|
> = z.union([
|
|
5395
5395
|
z.lazy(() =>
|
|
5396
|
-
|
|
5396
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
5397
5397
|
),
|
|
5398
5398
|
z.lazy(() =>
|
|
5399
|
-
|
|
5399
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
5400
5400
|
),
|
|
5401
5401
|
]);
|
|
5402
5402
|
|
|
5403
5403
|
/** @internal */
|
|
5404
5404
|
export type DataGuardrailConfig$Outbound =
|
|
5405
|
-
|
|
|
5406
|
-
|
|
|
5405
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$Outbound
|
|
5406
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$Outbound;
|
|
5407
5407
|
|
|
5408
5408
|
/** @internal */
|
|
5409
5409
|
export const DataGuardrailConfig$outboundSchema: z.ZodType<
|
|
@@ -5412,10 +5412,10 @@ export const DataGuardrailConfig$outboundSchema: z.ZodType<
|
|
|
5412
5412
|
DataGuardrailConfig
|
|
5413
5413
|
> = z.union([
|
|
5414
5414
|
z.lazy(() =>
|
|
5415
|
-
|
|
5415
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
5416
5416
|
),
|
|
5417
5417
|
z.lazy(() =>
|
|
5418
|
-
|
|
5418
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema
|
|
5419
5419
|
),
|
|
5420
5420
|
]);
|
|
5421
5421
|
|
|
@@ -5479,14 +5479,14 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
5479
5479
|
> = z.object({
|
|
5480
5480
|
_id: z.string(),
|
|
5481
5481
|
description: z.string(),
|
|
5482
|
-
created: z.string().default("2025-06-
|
|
5483
|
-
updated: z.string().default("2025-06-
|
|
5482
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5483
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5484
5484
|
guardrail_config: z.union([
|
|
5485
5485
|
z.lazy(() =>
|
|
5486
|
-
|
|
5486
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
5487
5487
|
),
|
|
5488
5488
|
z.lazy(() =>
|
|
5489
|
-
|
|
5489
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
5490
5490
|
),
|
|
5491
5491
|
]).optional(),
|
|
5492
5492
|
type: GetEvalsDataType$inboundSchema,
|
|
@@ -5506,8 +5506,8 @@ export type DataJSON$Outbound = {
|
|
|
5506
5506
|
created: string;
|
|
5507
5507
|
updated: string;
|
|
5508
5508
|
guardrail_config?:
|
|
5509
|
-
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$Outbound
|
|
5510
5509
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$Outbound
|
|
5510
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$Outbound
|
|
5511
5511
|
| undefined;
|
|
5512
5512
|
type: string;
|
|
5513
5513
|
schema: string;
|
|
@@ -5522,14 +5522,14 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
5522
5522
|
> = z.object({
|
|
5523
5523
|
id: z.string(),
|
|
5524
5524
|
description: z.string(),
|
|
5525
|
-
created: z.string().default("2025-06-
|
|
5526
|
-
updated: z.string().default("2025-06-
|
|
5525
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5526
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5527
5527
|
guardrailConfig: z.union([
|
|
5528
5528
|
z.lazy(() =>
|
|
5529
|
-
|
|
5529
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
5530
5530
|
),
|
|
5531
5531
|
z.lazy(() =>
|
|
5532
|
-
|
|
5532
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema
|
|
5533
5533
|
),
|
|
5534
5534
|
]).optional(),
|
|
5535
5535
|
type: GetEvalsDataType$outboundSchema,
|
|
@@ -5811,17 +5811,17 @@ export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailCon
|
|
|
5811
5811
|
unknown
|
|
5812
5812
|
> = z.union([
|
|
5813
5813
|
z.lazy(() =>
|
|
5814
|
-
|
|
5814
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
5815
5815
|
),
|
|
5816
5816
|
z.lazy(() =>
|
|
5817
|
-
|
|
5817
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
5818
5818
|
),
|
|
5819
5819
|
]);
|
|
5820
5820
|
|
|
5821
5821
|
/** @internal */
|
|
5822
5822
|
export type GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfig$Outbound =
|
|
5823
|
-
|
|
|
5824
|
-
|
|
|
5823
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$Outbound
|
|
5824
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$Outbound;
|
|
5825
5825
|
|
|
5826
5826
|
/** @internal */
|
|
5827
5827
|
export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfig$outboundSchema:
|
|
@@ -5831,10 +5831,10 @@ export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailCon
|
|
|
5831
5831
|
GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfig
|
|
5832
5832
|
> = z.union([
|
|
5833
5833
|
z.lazy(() =>
|
|
5834
|
-
|
|
5834
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
5835
5835
|
),
|
|
5836
5836
|
z.lazy(() =>
|
|
5837
|
-
|
|
5837
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
5838
5838
|
),
|
|
5839
5839
|
]);
|
|
5840
5840
|
|
|
@@ -5905,14 +5905,14 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
5905
5905
|
z.object({
|
|
5906
5906
|
_id: z.string(),
|
|
5907
5907
|
description: z.string(),
|
|
5908
|
-
created: z.string().default("2025-06-
|
|
5909
|
-
updated: z.string().default("2025-06-
|
|
5908
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5909
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5910
5910
|
guardrail_config: z.union([
|
|
5911
5911
|
z.lazy(() =>
|
|
5912
|
-
|
|
5912
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
5913
5913
|
),
|
|
5914
5914
|
z.lazy(() =>
|
|
5915
|
-
|
|
5915
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
5916
5916
|
),
|
|
5917
5917
|
]).optional(),
|
|
5918
5918
|
type: DataType$inboundSchema,
|
|
@@ -5933,8 +5933,8 @@ export type DataLLM$Outbound = {
|
|
|
5933
5933
|
created: string;
|
|
5934
5934
|
updated: string;
|
|
5935
5935
|
guardrail_config?:
|
|
5936
|
-
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$Outbound
|
|
5937
5936
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$Outbound
|
|
5937
|
+
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$Outbound
|
|
5938
5938
|
| undefined;
|
|
5939
5939
|
type: string;
|
|
5940
5940
|
prompt: string;
|
|
@@ -5950,14 +5950,14 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
5950
5950
|
> = z.object({
|
|
5951
5951
|
id: z.string(),
|
|
5952
5952
|
description: z.string(),
|
|
5953
|
-
created: z.string().default("2025-06-
|
|
5954
|
-
updated: z.string().default("2025-06-
|
|
5953
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5954
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
5955
5955
|
guardrailConfig: z.union([
|
|
5956
5956
|
z.lazy(() =>
|
|
5957
|
-
|
|
5957
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
5958
5958
|
),
|
|
5959
5959
|
z.lazy(() =>
|
|
5960
|
-
|
|
5960
|
+
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
5961
5961
|
),
|
|
5962
5962
|
]).optional(),
|
|
5963
5963
|
type: DataType$outboundSchema,
|
|
@@ -6004,24 +6004,24 @@ export const GetEvalsData$inboundSchema: z.ZodType<
|
|
|
6004
6004
|
z.ZodTypeDef,
|
|
6005
6005
|
unknown
|
|
6006
6006
|
> = z.union([
|
|
6007
|
+
z.lazy(() => DataHTTP$inboundSchema),
|
|
6008
|
+
z.lazy(() => DataLLM$inboundSchema),
|
|
6009
|
+
z.lazy(() => Ragas$inboundSchema),
|
|
6007
6010
|
z.lazy(() => DataJSON$inboundSchema),
|
|
6008
6011
|
z.lazy(() => DataPython$inboundSchema),
|
|
6009
6012
|
z.lazy(() => DataFunction$inboundSchema),
|
|
6010
6013
|
z.lazy(() => Typescript$inboundSchema),
|
|
6011
|
-
z.lazy(() => DataLLM$inboundSchema),
|
|
6012
|
-
z.lazy(() => Ragas$inboundSchema),
|
|
6013
|
-
z.lazy(() => DataHTTP$inboundSchema),
|
|
6014
6014
|
]);
|
|
6015
6015
|
|
|
6016
6016
|
/** @internal */
|
|
6017
6017
|
export type GetEvalsData$Outbound =
|
|
6018
|
+
| DataHTTP$Outbound
|
|
6019
|
+
| DataLLM$Outbound
|
|
6020
|
+
| Ragas$Outbound
|
|
6018
6021
|
| DataJSON$Outbound
|
|
6019
6022
|
| DataPython$Outbound
|
|
6020
6023
|
| DataFunction$Outbound
|
|
6021
|
-
| Typescript$Outbound
|
|
6022
|
-
| DataLLM$Outbound
|
|
6023
|
-
| Ragas$Outbound
|
|
6024
|
-
| DataHTTP$Outbound;
|
|
6024
|
+
| Typescript$Outbound;
|
|
6025
6025
|
|
|
6026
6026
|
/** @internal */
|
|
6027
6027
|
export const GetEvalsData$outboundSchema: z.ZodType<
|
|
@@ -6029,13 +6029,13 @@ export const GetEvalsData$outboundSchema: z.ZodType<
|
|
|
6029
6029
|
z.ZodTypeDef,
|
|
6030
6030
|
GetEvalsData
|
|
6031
6031
|
> = z.union([
|
|
6032
|
+
z.lazy(() => DataHTTP$outboundSchema),
|
|
6033
|
+
z.lazy(() => DataLLM$outboundSchema),
|
|
6034
|
+
z.lazy(() => Ragas$outboundSchema),
|
|
6032
6035
|
z.lazy(() => DataJSON$outboundSchema),
|
|
6033
6036
|
z.lazy(() => DataPython$outboundSchema),
|
|
6034
6037
|
z.lazy(() => DataFunction$outboundSchema),
|
|
6035
6038
|
z.lazy(() => Typescript$outboundSchema),
|
|
6036
|
-
z.lazy(() => DataLLM$outboundSchema),
|
|
6037
|
-
z.lazy(() => Ragas$outboundSchema),
|
|
6038
|
-
z.lazy(() => DataHTTP$outboundSchema),
|
|
6039
6039
|
]);
|
|
6040
6040
|
|
|
6041
6041
|
/**
|
|
@@ -6074,13 +6074,13 @@ export const GetEvalsResponseBody$inboundSchema: z.ZodType<
|
|
|
6074
6074
|
object: GetEvalsObject$inboundSchema,
|
|
6075
6075
|
data: z.array(
|
|
6076
6076
|
z.union([
|
|
6077
|
+
z.lazy(() => DataHTTP$inboundSchema),
|
|
6078
|
+
z.lazy(() => DataLLM$inboundSchema),
|
|
6079
|
+
z.lazy(() => Ragas$inboundSchema),
|
|
6077
6080
|
z.lazy(() => DataJSON$inboundSchema),
|
|
6078
6081
|
z.lazy(() => DataPython$inboundSchema),
|
|
6079
6082
|
z.lazy(() => DataFunction$inboundSchema),
|
|
6080
6083
|
z.lazy(() => Typescript$inboundSchema),
|
|
6081
|
-
z.lazy(() => DataLLM$inboundSchema),
|
|
6082
|
-
z.lazy(() => Ragas$inboundSchema),
|
|
6083
|
-
z.lazy(() => DataHTTP$inboundSchema),
|
|
6084
6084
|
]),
|
|
6085
6085
|
),
|
|
6086
6086
|
has_more: z.boolean(),
|
|
@@ -6094,13 +6094,13 @@ export const GetEvalsResponseBody$inboundSchema: z.ZodType<
|
|
|
6094
6094
|
export type GetEvalsResponseBody$Outbound = {
|
|
6095
6095
|
object: string;
|
|
6096
6096
|
data: Array<
|
|
6097
|
+
| DataHTTP$Outbound
|
|
6098
|
+
| DataLLM$Outbound
|
|
6099
|
+
| Ragas$Outbound
|
|
6097
6100
|
| DataJSON$Outbound
|
|
6098
6101
|
| DataPython$Outbound
|
|
6099
6102
|
| DataFunction$Outbound
|
|
6100
6103
|
| Typescript$Outbound
|
|
6101
|
-
| DataLLM$Outbound
|
|
6102
|
-
| Ragas$Outbound
|
|
6103
|
-
| DataHTTP$Outbound
|
|
6104
6104
|
>;
|
|
6105
6105
|
has_more: boolean;
|
|
6106
6106
|
};
|
|
@@ -6114,13 +6114,13 @@ export const GetEvalsResponseBody$outboundSchema: z.ZodType<
|
|
|
6114
6114
|
object: GetEvalsObject$outboundSchema,
|
|
6115
6115
|
data: z.array(
|
|
6116
6116
|
z.union([
|
|
6117
|
+
z.lazy(() => DataHTTP$outboundSchema),
|
|
6118
|
+
z.lazy(() => DataLLM$outboundSchema),
|
|
6119
|
+
z.lazy(() => Ragas$outboundSchema),
|
|
6117
6120
|
z.lazy(() => DataJSON$outboundSchema),
|
|
6118
6121
|
z.lazy(() => DataPython$outboundSchema),
|
|
6119
6122
|
z.lazy(() => DataFunction$outboundSchema),
|
|
6120
6123
|
z.lazy(() => Typescript$outboundSchema),
|
|
6121
|
-
z.lazy(() => DataLLM$outboundSchema),
|
|
6122
|
-
z.lazy(() => Ragas$outboundSchema),
|
|
6123
|
-
z.lazy(() => DataHTTP$outboundSchema),
|
|
6124
6124
|
]),
|
|
6125
6125
|
),
|
|
6126
6126
|
hasMore: z.boolean(),
|