@orq-ai/node 3.13.7 → 3.13.9
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 +215 -229
- package/bin/mcp-server.js.map +44 -44
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/components/deployments.d.ts +0 -6
- package/models/components/deployments.d.ts.map +1 -1
- package/models/components/deployments.js +0 -2
- package/models/components/deployments.js.map +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.d.ts +0 -6
- package/models/operations/createdatasetitem.d.ts.map +1 -1
- package/models/operations/createdatasetitem.js +2 -4
- package/models/operations/createdatasetitem.js.map +1 -1
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.js +28 -28
- package/models/operations/createtool.js +14 -14
- package/models/operations/deploymentcreatemetric.d.ts +0 -6
- package/models/operations/deploymentcreatemetric.d.ts.map +1 -1
- package/models/operations/deploymentcreatemetric.js +0 -2
- package/models/operations/deploymentcreatemetric.js.map +1 -1
- package/models/operations/deploymentgetconfig.d.ts +0 -6
- package/models/operations/deploymentgetconfig.d.ts.map +1 -1
- package/models/operations/deploymentgetconfig.js +0 -2
- package/models/operations/deploymentgetconfig.js.map +1 -1
- package/models/operations/deploymentstream.d.ts +0 -6
- package/models/operations/deploymentstream.d.ts.map +1 -1
- package/models/operations/deploymentstream.js +0 -2
- package/models/operations/deploymentstream.js.map +1 -1
- package/models/operations/duplicatetool.js +10 -10
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getagent.js +2 -2
- package/models/operations/getalltools.js +10 -10
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listagents.js +2 -2
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.d.ts +0 -3
- package/models/operations/listdatasetdatapoints.d.ts.map +1 -1
- package/models/operations/listdatasetdatapoints.js +2 -3
- 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/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.d.ts +0 -3
- package/models/operations/retrievedatapoint.d.ts.map +1 -1
- package/models/operations/retrievedatapoint.js +2 -3
- 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/retrievetool.js +10 -10
- package/models/operations/runagent.js +2 -2
- package/models/operations/streamrunagent.js +2 -2
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.d.ts +0 -6
- package/models/operations/updatedatapoint.d.ts.map +1 -1
- package/models/operations/updatedatapoint.js +2 -4
- 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.js +28 -28
- package/models/operations/updatetool.js +14 -14
- package/package.json +1 -1
- package/packages/orq-rc/docs/sdks/knowledge/README.md +6 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
- package/packages/orq-rc/src/mcp-server/server.ts +1 -1
- package/packages/orq-rc/src/models/components/deployments.ts +0 -2
- package/packages/orq-rc/src/models/operations/createbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +9 -3
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +8 -10
- package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/createeval.ts +236 -201
- package/packages/orq-rc/src/models/operations/createknowledge.ts +1231 -275
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +7 -1
- package/packages/orq-rc/src/models/operations/createprompt.ts +7 -1
- package/packages/orq-rc/src/models/operations/createtool.ts +192 -116
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +0 -2
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +0 -2
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +0 -2
- package/packages/orq-rc/src/models/operations/duplicatetool.ts +45 -15
- package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
- package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
- package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
- package/packages/orq-rc/src/models/operations/getagent.ts +9 -3
- package/packages/orq-rc/src/models/operations/getalltools.ts +167 -118
- package/packages/orq-rc/src/models/operations/getbudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/getevals.ts +157 -143
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +912 -166
- package/packages/orq-rc/src/models/operations/listagents.ts +9 -3
- package/packages/orq-rc/src/models/operations/listbudgets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +8 -9
- package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
- package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +755 -150
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +8 -9
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/retrievetool.ts +45 -15
- package/packages/orq-rc/src/models/operations/runagent.ts +7 -1
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +49 -62
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +7 -1
- package/packages/orq-rc/src/models/operations/updatebudget.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +8 -10
- package/packages/orq-rc/src/models/operations/updatedataset.ts +9 -3
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
- package/packages/orq-rc/src/models/operations/updateeval.ts +56 -32
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +1710 -367
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +7 -1
- package/packages/orq-rc/src/models/operations/updateprompt.ts +7 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +80 -20
- package/src/lib/config.ts +2 -2
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/components/deployments.ts +0 -2
- package/src/models/operations/createbudget.ts +2 -2
- package/src/models/operations/createcontact.ts +2 -2
- package/src/models/operations/createdataset.ts +2 -2
- package/src/models/operations/createdatasetitem.ts +2 -4
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +28 -28
- package/src/models/operations/createtool.ts +14 -14
- package/src/models/operations/deploymentcreatemetric.ts +0 -2
- package/src/models/operations/deploymentgetconfig.ts +0 -2
- package/src/models/operations/deploymentstream.ts +0 -2
- package/src/models/operations/duplicatetool.ts +10 -10
- 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/getagent.ts +2 -2
- package/src/models/operations/getalltools.ts +10 -10
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listagents.ts +2 -2
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -3
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -3
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/retrievetool.ts +10 -10
- package/src/models/operations/runagent.ts +2 -2
- package/src/models/operations/streamrunagent.ts +2 -2
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -4
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +28 -28
- package/src/models/operations/updatetool.ts +14 -14
|
@@ -79,12 +79,12 @@ export type GetEvalsDataEvalsResponse200ApplicationJSONGuardrailConfig =
|
|
|
79
79
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber
|
|
80
80
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean;
|
|
81
81
|
|
|
82
|
-
export const
|
|
82
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type = {
|
|
83
83
|
TypescriptEval: "typescript_eval",
|
|
84
84
|
} as const;
|
|
85
|
-
export type
|
|
85
|
+
export type GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type =
|
|
86
86
|
ClosedEnum<
|
|
87
|
-
typeof
|
|
87
|
+
typeof GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type
|
|
88
88
|
>;
|
|
89
89
|
|
|
90
90
|
export type DataTypescript = {
|
|
@@ -97,7 +97,7 @@ export type DataTypescript = {
|
|
|
97
97
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean
|
|
98
98
|
| undefined;
|
|
99
99
|
code: string;
|
|
100
|
-
type:
|
|
100
|
+
type: GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type;
|
|
101
101
|
key: string;
|
|
102
102
|
};
|
|
103
103
|
|
|
@@ -150,12 +150,13 @@ export type GetEvalsDataEvalsResponse200GuardrailConfig =
|
|
|
150
150
|
| GetEvalsGuardrailConfigEvalsResponse200Number
|
|
151
151
|
| GetEvalsGuardrailConfigEvalsResponse200Boolean;
|
|
152
152
|
|
|
153
|
-
export const
|
|
153
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType = {
|
|
154
154
|
Ragas: "ragas",
|
|
155
155
|
} as const;
|
|
156
|
-
export type
|
|
157
|
-
|
|
158
|
-
|
|
156
|
+
export type GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType =
|
|
157
|
+
ClosedEnum<
|
|
158
|
+
typeof GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType
|
|
159
|
+
>;
|
|
159
160
|
|
|
160
161
|
export const DataRagasMetric = {
|
|
161
162
|
ContextPrecision: "context_precision",
|
|
@@ -182,7 +183,7 @@ export type DataRagas = {
|
|
|
182
183
|
| GetEvalsGuardrailConfigEvalsResponse200Number
|
|
183
184
|
| GetEvalsGuardrailConfigEvalsResponse200Boolean
|
|
184
185
|
| undefined;
|
|
185
|
-
type:
|
|
186
|
+
type: GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType;
|
|
186
187
|
ragasMetric: DataRagasMetric;
|
|
187
188
|
key: string;
|
|
188
189
|
model: string;
|
|
@@ -237,11 +238,11 @@ export type GetEvalsDataEvalsResponseGuardrailConfig =
|
|
|
237
238
|
| GetEvalsGuardrailConfigEvalsResponseNumber
|
|
238
239
|
| GetEvalsGuardrailConfigEvalsResponseBoolean;
|
|
239
240
|
|
|
240
|
-
export const
|
|
241
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONType = {
|
|
241
242
|
FunctionEval: "function_eval",
|
|
242
243
|
} as const;
|
|
243
|
-
export type
|
|
244
|
-
typeof
|
|
244
|
+
export type GetEvalsDataEvalsResponse200ApplicationJSONType = ClosedEnum<
|
|
245
|
+
typeof GetEvalsDataEvalsResponse200ApplicationJSONType
|
|
245
246
|
>;
|
|
246
247
|
|
|
247
248
|
export const GetEvalsFunctionParamsEvalsResponse200ApplicationJSONResponseBodyData535Type =
|
|
@@ -776,7 +777,7 @@ export type DataFunction = {
|
|
|
776
777
|
| GetEvalsGuardrailConfigEvalsResponseNumber
|
|
777
778
|
| GetEvalsGuardrailConfigEvalsResponseBoolean
|
|
778
779
|
| undefined;
|
|
779
|
-
type:
|
|
780
|
+
type: GetEvalsDataEvalsResponse200ApplicationJSONType;
|
|
780
781
|
functionParams:
|
|
781
782
|
| GetEvalsFunctionParams12
|
|
782
783
|
| GetEvalsFunctionParams1
|
|
@@ -864,11 +865,11 @@ export type GetEvalsDataEvalsGuardrailConfig =
|
|
|
864
865
|
| GetEvalsGuardrailConfigEvalsNumber
|
|
865
866
|
| GetEvalsGuardrailConfigEvalsBoolean;
|
|
866
867
|
|
|
867
|
-
export const
|
|
868
|
+
export const GetEvalsDataEvalsResponse200Type = {
|
|
868
869
|
PythonEval: "python_eval",
|
|
869
870
|
} as const;
|
|
870
|
-
export type
|
|
871
|
-
typeof
|
|
871
|
+
export type GetEvalsDataEvalsResponse200Type = ClosedEnum<
|
|
872
|
+
typeof GetEvalsDataEvalsResponse200Type
|
|
872
873
|
>;
|
|
873
874
|
|
|
874
875
|
export type DataPython = {
|
|
@@ -881,7 +882,7 @@ export type DataPython = {
|
|
|
881
882
|
| GetEvalsGuardrailConfigEvalsBoolean
|
|
882
883
|
| undefined;
|
|
883
884
|
code: string;
|
|
884
|
-
type:
|
|
885
|
+
type: GetEvalsDataEvalsResponse200Type;
|
|
885
886
|
key: string;
|
|
886
887
|
};
|
|
887
888
|
|
|
@@ -927,10 +928,12 @@ export type GetEvalsDataGuardrailConfig =
|
|
|
927
928
|
| GetEvalsGuardrailConfigNumber
|
|
928
929
|
| GetEvalsGuardrailConfigBoolean;
|
|
929
930
|
|
|
930
|
-
export const
|
|
931
|
+
export const GetEvalsDataEvalsResponseType = {
|
|
931
932
|
HttpEval: "http_eval",
|
|
932
933
|
} as const;
|
|
933
|
-
export type
|
|
934
|
+
export type GetEvalsDataEvalsResponseType = ClosedEnum<
|
|
935
|
+
typeof GetEvalsDataEvalsResponseType
|
|
936
|
+
>;
|
|
934
937
|
|
|
935
938
|
export const DataMethod = {
|
|
936
939
|
Get: "GET",
|
|
@@ -947,7 +950,7 @@ export type DataHTTP = {
|
|
|
947
950
|
| GetEvalsGuardrailConfigNumber
|
|
948
951
|
| GetEvalsGuardrailConfigBoolean
|
|
949
952
|
| undefined;
|
|
950
|
-
type:
|
|
953
|
+
type: GetEvalsDataEvalsResponseType;
|
|
951
954
|
url: string;
|
|
952
955
|
method: DataMethod;
|
|
953
956
|
headers: { [k: string]: string };
|
|
@@ -1003,10 +1006,10 @@ export type DataGuardrailConfig =
|
|
|
1003
1006
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber
|
|
1004
1007
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean;
|
|
1005
1008
|
|
|
1006
|
-
export const
|
|
1009
|
+
export const GetEvalsDataEvalsType = {
|
|
1007
1010
|
JsonSchema: "json_schema",
|
|
1008
1011
|
} as const;
|
|
1009
|
-
export type
|
|
1012
|
+
export type GetEvalsDataEvalsType = ClosedEnum<typeof GetEvalsDataEvalsType>;
|
|
1010
1013
|
|
|
1011
1014
|
export type DataJSON = {
|
|
1012
1015
|
id: string;
|
|
@@ -1017,7 +1020,7 @@ export type DataJSON = {
|
|
|
1017
1020
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber
|
|
1018
1021
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean
|
|
1019
1022
|
| undefined;
|
|
1020
|
-
type:
|
|
1023
|
+
type: GetEvalsDataEvalsType;
|
|
1021
1024
|
schema: string;
|
|
1022
1025
|
key: string;
|
|
1023
1026
|
};
|
|
@@ -1073,10 +1076,10 @@ export type GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrailConf
|
|
|
1073
1076
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber
|
|
1074
1077
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean;
|
|
1075
1078
|
|
|
1076
|
-
export const
|
|
1079
|
+
export const GetEvalsDataType = {
|
|
1077
1080
|
LlmEval: "llm_eval",
|
|
1078
1081
|
} as const;
|
|
1079
|
-
export type
|
|
1082
|
+
export type GetEvalsDataType = ClosedEnum<typeof GetEvalsDataType>;
|
|
1080
1083
|
|
|
1081
1084
|
export type DataLLM = {
|
|
1082
1085
|
id: string;
|
|
@@ -1087,7 +1090,7 @@ export type DataLLM = {
|
|
|
1087
1090
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber
|
|
1088
1091
|
| GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean
|
|
1089
1092
|
| undefined;
|
|
1090
|
-
type:
|
|
1093
|
+
type: GetEvalsDataType;
|
|
1091
1094
|
prompt: string;
|
|
1092
1095
|
key: string;
|
|
1093
1096
|
model: string;
|
|
@@ -1524,28 +1527,31 @@ export function getEvalsDataEvalsResponse200ApplicationJSONGuardrailConfigFromJS
|
|
|
1524
1527
|
}
|
|
1525
1528
|
|
|
1526
1529
|
/** @internal */
|
|
1527
|
-
export const
|
|
1530
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$inboundSchema:
|
|
1528
1531
|
z.ZodNativeEnum<
|
|
1529
|
-
typeof
|
|
1530
|
-
> = z.nativeEnum(
|
|
1532
|
+
typeof GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type
|
|
1533
|
+
> = z.nativeEnum(
|
|
1534
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type,
|
|
1535
|
+
);
|
|
1531
1536
|
|
|
1532
1537
|
/** @internal */
|
|
1533
|
-
export const
|
|
1538
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$outboundSchema:
|
|
1534
1539
|
z.ZodNativeEnum<
|
|
1535
|
-
typeof
|
|
1536
|
-
> =
|
|
1540
|
+
typeof GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type
|
|
1541
|
+
> =
|
|
1542
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$inboundSchema;
|
|
1537
1543
|
|
|
1538
1544
|
/**
|
|
1539
1545
|
* @internal
|
|
1540
1546
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1541
1547
|
*/
|
|
1542
|
-
export namespace
|
|
1543
|
-
/** @deprecated use `
|
|
1548
|
+
export namespace GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$ {
|
|
1549
|
+
/** @deprecated use `GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$inboundSchema` instead. */
|
|
1544
1550
|
export const inboundSchema =
|
|
1545
|
-
|
|
1546
|
-
/** @deprecated use `
|
|
1551
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$inboundSchema;
|
|
1552
|
+
/** @deprecated use `GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$outboundSchema` instead. */
|
|
1547
1553
|
export const outboundSchema =
|
|
1548
|
-
|
|
1554
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$outboundSchema;
|
|
1549
1555
|
}
|
|
1550
1556
|
|
|
1551
1557
|
/** @internal */
|
|
@@ -1556,8 +1562,8 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1556
1562
|
> = z.object({
|
|
1557
1563
|
_id: z.string(),
|
|
1558
1564
|
description: z.string(),
|
|
1559
|
-
created: z.string().default("2025-10-
|
|
1560
|
-
updated: z.string().default("2025-10-
|
|
1565
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
1566
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
1561
1567
|
guardrail_config: z.union([
|
|
1562
1568
|
z.lazy(() =>
|
|
1563
1569
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -1568,7 +1574,7 @@ export const DataTypescript$inboundSchema: z.ZodType<
|
|
|
1568
1574
|
]).optional(),
|
|
1569
1575
|
code: z.string(),
|
|
1570
1576
|
type:
|
|
1571
|
-
|
|
1577
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$inboundSchema,
|
|
1572
1578
|
key: z.string(),
|
|
1573
1579
|
}).transform((v) => {
|
|
1574
1580
|
return remap$(v, {
|
|
@@ -1600,8 +1606,8 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1600
1606
|
> = z.object({
|
|
1601
1607
|
id: z.string(),
|
|
1602
1608
|
description: z.string(),
|
|
1603
|
-
created: z.string().default("2025-10-
|
|
1604
|
-
updated: z.string().default("2025-10-
|
|
1609
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
1610
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
1605
1611
|
guardrailConfig: z.union([
|
|
1606
1612
|
z.lazy(() =>
|
|
1607
1613
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -1612,7 +1618,7 @@ export const DataTypescript$outboundSchema: z.ZodType<
|
|
|
1612
1618
|
]).optional(),
|
|
1613
1619
|
code: z.string(),
|
|
1614
1620
|
type:
|
|
1615
|
-
|
|
1621
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBody7Type$outboundSchema,
|
|
1616
1622
|
key: z.string(),
|
|
1617
1623
|
}).transform((v) => {
|
|
1618
1624
|
return remap$(v, {
|
|
@@ -1951,26 +1957,28 @@ export function getEvalsDataEvalsResponse200GuardrailConfigFromJSON(
|
|
|
1951
1957
|
}
|
|
1952
1958
|
|
|
1953
1959
|
/** @internal */
|
|
1954
|
-
export const
|
|
1955
|
-
z.ZodNativeEnum<
|
|
1956
|
-
|
|
1960
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema:
|
|
1961
|
+
z.ZodNativeEnum<
|
|
1962
|
+
typeof GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType
|
|
1963
|
+
> = z.nativeEnum(GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType);
|
|
1957
1964
|
|
|
1958
1965
|
/** @internal */
|
|
1959
|
-
export const
|
|
1960
|
-
z.ZodNativeEnum<
|
|
1961
|
-
|
|
1966
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema:
|
|
1967
|
+
z.ZodNativeEnum<
|
|
1968
|
+
typeof GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType
|
|
1969
|
+
> = GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema;
|
|
1962
1970
|
|
|
1963
1971
|
/**
|
|
1964
1972
|
* @internal
|
|
1965
1973
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1966
1974
|
*/
|
|
1967
|
-
export namespace
|
|
1968
|
-
/** @deprecated use `
|
|
1975
|
+
export namespace GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$ {
|
|
1976
|
+
/** @deprecated use `GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema` instead. */
|
|
1969
1977
|
export const inboundSchema =
|
|
1970
|
-
|
|
1971
|
-
/** @deprecated use `
|
|
1978
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema;
|
|
1979
|
+
/** @deprecated use `GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema` instead. */
|
|
1972
1980
|
export const outboundSchema =
|
|
1973
|
-
|
|
1981
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema;
|
|
1974
1982
|
}
|
|
1975
1983
|
|
|
1976
1984
|
/** @internal */
|
|
@@ -2002,13 +2010,14 @@ export const DataRagas$inboundSchema: z.ZodType<
|
|
|
2002
2010
|
> = z.object({
|
|
2003
2011
|
_id: z.string(),
|
|
2004
2012
|
description: z.string(),
|
|
2005
|
-
created: z.string().default("2025-10-
|
|
2006
|
-
updated: z.string().default("2025-10-
|
|
2013
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
2014
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
2007
2015
|
guardrail_config: z.union([
|
|
2008
2016
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
2009
2017
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
2010
2018
|
]).optional(),
|
|
2011
|
-
type:
|
|
2019
|
+
type:
|
|
2020
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema,
|
|
2012
2021
|
ragas_metric: DataRagasMetric$inboundSchema,
|
|
2013
2022
|
key: z.string(),
|
|
2014
2023
|
model: z.string(),
|
|
@@ -2044,13 +2053,14 @@ export const DataRagas$outboundSchema: z.ZodType<
|
|
|
2044
2053
|
> = z.object({
|
|
2045
2054
|
id: z.string(),
|
|
2046
2055
|
description: z.string(),
|
|
2047
|
-
created: z.string().default("2025-10-
|
|
2048
|
-
updated: z.string().default("2025-10-
|
|
2056
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
2057
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
2049
2058
|
guardrailConfig: z.union([
|
|
2050
2059
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
2051
2060
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema),
|
|
2052
2061
|
]).optional(),
|
|
2053
|
-
type:
|
|
2062
|
+
type:
|
|
2063
|
+
GetEvalsDataEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema,
|
|
2054
2064
|
ragasMetric: DataRagasMetric$outboundSchema,
|
|
2055
2065
|
key: z.string(),
|
|
2056
2066
|
model: z.string(),
|
|
@@ -2386,24 +2396,26 @@ export function getEvalsDataEvalsResponseGuardrailConfigFromJSON(
|
|
|
2386
2396
|
}
|
|
2387
2397
|
|
|
2388
2398
|
/** @internal */
|
|
2389
|
-
export const
|
|
2390
|
-
typeof
|
|
2391
|
-
|
|
2399
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema:
|
|
2400
|
+
z.ZodNativeEnum<typeof GetEvalsDataEvalsResponse200ApplicationJSONType> = z
|
|
2401
|
+
.nativeEnum(GetEvalsDataEvalsResponse200ApplicationJSONType);
|
|
2392
2402
|
|
|
2393
2403
|
/** @internal */
|
|
2394
|
-
export const
|
|
2395
|
-
typeof
|
|
2396
|
-
|
|
2404
|
+
export const GetEvalsDataEvalsResponse200ApplicationJSONType$outboundSchema:
|
|
2405
|
+
z.ZodNativeEnum<typeof GetEvalsDataEvalsResponse200ApplicationJSONType> =
|
|
2406
|
+
GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema;
|
|
2397
2407
|
|
|
2398
2408
|
/**
|
|
2399
2409
|
* @internal
|
|
2400
2410
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2401
2411
|
*/
|
|
2402
|
-
export namespace
|
|
2403
|
-
/** @deprecated use `
|
|
2404
|
-
export const inboundSchema =
|
|
2405
|
-
|
|
2406
|
-
|
|
2412
|
+
export namespace GetEvalsDataEvalsResponse200ApplicationJSONType$ {
|
|
2413
|
+
/** @deprecated use `GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
2414
|
+
export const inboundSchema =
|
|
2415
|
+
GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema;
|
|
2416
|
+
/** @deprecated use `GetEvalsDataEvalsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
2417
|
+
export const outboundSchema =
|
|
2418
|
+
GetEvalsDataEvalsResponse200ApplicationJSONType$outboundSchema;
|
|
2407
2419
|
}
|
|
2408
2420
|
|
|
2409
2421
|
/** @internal */
|
|
@@ -5512,13 +5524,13 @@ export const DataFunction$inboundSchema: z.ZodType<
|
|
|
5512
5524
|
> = z.object({
|
|
5513
5525
|
_id: z.string(),
|
|
5514
5526
|
description: z.string(),
|
|
5515
|
-
created: z.string().default("2025-10-
|
|
5516
|
-
updated: z.string().default("2025-10-
|
|
5527
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
5528
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
5517
5529
|
guardrail_config: z.union([
|
|
5518
5530
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
5519
5531
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
5520
5532
|
]).optional(),
|
|
5521
|
-
type:
|
|
5533
|
+
type: GetEvalsDataEvalsResponse200ApplicationJSONType$inboundSchema,
|
|
5522
5534
|
function_params: z.union([
|
|
5523
5535
|
z.lazy(() => GetEvalsFunctionParams12$inboundSchema),
|
|
5524
5536
|
z.lazy(() => GetEvalsFunctionParams1$inboundSchema),
|
|
@@ -5623,13 +5635,13 @@ export const DataFunction$outboundSchema: z.ZodType<
|
|
|
5623
5635
|
> = z.object({
|
|
5624
5636
|
id: z.string(),
|
|
5625
5637
|
description: z.string(),
|
|
5626
|
-
created: z.string().default("2025-10-
|
|
5627
|
-
updated: z.string().default("2025-10-
|
|
5638
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
5639
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
5628
5640
|
guardrailConfig: z.union([
|
|
5629
5641
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
5630
5642
|
z.lazy(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
5631
5643
|
]).optional(),
|
|
5632
|
-
type:
|
|
5644
|
+
type: GetEvalsDataEvalsResponse200ApplicationJSONType$outboundSchema,
|
|
5633
5645
|
functionParams: z.union([
|
|
5634
5646
|
z.lazy(() => GetEvalsFunctionParams12$outboundSchema),
|
|
5635
5647
|
z.lazy(() => GetEvalsFunctionParams1$outboundSchema),
|
|
@@ -5978,24 +5990,24 @@ export function getEvalsDataEvalsGuardrailConfigFromJSON(
|
|
|
5978
5990
|
}
|
|
5979
5991
|
|
|
5980
5992
|
/** @internal */
|
|
5981
|
-
export const
|
|
5982
|
-
typeof
|
|
5983
|
-
> = z.nativeEnum(
|
|
5993
|
+
export const GetEvalsDataEvalsResponse200Type$inboundSchema: z.ZodNativeEnum<
|
|
5994
|
+
typeof GetEvalsDataEvalsResponse200Type
|
|
5995
|
+
> = z.nativeEnum(GetEvalsDataEvalsResponse200Type);
|
|
5984
5996
|
|
|
5985
5997
|
/** @internal */
|
|
5986
|
-
export const
|
|
5987
|
-
typeof
|
|
5988
|
-
> =
|
|
5998
|
+
export const GetEvalsDataEvalsResponse200Type$outboundSchema: z.ZodNativeEnum<
|
|
5999
|
+
typeof GetEvalsDataEvalsResponse200Type
|
|
6000
|
+
> = GetEvalsDataEvalsResponse200Type$inboundSchema;
|
|
5989
6001
|
|
|
5990
6002
|
/**
|
|
5991
6003
|
* @internal
|
|
5992
6004
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
5993
6005
|
*/
|
|
5994
|
-
export namespace
|
|
5995
|
-
/** @deprecated use `
|
|
5996
|
-
export const inboundSchema =
|
|
5997
|
-
/** @deprecated use `
|
|
5998
|
-
export const outboundSchema =
|
|
6006
|
+
export namespace GetEvalsDataEvalsResponse200Type$ {
|
|
6007
|
+
/** @deprecated use `GetEvalsDataEvalsResponse200Type$inboundSchema` instead. */
|
|
6008
|
+
export const inboundSchema = GetEvalsDataEvalsResponse200Type$inboundSchema;
|
|
6009
|
+
/** @deprecated use `GetEvalsDataEvalsResponse200Type$outboundSchema` instead. */
|
|
6010
|
+
export const outboundSchema = GetEvalsDataEvalsResponse200Type$outboundSchema;
|
|
5999
6011
|
}
|
|
6000
6012
|
|
|
6001
6013
|
/** @internal */
|
|
@@ -6006,14 +6018,14 @@ export const DataPython$inboundSchema: z.ZodType<
|
|
|
6006
6018
|
> = z.object({
|
|
6007
6019
|
_id: z.string(),
|
|
6008
6020
|
description: z.string(),
|
|
6009
|
-
created: z.string().default("2025-10-
|
|
6010
|
-
updated: z.string().default("2025-10-
|
|
6021
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6022
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6011
6023
|
guardrail_config: z.union([
|
|
6012
6024
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
6013
6025
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema),
|
|
6014
6026
|
]).optional(),
|
|
6015
6027
|
code: z.string(),
|
|
6016
|
-
type:
|
|
6028
|
+
type: GetEvalsDataEvalsResponse200Type$inboundSchema,
|
|
6017
6029
|
key: z.string(),
|
|
6018
6030
|
}).transform((v) => {
|
|
6019
6031
|
return remap$(v, {
|
|
@@ -6045,14 +6057,14 @@ export const DataPython$outboundSchema: z.ZodType<
|
|
|
6045
6057
|
> = z.object({
|
|
6046
6058
|
id: z.string(),
|
|
6047
6059
|
description: z.string(),
|
|
6048
|
-
created: z.string().default("2025-10-
|
|
6049
|
-
updated: z.string().default("2025-10-
|
|
6060
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6061
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6050
6062
|
guardrailConfig: z.union([
|
|
6051
6063
|
z.lazy(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
6052
6064
|
z.lazy(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema),
|
|
6053
6065
|
]).optional(),
|
|
6054
6066
|
code: z.string(),
|
|
6055
|
-
type:
|
|
6067
|
+
type: GetEvalsDataEvalsResponse200Type$outboundSchema,
|
|
6056
6068
|
key: z.string(),
|
|
6057
6069
|
}).transform((v) => {
|
|
6058
6070
|
return remap$(v, {
|
|
@@ -6345,24 +6357,24 @@ export function getEvalsDataGuardrailConfigFromJSON(
|
|
|
6345
6357
|
}
|
|
6346
6358
|
|
|
6347
6359
|
/** @internal */
|
|
6348
|
-
export const
|
|
6349
|
-
typeof
|
|
6350
|
-
> = z.nativeEnum(
|
|
6360
|
+
export const GetEvalsDataEvalsResponseType$inboundSchema: z.ZodNativeEnum<
|
|
6361
|
+
typeof GetEvalsDataEvalsResponseType
|
|
6362
|
+
> = z.nativeEnum(GetEvalsDataEvalsResponseType);
|
|
6351
6363
|
|
|
6352
6364
|
/** @internal */
|
|
6353
|
-
export const
|
|
6354
|
-
typeof
|
|
6355
|
-
> =
|
|
6365
|
+
export const GetEvalsDataEvalsResponseType$outboundSchema: z.ZodNativeEnum<
|
|
6366
|
+
typeof GetEvalsDataEvalsResponseType
|
|
6367
|
+
> = GetEvalsDataEvalsResponseType$inboundSchema;
|
|
6356
6368
|
|
|
6357
6369
|
/**
|
|
6358
6370
|
* @internal
|
|
6359
6371
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6360
6372
|
*/
|
|
6361
|
-
export namespace
|
|
6362
|
-
/** @deprecated use `
|
|
6363
|
-
export const inboundSchema =
|
|
6364
|
-
/** @deprecated use `
|
|
6365
|
-
export const outboundSchema =
|
|
6373
|
+
export namespace GetEvalsDataEvalsResponseType$ {
|
|
6374
|
+
/** @deprecated use `GetEvalsDataEvalsResponseType$inboundSchema` instead. */
|
|
6375
|
+
export const inboundSchema = GetEvalsDataEvalsResponseType$inboundSchema;
|
|
6376
|
+
/** @deprecated use `GetEvalsDataEvalsResponseType$outboundSchema` instead. */
|
|
6377
|
+
export const outboundSchema = GetEvalsDataEvalsResponseType$outboundSchema;
|
|
6366
6378
|
}
|
|
6367
6379
|
|
|
6368
6380
|
/** @internal */
|
|
@@ -6392,13 +6404,13 @@ export const DataHTTP$inboundSchema: z.ZodType<
|
|
|
6392
6404
|
> = z.object({
|
|
6393
6405
|
_id: z.string(),
|
|
6394
6406
|
description: z.string(),
|
|
6395
|
-
created: z.string().default("2025-10-
|
|
6396
|
-
updated: z.string().default("2025-10-
|
|
6407
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6408
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6397
6409
|
guardrail_config: z.union([
|
|
6398
6410
|
z.lazy(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
6399
6411
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$inboundSchema),
|
|
6400
6412
|
]).optional(),
|
|
6401
|
-
type:
|
|
6413
|
+
type: GetEvalsDataEvalsResponseType$inboundSchema,
|
|
6402
6414
|
url: z.string(),
|
|
6403
6415
|
method: DataMethod$inboundSchema,
|
|
6404
6416
|
headers: z.record(z.string()),
|
|
@@ -6437,13 +6449,13 @@ export const DataHTTP$outboundSchema: z.ZodType<
|
|
|
6437
6449
|
> = z.object({
|
|
6438
6450
|
id: z.string(),
|
|
6439
6451
|
description: z.string(),
|
|
6440
|
-
created: z.string().default("2025-10-
|
|
6441
|
-
updated: z.string().default("2025-10-
|
|
6452
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6453
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6442
6454
|
guardrailConfig: z.union([
|
|
6443
6455
|
z.lazy(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
6444
6456
|
z.lazy(() => GetEvalsGuardrailConfigBoolean$outboundSchema),
|
|
6445
6457
|
]).optional(),
|
|
6446
|
-
type:
|
|
6458
|
+
type: GetEvalsDataEvalsResponseType$outboundSchema,
|
|
6447
6459
|
url: z.string(),
|
|
6448
6460
|
method: DataMethod$outboundSchema,
|
|
6449
6461
|
headers: z.record(z.string()),
|
|
@@ -6775,24 +6787,24 @@ export function dataGuardrailConfigFromJSON(
|
|
|
6775
6787
|
}
|
|
6776
6788
|
|
|
6777
6789
|
/** @internal */
|
|
6778
|
-
export const
|
|
6779
|
-
typeof
|
|
6780
|
-
> = z.nativeEnum(
|
|
6790
|
+
export const GetEvalsDataEvalsType$inboundSchema: z.ZodNativeEnum<
|
|
6791
|
+
typeof GetEvalsDataEvalsType
|
|
6792
|
+
> = z.nativeEnum(GetEvalsDataEvalsType);
|
|
6781
6793
|
|
|
6782
6794
|
/** @internal */
|
|
6783
|
-
export const
|
|
6784
|
-
typeof
|
|
6785
|
-
> =
|
|
6795
|
+
export const GetEvalsDataEvalsType$outboundSchema: z.ZodNativeEnum<
|
|
6796
|
+
typeof GetEvalsDataEvalsType
|
|
6797
|
+
> = GetEvalsDataEvalsType$inboundSchema;
|
|
6786
6798
|
|
|
6787
6799
|
/**
|
|
6788
6800
|
* @internal
|
|
6789
6801
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
6790
6802
|
*/
|
|
6791
|
-
export namespace
|
|
6792
|
-
/** @deprecated use `
|
|
6793
|
-
export const inboundSchema =
|
|
6794
|
-
/** @deprecated use `
|
|
6795
|
-
export const outboundSchema =
|
|
6803
|
+
export namespace GetEvalsDataEvalsType$ {
|
|
6804
|
+
/** @deprecated use `GetEvalsDataEvalsType$inboundSchema` instead. */
|
|
6805
|
+
export const inboundSchema = GetEvalsDataEvalsType$inboundSchema;
|
|
6806
|
+
/** @deprecated use `GetEvalsDataEvalsType$outboundSchema` instead. */
|
|
6807
|
+
export const outboundSchema = GetEvalsDataEvalsType$outboundSchema;
|
|
6796
6808
|
}
|
|
6797
6809
|
|
|
6798
6810
|
/** @internal */
|
|
@@ -6803,8 +6815,8 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6803
6815
|
> = z.object({
|
|
6804
6816
|
_id: z.string(),
|
|
6805
6817
|
description: z.string(),
|
|
6806
|
-
created: z.string().default("2025-10-
|
|
6807
|
-
updated: z.string().default("2025-10-
|
|
6818
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6819
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6808
6820
|
guardrail_config: z.union([
|
|
6809
6821
|
z.lazy(() =>
|
|
6810
6822
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema
|
|
@@ -6813,7 +6825,7 @@ export const DataJSON$inboundSchema: z.ZodType<
|
|
|
6813
6825
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema
|
|
6814
6826
|
),
|
|
6815
6827
|
]).optional(),
|
|
6816
|
-
type:
|
|
6828
|
+
type: GetEvalsDataEvalsType$inboundSchema,
|
|
6817
6829
|
schema: z.string(),
|
|
6818
6830
|
key: z.string(),
|
|
6819
6831
|
}).transform((v) => {
|
|
@@ -6846,8 +6858,8 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6846
6858
|
> = z.object({
|
|
6847
6859
|
id: z.string(),
|
|
6848
6860
|
description: z.string(),
|
|
6849
|
-
created: z.string().default("2025-10-
|
|
6850
|
-
updated: z.string().default("2025-10-
|
|
6861
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6862
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
6851
6863
|
guardrailConfig: z.union([
|
|
6852
6864
|
z.lazy(() =>
|
|
6853
6865
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema
|
|
@@ -6856,7 +6868,7 @@ export const DataJSON$outboundSchema: z.ZodType<
|
|
|
6856
6868
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema
|
|
6857
6869
|
),
|
|
6858
6870
|
]).optional(),
|
|
6859
|
-
type:
|
|
6871
|
+
type: GetEvalsDataEvalsType$outboundSchema,
|
|
6860
6872
|
schema: z.string(),
|
|
6861
6873
|
key: z.string(),
|
|
6862
6874
|
}).transform((v) => {
|
|
@@ -7206,22 +7218,24 @@ export function getEvalsDataEvalsResponse200ApplicationJSONResponseBodyGuardrail
|
|
|
7206
7218
|
}
|
|
7207
7219
|
|
|
7208
7220
|
/** @internal */
|
|
7209
|
-
export const
|
|
7210
|
-
|
|
7221
|
+
export const GetEvalsDataType$inboundSchema: z.ZodNativeEnum<
|
|
7222
|
+
typeof GetEvalsDataType
|
|
7223
|
+
> = z.nativeEnum(GetEvalsDataType);
|
|
7211
7224
|
|
|
7212
7225
|
/** @internal */
|
|
7213
|
-
export const
|
|
7214
|
-
|
|
7226
|
+
export const GetEvalsDataType$outboundSchema: z.ZodNativeEnum<
|
|
7227
|
+
typeof GetEvalsDataType
|
|
7228
|
+
> = GetEvalsDataType$inboundSchema;
|
|
7215
7229
|
|
|
7216
7230
|
/**
|
|
7217
7231
|
* @internal
|
|
7218
7232
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7219
7233
|
*/
|
|
7220
|
-
export namespace
|
|
7221
|
-
/** @deprecated use `
|
|
7222
|
-
export const inboundSchema =
|
|
7223
|
-
/** @deprecated use `
|
|
7224
|
-
export const outboundSchema =
|
|
7234
|
+
export namespace GetEvalsDataType$ {
|
|
7235
|
+
/** @deprecated use `GetEvalsDataType$inboundSchema` instead. */
|
|
7236
|
+
export const inboundSchema = GetEvalsDataType$inboundSchema;
|
|
7237
|
+
/** @deprecated use `GetEvalsDataType$outboundSchema` instead. */
|
|
7238
|
+
export const outboundSchema = GetEvalsDataType$outboundSchema;
|
|
7225
7239
|
}
|
|
7226
7240
|
|
|
7227
7241
|
/** @internal */
|
|
@@ -7229,8 +7243,8 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7229
7243
|
z.object({
|
|
7230
7244
|
_id: z.string(),
|
|
7231
7245
|
description: z.string(),
|
|
7232
|
-
created: z.string().default("2025-10-
|
|
7233
|
-
updated: z.string().default("2025-10-
|
|
7246
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7247
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7234
7248
|
guardrail_config: z.union([
|
|
7235
7249
|
z.lazy(() =>
|
|
7236
7250
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7239,7 +7253,7 @@ export const DataLLM$inboundSchema: z.ZodType<DataLLM, z.ZodTypeDef, unknown> =
|
|
|
7239
7253
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema
|
|
7240
7254
|
),
|
|
7241
7255
|
]).optional(),
|
|
7242
|
-
type:
|
|
7256
|
+
type: GetEvalsDataType$inboundSchema,
|
|
7243
7257
|
prompt: z.string(),
|
|
7244
7258
|
key: z.string(),
|
|
7245
7259
|
model: z.string(),
|
|
@@ -7274,8 +7288,8 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7274
7288
|
> = z.object({
|
|
7275
7289
|
id: z.string(),
|
|
7276
7290
|
description: z.string(),
|
|
7277
|
-
created: z.string().default("2025-10-
|
|
7278
|
-
updated: z.string().default("2025-10-
|
|
7291
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7292
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7279
7293
|
guardrailConfig: z.union([
|
|
7280
7294
|
z.lazy(() =>
|
|
7281
7295
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -7284,7 +7298,7 @@ export const DataLLM$outboundSchema: z.ZodType<
|
|
|
7284
7298
|
GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema
|
|
7285
7299
|
),
|
|
7286
7300
|
]).optional(),
|
|
7287
|
-
type:
|
|
7301
|
+
type: GetEvalsDataType$outboundSchema,
|
|
7288
7302
|
prompt: z.string(),
|
|
7289
7303
|
key: z.string(),
|
|
7290
7304
|
model: z.string(),
|