@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
|
@@ -535,13 +535,13 @@ function getEvalsGuardrailConfigEvalsResponse200ApplicationJSONBooleanFromJSON(j
|
|
|
535
535
|
}
|
|
536
536
|
/** @internal */
|
|
537
537
|
exports.GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig$inboundSchema = z.union([
|
|
538
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
539
538
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
539
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
540
540
|
]);
|
|
541
541
|
/** @internal */
|
|
542
542
|
exports.GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig$outboundSchema = z.union([
|
|
543
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
544
543
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
544
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
545
545
|
]);
|
|
546
546
|
/**
|
|
547
547
|
* @internal
|
|
@@ -581,11 +581,11 @@ var GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$;
|
|
|
581
581
|
exports.Typescript$inboundSchema = z.object({
|
|
582
582
|
_id: z.string(),
|
|
583
583
|
description: z.string(),
|
|
584
|
-
created: z.string().default("2025-06-
|
|
585
|
-
updated: z.string().default("2025-06-
|
|
584
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
585
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
586
586
|
guardrail_config: z.union([
|
|
587
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
588
587
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
588
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
589
589
|
]).optional(),
|
|
590
590
|
code: z.string(),
|
|
591
591
|
type: exports.GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
@@ -600,11 +600,11 @@ exports.Typescript$inboundSchema = z.object({
|
|
|
600
600
|
exports.Typescript$outboundSchema = z.object({
|
|
601
601
|
id: z.string(),
|
|
602
602
|
description: z.string(),
|
|
603
|
-
created: z.string().default("2025-06-
|
|
604
|
-
updated: z.string().default("2025-06-
|
|
603
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
604
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
605
605
|
guardrailConfig: z.union([
|
|
606
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
607
606
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
607
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema),
|
|
608
608
|
]).optional(),
|
|
609
609
|
code: z.string(),
|
|
610
610
|
type: exports.GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema,
|
|
@@ -740,13 +740,13 @@ function getEvalsGuardrailConfigEvalsResponse200BooleanFromJSON(jsonString) {
|
|
|
740
740
|
}
|
|
741
741
|
/** @internal */
|
|
742
742
|
exports.GetEvalsDataEvalsResponse200GuardrailConfig$inboundSchema = z.union([
|
|
743
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
744
743
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
744
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
745
745
|
]);
|
|
746
746
|
/** @internal */
|
|
747
747
|
exports.GetEvalsDataEvalsResponse200GuardrailConfig$outboundSchema = z.union([
|
|
748
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
749
748
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
749
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
750
750
|
]);
|
|
751
751
|
/**
|
|
752
752
|
* @internal
|
|
@@ -802,11 +802,11 @@ exports.Ragas$inboundSchema = z
|
|
|
802
802
|
.object({
|
|
803
803
|
_id: z.string(),
|
|
804
804
|
description: z.string(),
|
|
805
|
-
created: z.string().default("2025-06-
|
|
806
|
-
updated: z.string().default("2025-06-
|
|
805
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
806
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
807
807
|
guardrail_config: z.union([
|
|
808
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
809
808
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
809
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
810
810
|
]).optional(),
|
|
811
811
|
type: exports.GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema,
|
|
812
812
|
ragas_metric: exports.RagasMetric$inboundSchema,
|
|
@@ -823,11 +823,11 @@ exports.Ragas$inboundSchema = z
|
|
|
823
823
|
exports.Ragas$outboundSchema = z.object({
|
|
824
824
|
id: z.string(),
|
|
825
825
|
description: z.string(),
|
|
826
|
-
created: z.string().default("2025-06-
|
|
827
|
-
updated: z.string().default("2025-06-
|
|
826
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
827
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
828
828
|
guardrailConfig: z.union([
|
|
829
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
830
829
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
830
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
831
831
|
]).optional(),
|
|
832
832
|
type: exports.GetEvalsDataEvalsResponse200ApplicationJSONType$outboundSchema,
|
|
833
833
|
ragasMetric: exports.RagasMetric$outboundSchema,
|
|
@@ -965,13 +965,13 @@ function getEvalsGuardrailConfigEvalsResponseBooleanFromJSON(jsonString) {
|
|
|
965
965
|
}
|
|
966
966
|
/** @internal */
|
|
967
967
|
exports.GetEvalsDataEvalsResponseGuardrailConfig$inboundSchema = z.union([
|
|
968
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
969
968
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
969
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
970
970
|
]);
|
|
971
971
|
/** @internal */
|
|
972
972
|
exports.GetEvalsDataEvalsResponseGuardrailConfig$outboundSchema = z.union([
|
|
973
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
974
973
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
974
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
975
975
|
]);
|
|
976
976
|
/**
|
|
977
977
|
* @internal
|
|
@@ -2002,6 +2002,16 @@ function functionParams1FromJSON(jsonString) {
|
|
|
2002
2002
|
}
|
|
2003
2003
|
/** @internal */
|
|
2004
2004
|
exports.DataFunctionParams$inboundSchema = z.union([
|
|
2005
|
+
z.lazy(() => exports.Twelve$inboundSchema),
|
|
2006
|
+
z.lazy(() => exports.FunctionParams1$inboundSchema),
|
|
2007
|
+
z.lazy(() => exports.FunctionParams2$inboundSchema),
|
|
2008
|
+
z.lazy(() => exports.FunctionParams3$inboundSchema),
|
|
2009
|
+
z.lazy(() => exports.FunctionParams4$inboundSchema),
|
|
2010
|
+
z.lazy(() => exports.Eight$inboundSchema),
|
|
2011
|
+
z.lazy(() => exports.Nine$inboundSchema),
|
|
2012
|
+
z.lazy(() => exports.Eleven$inboundSchema),
|
|
2013
|
+
z.lazy(() => exports.Thirteen$inboundSchema),
|
|
2014
|
+
z.lazy(() => exports.Fifteen$inboundSchema),
|
|
2005
2015
|
z.lazy(() => exports.Five$inboundSchema),
|
|
2006
2016
|
z.lazy(() => exports.Six$inboundSchema),
|
|
2007
2017
|
z.lazy(() => exports.Seven$inboundSchema),
|
|
@@ -2016,19 +2026,19 @@ exports.DataFunctionParams$inboundSchema = z.union([
|
|
|
2016
2026
|
z.lazy(() => exports.TwentyTwo$inboundSchema),
|
|
2017
2027
|
z.lazy(() => exports.TwentyThree$inboundSchema),
|
|
2018
2028
|
z.lazy(() => exports.TwentyFour$inboundSchema),
|
|
2019
|
-
z.lazy(() => exports.FunctionParams1$inboundSchema),
|
|
2020
|
-
z.lazy(() => exports.FunctionParams2$inboundSchema),
|
|
2021
|
-
z.lazy(() => exports.FunctionParams3$inboundSchema),
|
|
2022
|
-
z.lazy(() => exports.FunctionParams4$inboundSchema),
|
|
2023
|
-
z.lazy(() => exports.Eight$inboundSchema),
|
|
2024
|
-
z.lazy(() => exports.Nine$inboundSchema),
|
|
2025
|
-
z.lazy(() => exports.Eleven$inboundSchema),
|
|
2026
|
-
z.lazy(() => exports.Thirteen$inboundSchema),
|
|
2027
|
-
z.lazy(() => exports.Fifteen$inboundSchema),
|
|
2028
|
-
z.lazy(() => exports.Twelve$inboundSchema),
|
|
2029
2029
|
]);
|
|
2030
2030
|
/** @internal */
|
|
2031
2031
|
exports.DataFunctionParams$outboundSchema = z.union([
|
|
2032
|
+
z.lazy(() => exports.Twelve$outboundSchema),
|
|
2033
|
+
z.lazy(() => exports.FunctionParams1$outboundSchema),
|
|
2034
|
+
z.lazy(() => exports.FunctionParams2$outboundSchema),
|
|
2035
|
+
z.lazy(() => exports.FunctionParams3$outboundSchema),
|
|
2036
|
+
z.lazy(() => exports.FunctionParams4$outboundSchema),
|
|
2037
|
+
z.lazy(() => exports.Eight$outboundSchema),
|
|
2038
|
+
z.lazy(() => exports.Nine$outboundSchema),
|
|
2039
|
+
z.lazy(() => exports.Eleven$outboundSchema),
|
|
2040
|
+
z.lazy(() => exports.Thirteen$outboundSchema),
|
|
2041
|
+
z.lazy(() => exports.Fifteen$outboundSchema),
|
|
2032
2042
|
z.lazy(() => exports.Five$outboundSchema),
|
|
2033
2043
|
z.lazy(() => exports.Six$outboundSchema),
|
|
2034
2044
|
z.lazy(() => exports.Seven$outboundSchema),
|
|
@@ -2043,16 +2053,6 @@ exports.DataFunctionParams$outboundSchema = z.union([
|
|
|
2043
2053
|
z.lazy(() => exports.TwentyTwo$outboundSchema),
|
|
2044
2054
|
z.lazy(() => exports.TwentyThree$outboundSchema),
|
|
2045
2055
|
z.lazy(() => exports.TwentyFour$outboundSchema),
|
|
2046
|
-
z.lazy(() => exports.FunctionParams1$outboundSchema),
|
|
2047
|
-
z.lazy(() => exports.FunctionParams2$outboundSchema),
|
|
2048
|
-
z.lazy(() => exports.FunctionParams3$outboundSchema),
|
|
2049
|
-
z.lazy(() => exports.FunctionParams4$outboundSchema),
|
|
2050
|
-
z.lazy(() => exports.Eight$outboundSchema),
|
|
2051
|
-
z.lazy(() => exports.Nine$outboundSchema),
|
|
2052
|
-
z.lazy(() => exports.Eleven$outboundSchema),
|
|
2053
|
-
z.lazy(() => exports.Thirteen$outboundSchema),
|
|
2054
|
-
z.lazy(() => exports.Fifteen$outboundSchema),
|
|
2055
|
-
z.lazy(() => exports.Twelve$outboundSchema),
|
|
2056
2056
|
]);
|
|
2057
2057
|
/**
|
|
2058
2058
|
* @internal
|
|
@@ -2075,14 +2075,24 @@ function dataFunctionParamsFromJSON(jsonString) {
|
|
|
2075
2075
|
exports.DataFunction$inboundSchema = z.object({
|
|
2076
2076
|
_id: z.string(),
|
|
2077
2077
|
description: z.string(),
|
|
2078
|
-
created: z.string().default("2025-06-
|
|
2079
|
-
updated: z.string().default("2025-06-
|
|
2078
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2079
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2080
2080
|
guardrail_config: z.union([
|
|
2081
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
2082
2081
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
2082
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
2083
2083
|
]).optional(),
|
|
2084
2084
|
type: exports.GetEvalsDataEvalsResponse200Type$inboundSchema,
|
|
2085
2085
|
function_params: z.union([
|
|
2086
|
+
z.lazy(() => exports.Twelve$inboundSchema),
|
|
2087
|
+
z.lazy(() => exports.FunctionParams1$inboundSchema),
|
|
2088
|
+
z.lazy(() => exports.FunctionParams2$inboundSchema),
|
|
2089
|
+
z.lazy(() => exports.FunctionParams3$inboundSchema),
|
|
2090
|
+
z.lazy(() => exports.FunctionParams4$inboundSchema),
|
|
2091
|
+
z.lazy(() => exports.Eight$inboundSchema),
|
|
2092
|
+
z.lazy(() => exports.Nine$inboundSchema),
|
|
2093
|
+
z.lazy(() => exports.Eleven$inboundSchema),
|
|
2094
|
+
z.lazy(() => exports.Thirteen$inboundSchema),
|
|
2095
|
+
z.lazy(() => exports.Fifteen$inboundSchema),
|
|
2086
2096
|
z.lazy(() => exports.Five$inboundSchema),
|
|
2087
2097
|
z.lazy(() => exports.Six$inboundSchema),
|
|
2088
2098
|
z.lazy(() => exports.Seven$inboundSchema),
|
|
@@ -2097,16 +2107,6 @@ exports.DataFunction$inboundSchema = z.object({
|
|
|
2097
2107
|
z.lazy(() => exports.TwentyTwo$inboundSchema),
|
|
2098
2108
|
z.lazy(() => exports.TwentyThree$inboundSchema),
|
|
2099
2109
|
z.lazy(() => exports.TwentyFour$inboundSchema),
|
|
2100
|
-
z.lazy(() => exports.FunctionParams1$inboundSchema),
|
|
2101
|
-
z.lazy(() => exports.FunctionParams2$inboundSchema),
|
|
2102
|
-
z.lazy(() => exports.FunctionParams3$inboundSchema),
|
|
2103
|
-
z.lazy(() => exports.FunctionParams4$inboundSchema),
|
|
2104
|
-
z.lazy(() => exports.Eight$inboundSchema),
|
|
2105
|
-
z.lazy(() => exports.Nine$inboundSchema),
|
|
2106
|
-
z.lazy(() => exports.Eleven$inboundSchema),
|
|
2107
|
-
z.lazy(() => exports.Thirteen$inboundSchema),
|
|
2108
|
-
z.lazy(() => exports.Fifteen$inboundSchema),
|
|
2109
|
-
z.lazy(() => exports.Twelve$inboundSchema),
|
|
2110
2110
|
]),
|
|
2111
2111
|
key: z.string(),
|
|
2112
2112
|
}).transform((v) => {
|
|
@@ -2120,14 +2120,24 @@ exports.DataFunction$inboundSchema = z.object({
|
|
|
2120
2120
|
exports.DataFunction$outboundSchema = z.object({
|
|
2121
2121
|
id: z.string(),
|
|
2122
2122
|
description: z.string(),
|
|
2123
|
-
created: z.string().default("2025-06-
|
|
2124
|
-
updated: z.string().default("2025-06-
|
|
2123
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2124
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2125
2125
|
guardrailConfig: z.union([
|
|
2126
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
2127
2126
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
2127
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
2128
2128
|
]).optional(),
|
|
2129
2129
|
type: exports.GetEvalsDataEvalsResponse200Type$outboundSchema,
|
|
2130
2130
|
functionParams: z.union([
|
|
2131
|
+
z.lazy(() => exports.Twelve$outboundSchema),
|
|
2132
|
+
z.lazy(() => exports.FunctionParams1$outboundSchema),
|
|
2133
|
+
z.lazy(() => exports.FunctionParams2$outboundSchema),
|
|
2134
|
+
z.lazy(() => exports.FunctionParams3$outboundSchema),
|
|
2135
|
+
z.lazy(() => exports.FunctionParams4$outboundSchema),
|
|
2136
|
+
z.lazy(() => exports.Eight$outboundSchema),
|
|
2137
|
+
z.lazy(() => exports.Nine$outboundSchema),
|
|
2138
|
+
z.lazy(() => exports.Eleven$outboundSchema),
|
|
2139
|
+
z.lazy(() => exports.Thirteen$outboundSchema),
|
|
2140
|
+
z.lazy(() => exports.Fifteen$outboundSchema),
|
|
2131
2141
|
z.lazy(() => exports.Five$outboundSchema),
|
|
2132
2142
|
z.lazy(() => exports.Six$outboundSchema),
|
|
2133
2143
|
z.lazy(() => exports.Seven$outboundSchema),
|
|
@@ -2142,16 +2152,6 @@ exports.DataFunction$outboundSchema = z.object({
|
|
|
2142
2152
|
z.lazy(() => exports.TwentyTwo$outboundSchema),
|
|
2143
2153
|
z.lazy(() => exports.TwentyThree$outboundSchema),
|
|
2144
2154
|
z.lazy(() => exports.TwentyFour$outboundSchema),
|
|
2145
|
-
z.lazy(() => exports.FunctionParams1$outboundSchema),
|
|
2146
|
-
z.lazy(() => exports.FunctionParams2$outboundSchema),
|
|
2147
|
-
z.lazy(() => exports.FunctionParams3$outboundSchema),
|
|
2148
|
-
z.lazy(() => exports.FunctionParams4$outboundSchema),
|
|
2149
|
-
z.lazy(() => exports.Eight$outboundSchema),
|
|
2150
|
-
z.lazy(() => exports.Nine$outboundSchema),
|
|
2151
|
-
z.lazy(() => exports.Eleven$outboundSchema),
|
|
2152
|
-
z.lazy(() => exports.Thirteen$outboundSchema),
|
|
2153
|
-
z.lazy(() => exports.Fifteen$outboundSchema),
|
|
2154
|
-
z.lazy(() => exports.Twelve$outboundSchema),
|
|
2155
2155
|
]),
|
|
2156
2156
|
key: z.string(),
|
|
2157
2157
|
}).transform((v) => {
|
|
@@ -2285,13 +2285,13 @@ function getEvalsGuardrailConfigEvalsBooleanFromJSON(jsonString) {
|
|
|
2285
2285
|
}
|
|
2286
2286
|
/** @internal */
|
|
2287
2287
|
exports.GetEvalsDataEvalsGuardrailConfig$inboundSchema = z.union([
|
|
2288
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
2289
2288
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
2289
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
2290
2290
|
]);
|
|
2291
2291
|
/** @internal */
|
|
2292
2292
|
exports.GetEvalsDataEvalsGuardrailConfig$outboundSchema = z.union([
|
|
2293
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
2294
2293
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
2294
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
2295
2295
|
]);
|
|
2296
2296
|
/**
|
|
2297
2297
|
* @internal
|
|
@@ -2329,11 +2329,11 @@ var GetEvalsDataEvalsResponseType$;
|
|
|
2329
2329
|
exports.DataPython$inboundSchema = z.object({
|
|
2330
2330
|
_id: z.string(),
|
|
2331
2331
|
description: z.string(),
|
|
2332
|
-
created: z.string().default("2025-06-
|
|
2333
|
-
updated: z.string().default("2025-06-
|
|
2332
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2333
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2334
2334
|
guardrail_config: z.union([
|
|
2335
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
2336
2335
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
2336
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
2337
2337
|
]).optional(),
|
|
2338
2338
|
code: z.string(),
|
|
2339
2339
|
type: exports.GetEvalsDataEvalsResponseType$inboundSchema,
|
|
@@ -2348,11 +2348,11 @@ exports.DataPython$inboundSchema = z.object({
|
|
|
2348
2348
|
exports.DataPython$outboundSchema = z.object({
|
|
2349
2349
|
id: z.string(),
|
|
2350
2350
|
description: z.string(),
|
|
2351
|
-
created: z.string().default("2025-06-
|
|
2352
|
-
updated: z.string().default("2025-06-
|
|
2351
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2352
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2353
2353
|
guardrailConfig: z.union([
|
|
2354
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
2355
2354
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
2355
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
2356
2356
|
]).optional(),
|
|
2357
2357
|
code: z.string(),
|
|
2358
2358
|
type: exports.GetEvalsDataEvalsResponseType$outboundSchema,
|
|
@@ -2488,13 +2488,13 @@ function getEvalsGuardrailConfigBooleanFromJSON(jsonString) {
|
|
|
2488
2488
|
}
|
|
2489
2489
|
/** @internal */
|
|
2490
2490
|
exports.GetEvalsDataGuardrailConfig$inboundSchema = z.union([
|
|
2491
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
2492
2491
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
2492
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
2493
2493
|
]);
|
|
2494
2494
|
/** @internal */
|
|
2495
2495
|
exports.GetEvalsDataGuardrailConfig$outboundSchema = z.union([
|
|
2496
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
2497
2496
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
2497
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
2498
2498
|
]);
|
|
2499
2499
|
/**
|
|
2500
2500
|
* @internal
|
|
@@ -2548,11 +2548,11 @@ var DataMethod$;
|
|
|
2548
2548
|
exports.DataHTTP$inboundSchema = z.object({
|
|
2549
2549
|
_id: z.string(),
|
|
2550
2550
|
description: z.string(),
|
|
2551
|
-
created: z.string().default("2025-06-
|
|
2552
|
-
updated: z.string().default("2025-06-
|
|
2551
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2552
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2553
2553
|
guardrail_config: z.union([
|
|
2554
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
2555
2554
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
2555
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
2556
2556
|
]).optional(),
|
|
2557
2557
|
type: exports.GetEvalsDataEvalsType$inboundSchema,
|
|
2558
2558
|
url: z.string(),
|
|
@@ -2570,11 +2570,11 @@ exports.DataHTTP$inboundSchema = z.object({
|
|
|
2570
2570
|
exports.DataHTTP$outboundSchema = z.object({
|
|
2571
2571
|
id: z.string(),
|
|
2572
2572
|
description: z.string(),
|
|
2573
|
-
created: z.string().default("2025-06-
|
|
2574
|
-
updated: z.string().default("2025-06-
|
|
2573
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2574
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2575
2575
|
guardrailConfig: z.union([
|
|
2576
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
2577
2576
|
z.lazy(() => exports.GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
2577
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
2578
2578
|
]).optional(),
|
|
2579
2579
|
type: exports.GetEvalsDataEvalsType$outboundSchema,
|
|
2580
2580
|
url: z.string(),
|
|
@@ -2717,13 +2717,13 @@ function getEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataB
|
|
|
2717
2717
|
}
|
|
2718
2718
|
/** @internal */
|
|
2719
2719
|
exports.DataGuardrailConfig$inboundSchema = z.union([
|
|
2720
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
2721
2720
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
2721
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
2722
2722
|
]);
|
|
2723
2723
|
/** @internal */
|
|
2724
2724
|
exports.DataGuardrailConfig$outboundSchema = z.union([
|
|
2725
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
2726
2725
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
2726
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
2727
2727
|
]);
|
|
2728
2728
|
/**
|
|
2729
2729
|
* @internal
|
|
@@ -2761,11 +2761,11 @@ var GetEvalsDataType$;
|
|
|
2761
2761
|
exports.DataJSON$inboundSchema = z.object({
|
|
2762
2762
|
_id: z.string(),
|
|
2763
2763
|
description: z.string(),
|
|
2764
|
-
created: z.string().default("2025-06-
|
|
2765
|
-
updated: z.string().default("2025-06-
|
|
2764
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2765
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2766
2766
|
guardrail_config: z.union([
|
|
2767
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
2768
2767
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
2768
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema),
|
|
2769
2769
|
]).optional(),
|
|
2770
2770
|
type: exports.GetEvalsDataType$inboundSchema,
|
|
2771
2771
|
schema: z.string(),
|
|
@@ -2780,11 +2780,11 @@ exports.DataJSON$inboundSchema = z.object({
|
|
|
2780
2780
|
exports.DataJSON$outboundSchema = z.object({
|
|
2781
2781
|
id: z.string(),
|
|
2782
2782
|
description: z.string(),
|
|
2783
|
-
created: z.string().default("2025-06-
|
|
2784
|
-
updated: z.string().default("2025-06-
|
|
2783
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2784
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2785
2785
|
guardrailConfig: z.union([
|
|
2786
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
2787
2786
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
2787
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema),
|
|
2788
2788
|
]).optional(),
|
|
2789
2789
|
type: exports.GetEvalsDataType$outboundSchema,
|
|
2790
2790
|
schema: z.string(),
|
|
@@ -2923,13 +2923,13 @@ function getEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoole
|
|
|
2923
2923
|
}
|
|
2924
2924
|
/** @internal */
|
|
2925
2925
|
exports.GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfig$inboundSchema = z.union([
|
|
2926
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
2927
2926
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
2927
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
2928
2928
|
]);
|
|
2929
2929
|
/** @internal */
|
|
2930
2930
|
exports.GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConfig$outboundSchema = z.union([
|
|
2931
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
2932
2931
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
2932
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
2933
2933
|
]);
|
|
2934
2934
|
/**
|
|
2935
2935
|
* @internal
|
|
@@ -2970,11 +2970,11 @@ var DataType$;
|
|
|
2970
2970
|
exports.DataLLM$inboundSchema = z.object({
|
|
2971
2971
|
_id: z.string(),
|
|
2972
2972
|
description: z.string(),
|
|
2973
|
-
created: z.string().default("2025-06-
|
|
2974
|
-
updated: z.string().default("2025-06-
|
|
2973
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2974
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2975
2975
|
guardrail_config: z.union([
|
|
2976
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
2977
2976
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
2977
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
2978
2978
|
]).optional(),
|
|
2979
2979
|
type: exports.DataType$inboundSchema,
|
|
2980
2980
|
prompt: z.string(),
|
|
@@ -2990,11 +2990,11 @@ exports.DataLLM$inboundSchema = z.object({
|
|
|
2990
2990
|
exports.DataLLM$outboundSchema = z.object({
|
|
2991
2991
|
id: z.string(),
|
|
2992
2992
|
description: z.string(),
|
|
2993
|
-
created: z.string().default("2025-06-
|
|
2994
|
-
updated: z.string().default("2025-06-
|
|
2993
|
+
created: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2994
|
+
updated: z.string().default("2025-06-17T22:56:20.152Z"),
|
|
2995
2995
|
guardrailConfig: z.union([
|
|
2996
|
-
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
2997
2996
|
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
2997
|
+
z.lazy(() => exports.GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema),
|
|
2998
2998
|
]).optional(),
|
|
2999
2999
|
type: exports.DataType$outboundSchema,
|
|
3000
3000
|
prompt: z.string(),
|
|
@@ -3025,23 +3025,23 @@ function dataLLMFromJSON(jsonString) {
|
|
|
3025
3025
|
}
|
|
3026
3026
|
/** @internal */
|
|
3027
3027
|
exports.GetEvalsData$inboundSchema = z.union([
|
|
3028
|
+
z.lazy(() => exports.DataHTTP$inboundSchema),
|
|
3029
|
+
z.lazy(() => exports.DataLLM$inboundSchema),
|
|
3030
|
+
z.lazy(() => exports.Ragas$inboundSchema),
|
|
3028
3031
|
z.lazy(() => exports.DataJSON$inboundSchema),
|
|
3029
3032
|
z.lazy(() => exports.DataPython$inboundSchema),
|
|
3030
3033
|
z.lazy(() => exports.DataFunction$inboundSchema),
|
|
3031
3034
|
z.lazy(() => exports.Typescript$inboundSchema),
|
|
3032
|
-
z.lazy(() => exports.DataLLM$inboundSchema),
|
|
3033
|
-
z.lazy(() => exports.Ragas$inboundSchema),
|
|
3034
|
-
z.lazy(() => exports.DataHTTP$inboundSchema),
|
|
3035
3035
|
]);
|
|
3036
3036
|
/** @internal */
|
|
3037
3037
|
exports.GetEvalsData$outboundSchema = z.union([
|
|
3038
|
+
z.lazy(() => exports.DataHTTP$outboundSchema),
|
|
3039
|
+
z.lazy(() => exports.DataLLM$outboundSchema),
|
|
3040
|
+
z.lazy(() => exports.Ragas$outboundSchema),
|
|
3038
3041
|
z.lazy(() => exports.DataJSON$outboundSchema),
|
|
3039
3042
|
z.lazy(() => exports.DataPython$outboundSchema),
|
|
3040
3043
|
z.lazy(() => exports.DataFunction$outboundSchema),
|
|
3041
3044
|
z.lazy(() => exports.Typescript$outboundSchema),
|
|
3042
|
-
z.lazy(() => exports.DataLLM$outboundSchema),
|
|
3043
|
-
z.lazy(() => exports.Ragas$outboundSchema),
|
|
3044
|
-
z.lazy(() => exports.DataHTTP$outboundSchema),
|
|
3045
3045
|
]);
|
|
3046
3046
|
/**
|
|
3047
3047
|
* @internal
|
|
@@ -3064,13 +3064,13 @@ function getEvalsDataFromJSON(jsonString) {
|
|
|
3064
3064
|
exports.GetEvalsResponseBody$inboundSchema = z.object({
|
|
3065
3065
|
object: exports.GetEvalsObject$inboundSchema,
|
|
3066
3066
|
data: z.array(z.union([
|
|
3067
|
+
z.lazy(() => exports.DataHTTP$inboundSchema),
|
|
3068
|
+
z.lazy(() => exports.DataLLM$inboundSchema),
|
|
3069
|
+
z.lazy(() => exports.Ragas$inboundSchema),
|
|
3067
3070
|
z.lazy(() => exports.DataJSON$inboundSchema),
|
|
3068
3071
|
z.lazy(() => exports.DataPython$inboundSchema),
|
|
3069
3072
|
z.lazy(() => exports.DataFunction$inboundSchema),
|
|
3070
3073
|
z.lazy(() => exports.Typescript$inboundSchema),
|
|
3071
|
-
z.lazy(() => exports.DataLLM$inboundSchema),
|
|
3072
|
-
z.lazy(() => exports.Ragas$inboundSchema),
|
|
3073
|
-
z.lazy(() => exports.DataHTTP$inboundSchema),
|
|
3074
3074
|
])),
|
|
3075
3075
|
has_more: z.boolean(),
|
|
3076
3076
|
}).transform((v) => {
|
|
@@ -3082,13 +3082,13 @@ exports.GetEvalsResponseBody$inboundSchema = z.object({
|
|
|
3082
3082
|
exports.GetEvalsResponseBody$outboundSchema = z.object({
|
|
3083
3083
|
object: exports.GetEvalsObject$outboundSchema,
|
|
3084
3084
|
data: z.array(z.union([
|
|
3085
|
+
z.lazy(() => exports.DataHTTP$outboundSchema),
|
|
3086
|
+
z.lazy(() => exports.DataLLM$outboundSchema),
|
|
3087
|
+
z.lazy(() => exports.Ragas$outboundSchema),
|
|
3085
3088
|
z.lazy(() => exports.DataJSON$outboundSchema),
|
|
3086
3089
|
z.lazy(() => exports.DataPython$outboundSchema),
|
|
3087
3090
|
z.lazy(() => exports.DataFunction$outboundSchema),
|
|
3088
3091
|
z.lazy(() => exports.Typescript$outboundSchema),
|
|
3089
|
-
z.lazy(() => exports.DataLLM$outboundSchema),
|
|
3090
|
-
z.lazy(() => exports.Ragas$outboundSchema),
|
|
3091
|
-
z.lazy(() => exports.DataHTTP$outboundSchema),
|
|
3092
3092
|
])),
|
|
3093
3093
|
hasMore: z.boolean(),
|
|
3094
3094
|
}).transform((v) => {
|