@orq-ai/node 3.13.8 → 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
|
@@ -60,11 +60,11 @@ export type CreateEvalRequestBodyEvalsOutputType = ClosedEnum<
|
|
|
60
60
|
typeof CreateEvalRequestBodyEvalsOutputType
|
|
61
61
|
>;
|
|
62
62
|
|
|
63
|
-
export const
|
|
63
|
+
export const CreateEvalRequestBodyEvalsRequest4Type = {
|
|
64
64
|
PythonEval: "python_eval",
|
|
65
65
|
} as const;
|
|
66
|
-
export type
|
|
67
|
-
typeof
|
|
66
|
+
export type CreateEvalRequestBodyEvalsRequest4Type = ClosedEnum<
|
|
67
|
+
typeof CreateEvalRequestBodyEvalsRequest4Type
|
|
68
68
|
>;
|
|
69
69
|
|
|
70
70
|
export type Python = {
|
|
@@ -74,9 +74,15 @@ export type Python = {
|
|
|
74
74
|
| undefined;
|
|
75
75
|
outputType: CreateEvalRequestBodyEvalsOutputType;
|
|
76
76
|
code: string;
|
|
77
|
-
type:
|
|
77
|
+
type: CreateEvalRequestBodyEvalsRequest4Type;
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
80
|
+
*
|
|
81
|
+
* @remarks
|
|
82
|
+
*
|
|
83
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
84
|
+
*
|
|
85
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
80
86
|
*/
|
|
81
87
|
path: string;
|
|
82
88
|
description?: string | undefined;
|
|
@@ -135,11 +141,11 @@ export type CreateEvalRequestBodyOutputType = ClosedEnum<
|
|
|
135
141
|
typeof CreateEvalRequestBodyOutputType
|
|
136
142
|
>;
|
|
137
143
|
|
|
138
|
-
export const
|
|
144
|
+
export const CreateEvalRequestBodyEvalsRequestType = {
|
|
139
145
|
HttpEval: "http_eval",
|
|
140
146
|
} as const;
|
|
141
|
-
export type
|
|
142
|
-
typeof
|
|
147
|
+
export type CreateEvalRequestBodyEvalsRequestType = ClosedEnum<
|
|
148
|
+
typeof CreateEvalRequestBodyEvalsRequestType
|
|
143
149
|
>;
|
|
144
150
|
|
|
145
151
|
export const RequestBodyMethod = {
|
|
@@ -154,13 +160,19 @@ export type RequestBodyHTTP = {
|
|
|
154
160
|
| CreateEvalGuardrailConfigBoolean
|
|
155
161
|
| undefined;
|
|
156
162
|
outputType: CreateEvalRequestBodyOutputType;
|
|
157
|
-
type:
|
|
163
|
+
type: CreateEvalRequestBodyEvalsRequestType;
|
|
158
164
|
url: string;
|
|
159
165
|
method: RequestBodyMethod;
|
|
160
166
|
headers: { [k: string]: string };
|
|
161
167
|
payload: { [k: string]: any };
|
|
162
168
|
/**
|
|
163
|
-
*
|
|
169
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
170
|
+
*
|
|
171
|
+
* @remarks
|
|
172
|
+
*
|
|
173
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
174
|
+
*
|
|
175
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
164
176
|
*/
|
|
165
177
|
path: string;
|
|
166
178
|
description?: string | undefined;
|
|
@@ -215,20 +227,26 @@ export const RequestBodyOutputType = {
|
|
|
215
227
|
} as const;
|
|
216
228
|
export type RequestBodyOutputType = ClosedEnum<typeof RequestBodyOutputType>;
|
|
217
229
|
|
|
218
|
-
export const
|
|
230
|
+
export const CreateEvalRequestBodyEvalsType = {
|
|
219
231
|
JsonSchema: "json_schema",
|
|
220
232
|
} as const;
|
|
221
|
-
export type
|
|
222
|
-
typeof
|
|
233
|
+
export type CreateEvalRequestBodyEvalsType = ClosedEnum<
|
|
234
|
+
typeof CreateEvalRequestBodyEvalsType
|
|
223
235
|
>;
|
|
224
236
|
|
|
225
237
|
export type Json = {
|
|
226
238
|
guardrailConfig?: GuardrailConfigNumber | GuardrailConfigBoolean | undefined;
|
|
227
239
|
outputType: RequestBodyOutputType;
|
|
228
|
-
type:
|
|
240
|
+
type: CreateEvalRequestBodyEvalsType;
|
|
229
241
|
schema: string;
|
|
230
242
|
/**
|
|
231
|
-
*
|
|
243
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
244
|
+
*
|
|
245
|
+
* @remarks
|
|
246
|
+
*
|
|
247
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
248
|
+
*
|
|
249
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
232
250
|
*/
|
|
233
251
|
path: string;
|
|
234
252
|
description?: string | undefined;
|
|
@@ -279,18 +297,26 @@ export const OutputType = {
|
|
|
279
297
|
} as const;
|
|
280
298
|
export type OutputType = ClosedEnum<typeof OutputType>;
|
|
281
299
|
|
|
282
|
-
export const
|
|
300
|
+
export const CreateEvalRequestBodyType = {
|
|
283
301
|
LlmEval: "llm_eval",
|
|
284
302
|
} as const;
|
|
285
|
-
export type
|
|
303
|
+
export type CreateEvalRequestBodyType = ClosedEnum<
|
|
304
|
+
typeof CreateEvalRequestBodyType
|
|
305
|
+
>;
|
|
286
306
|
|
|
287
307
|
export type Llm = {
|
|
288
308
|
guardrailConfig?: NumberT | Boolean | undefined;
|
|
289
309
|
outputType: OutputType;
|
|
290
|
-
type:
|
|
310
|
+
type: CreateEvalRequestBodyType;
|
|
291
311
|
prompt: string;
|
|
292
312
|
/**
|
|
293
|
-
*
|
|
313
|
+
* Entity storage path in the format: `project/folder/subfolder/...`
|
|
314
|
+
*
|
|
315
|
+
* @remarks
|
|
316
|
+
*
|
|
317
|
+
* The first element identifies the project, followed by nested folders (auto-created as needed).
|
|
318
|
+
*
|
|
319
|
+
* With project-based API keys, the first element is treated as a folder name, as the project is predetermined by the API key.
|
|
294
320
|
*/
|
|
295
321
|
path: string;
|
|
296
322
|
description?: string | undefined;
|
|
@@ -428,11 +454,11 @@ export type CreateEvalResponseBodyEvalsResponse200ApplicationJSONGuardrailConfig
|
|
|
428
454
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number
|
|
429
455
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean;
|
|
430
456
|
|
|
431
|
-
export const
|
|
457
|
+
export const CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type = {
|
|
432
458
|
Ragas: "ragas",
|
|
433
459
|
} as const;
|
|
434
|
-
export type
|
|
435
|
-
ClosedEnum<typeof
|
|
460
|
+
export type CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type =
|
|
461
|
+
ClosedEnum<typeof CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type>;
|
|
436
462
|
|
|
437
463
|
export const RagasMetric = {
|
|
438
464
|
ContextPrecision: "context_precision",
|
|
@@ -459,7 +485,7 @@ export type Ragas = {
|
|
|
459
485
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number
|
|
460
486
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean
|
|
461
487
|
| undefined;
|
|
462
|
-
type:
|
|
488
|
+
type: CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type;
|
|
463
489
|
ragasMetric: RagasMetric;
|
|
464
490
|
key: string;
|
|
465
491
|
model: string;
|
|
@@ -519,12 +545,11 @@ export type CreateEvalResponseBodyEvalsResponse200GuardrailConfig =
|
|
|
519
545
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number
|
|
520
546
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean;
|
|
521
547
|
|
|
522
|
-
export const
|
|
548
|
+
export const CreateEvalResponseBodyEvalsResponse200ApplicationJSONType = {
|
|
523
549
|
FunctionEval: "function_eval",
|
|
524
550
|
} as const;
|
|
525
|
-
export type
|
|
526
|
-
typeof
|
|
527
|
-
>;
|
|
551
|
+
export type CreateEvalResponseBodyEvalsResponse200ApplicationJSONType =
|
|
552
|
+
ClosedEnum<typeof CreateEvalResponseBodyEvalsResponse200ApplicationJSONType>;
|
|
528
553
|
|
|
529
554
|
export const CreateEvalFunctionParamsEvalsResponse200ApplicationJSONResponseBody535Type =
|
|
530
555
|
{
|
|
@@ -1055,7 +1080,7 @@ export type ResponseBodyFunction = {
|
|
|
1055
1080
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number
|
|
1056
1081
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean
|
|
1057
1082
|
| undefined;
|
|
1058
|
-
type:
|
|
1083
|
+
type: CreateEvalResponseBodyEvalsResponse200ApplicationJSONType;
|
|
1059
1084
|
functionParams:
|
|
1060
1085
|
| FunctionParams12
|
|
1061
1086
|
| FunctionParams1
|
|
@@ -1149,11 +1174,11 @@ export type CreateEvalResponseBodyEvalsResponseGuardrailConfig =
|
|
|
1149
1174
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber
|
|
1150
1175
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean;
|
|
1151
1176
|
|
|
1152
|
-
export const
|
|
1177
|
+
export const CreateEvalResponseBodyEvalsResponse200Type = {
|
|
1153
1178
|
PythonEval: "python_eval",
|
|
1154
1179
|
} as const;
|
|
1155
|
-
export type
|
|
1156
|
-
typeof
|
|
1180
|
+
export type CreateEvalResponseBodyEvalsResponse200Type = ClosedEnum<
|
|
1181
|
+
typeof CreateEvalResponseBodyEvalsResponse200Type
|
|
1157
1182
|
>;
|
|
1158
1183
|
|
|
1159
1184
|
export type ResponseBodyPython = {
|
|
@@ -1166,7 +1191,7 @@ export type ResponseBodyPython = {
|
|
|
1166
1191
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean
|
|
1167
1192
|
| undefined;
|
|
1168
1193
|
code: string;
|
|
1169
|
-
type:
|
|
1194
|
+
type: CreateEvalResponseBodyEvalsResponse200Type;
|
|
1170
1195
|
key: string;
|
|
1171
1196
|
};
|
|
1172
1197
|
|
|
@@ -1221,11 +1246,11 @@ export type CreateEvalResponseBodyEvalsGuardrailConfig =
|
|
|
1221
1246
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber
|
|
1222
1247
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean;
|
|
1223
1248
|
|
|
1224
|
-
export const
|
|
1249
|
+
export const CreateEvalResponseBodyEvalsResponseType = {
|
|
1225
1250
|
HttpEval: "http_eval",
|
|
1226
1251
|
} as const;
|
|
1227
|
-
export type
|
|
1228
|
-
typeof
|
|
1252
|
+
export type CreateEvalResponseBodyEvalsResponseType = ClosedEnum<
|
|
1253
|
+
typeof CreateEvalResponseBodyEvalsResponseType
|
|
1229
1254
|
>;
|
|
1230
1255
|
|
|
1231
1256
|
export const ResponseBodyMethod = {
|
|
@@ -1243,7 +1268,7 @@ export type ResponseBodyHTTP = {
|
|
|
1243
1268
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber
|
|
1244
1269
|
| CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean
|
|
1245
1270
|
| undefined;
|
|
1246
|
-
type:
|
|
1271
|
+
type: CreateEvalResponseBodyEvalsResponseType;
|
|
1247
1272
|
url: string;
|
|
1248
1273
|
method: ResponseBodyMethod;
|
|
1249
1274
|
headers: { [k: string]: string };
|
|
@@ -1298,11 +1323,11 @@ export type CreateEvalResponseBodyGuardrailConfig =
|
|
|
1298
1323
|
| CreateEvalGuardrailConfigEvalsResponse200Number
|
|
1299
1324
|
| CreateEvalGuardrailConfigEvalsResponse200Boolean;
|
|
1300
1325
|
|
|
1301
|
-
export const
|
|
1326
|
+
export const CreateEvalResponseBodyEvalsType = {
|
|
1302
1327
|
JsonSchema: "json_schema",
|
|
1303
1328
|
} as const;
|
|
1304
|
-
export type
|
|
1305
|
-
typeof
|
|
1329
|
+
export type CreateEvalResponseBodyEvalsType = ClosedEnum<
|
|
1330
|
+
typeof CreateEvalResponseBodyEvalsType
|
|
1306
1331
|
>;
|
|
1307
1332
|
|
|
1308
1333
|
export type ResponseBodyJSON = {
|
|
@@ -1314,7 +1339,7 @@ export type ResponseBodyJSON = {
|
|
|
1314
1339
|
| CreateEvalGuardrailConfigEvalsResponse200Number
|
|
1315
1340
|
| CreateEvalGuardrailConfigEvalsResponse200Boolean
|
|
1316
1341
|
| undefined;
|
|
1317
|
-
type:
|
|
1342
|
+
type: CreateEvalResponseBodyEvalsType;
|
|
1318
1343
|
schema: string;
|
|
1319
1344
|
key: string;
|
|
1320
1345
|
};
|
|
@@ -1362,10 +1387,12 @@ export type ResponseBodyGuardrailConfig =
|
|
|
1362
1387
|
| CreateEvalGuardrailConfigEvalsResponseNumber
|
|
1363
1388
|
| CreateEvalGuardrailConfigEvalsResponseBoolean;
|
|
1364
1389
|
|
|
1365
|
-
export const
|
|
1390
|
+
export const CreateEvalResponseBodyType = {
|
|
1366
1391
|
LlmEval: "llm_eval",
|
|
1367
1392
|
} as const;
|
|
1368
|
-
export type
|
|
1393
|
+
export type CreateEvalResponseBodyType = ClosedEnum<
|
|
1394
|
+
typeof CreateEvalResponseBodyType
|
|
1395
|
+
>;
|
|
1369
1396
|
|
|
1370
1397
|
export type ResponseBodyLLM = {
|
|
1371
1398
|
id: string;
|
|
@@ -1376,7 +1403,7 @@ export type ResponseBodyLLM = {
|
|
|
1376
1403
|
| CreateEvalGuardrailConfigEvalsResponseNumber
|
|
1377
1404
|
| CreateEvalGuardrailConfigEvalsResponseBoolean
|
|
1378
1405
|
| undefined;
|
|
1379
|
-
type:
|
|
1406
|
+
type: CreateEvalResponseBodyType;
|
|
1380
1407
|
prompt: string;
|
|
1381
1408
|
key: string;
|
|
1382
1409
|
model: string;
|
|
@@ -1694,27 +1721,27 @@ export namespace CreateEvalRequestBodyEvalsOutputType$ {
|
|
|
1694
1721
|
}
|
|
1695
1722
|
|
|
1696
1723
|
/** @internal */
|
|
1697
|
-
export const
|
|
1698
|
-
z.ZodNativeEnum<typeof
|
|
1699
|
-
|
|
1724
|
+
export const CreateEvalRequestBodyEvalsRequest4Type$inboundSchema:
|
|
1725
|
+
z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsRequest4Type> = z.nativeEnum(
|
|
1726
|
+
CreateEvalRequestBodyEvalsRequest4Type,
|
|
1700
1727
|
);
|
|
1701
1728
|
|
|
1702
1729
|
/** @internal */
|
|
1703
|
-
export const
|
|
1704
|
-
z.ZodNativeEnum<typeof
|
|
1705
|
-
|
|
1730
|
+
export const CreateEvalRequestBodyEvalsRequest4Type$outboundSchema:
|
|
1731
|
+
z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsRequest4Type> =
|
|
1732
|
+
CreateEvalRequestBodyEvalsRequest4Type$inboundSchema;
|
|
1706
1733
|
|
|
1707
1734
|
/**
|
|
1708
1735
|
* @internal
|
|
1709
1736
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
1710
1737
|
*/
|
|
1711
|
-
export namespace
|
|
1712
|
-
/** @deprecated use `
|
|
1738
|
+
export namespace CreateEvalRequestBodyEvalsRequest4Type$ {
|
|
1739
|
+
/** @deprecated use `CreateEvalRequestBodyEvalsRequest4Type$inboundSchema` instead. */
|
|
1713
1740
|
export const inboundSchema =
|
|
1714
|
-
|
|
1715
|
-
/** @deprecated use `
|
|
1741
|
+
CreateEvalRequestBodyEvalsRequest4Type$inboundSchema;
|
|
1742
|
+
/** @deprecated use `CreateEvalRequestBodyEvalsRequest4Type$outboundSchema` instead. */
|
|
1716
1743
|
export const outboundSchema =
|
|
1717
|
-
|
|
1744
|
+
CreateEvalRequestBodyEvalsRequest4Type$outboundSchema;
|
|
1718
1745
|
}
|
|
1719
1746
|
|
|
1720
1747
|
/** @internal */
|
|
@@ -1726,7 +1753,7 @@ export const Python$inboundSchema: z.ZodType<Python, z.ZodTypeDef, unknown> = z
|
|
|
1726
1753
|
]).optional(),
|
|
1727
1754
|
output_type: CreateEvalRequestBodyEvalsOutputType$inboundSchema,
|
|
1728
1755
|
code: z.string(),
|
|
1729
|
-
type:
|
|
1756
|
+
type: CreateEvalRequestBodyEvalsRequest4Type$inboundSchema,
|
|
1730
1757
|
path: z.string(),
|
|
1731
1758
|
description: z.string().default(""),
|
|
1732
1759
|
key: z.string(),
|
|
@@ -1763,7 +1790,7 @@ export const Python$outboundSchema: z.ZodType<
|
|
|
1763
1790
|
]).optional(),
|
|
1764
1791
|
outputType: CreateEvalRequestBodyEvalsOutputType$outboundSchema,
|
|
1765
1792
|
code: z.string(),
|
|
1766
|
-
type:
|
|
1793
|
+
type: CreateEvalRequestBodyEvalsRequest4Type$outboundSchema,
|
|
1767
1794
|
path: z.string(),
|
|
1768
1795
|
description: z.string().default(""),
|
|
1769
1796
|
key: z.string(),
|
|
@@ -2081,24 +2108,27 @@ export namespace CreateEvalRequestBodyOutputType$ {
|
|
|
2081
2108
|
}
|
|
2082
2109
|
|
|
2083
2110
|
/** @internal */
|
|
2084
|
-
export const
|
|
2085
|
-
typeof
|
|
2086
|
-
|
|
2111
|
+
export const CreateEvalRequestBodyEvalsRequestType$inboundSchema:
|
|
2112
|
+
z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsRequestType> = z.nativeEnum(
|
|
2113
|
+
CreateEvalRequestBodyEvalsRequestType,
|
|
2114
|
+
);
|
|
2087
2115
|
|
|
2088
2116
|
/** @internal */
|
|
2089
|
-
export const
|
|
2090
|
-
typeof
|
|
2091
|
-
|
|
2117
|
+
export const CreateEvalRequestBodyEvalsRequestType$outboundSchema:
|
|
2118
|
+
z.ZodNativeEnum<typeof CreateEvalRequestBodyEvalsRequestType> =
|
|
2119
|
+
CreateEvalRequestBodyEvalsRequestType$inboundSchema;
|
|
2092
2120
|
|
|
2093
2121
|
/**
|
|
2094
2122
|
* @internal
|
|
2095
2123
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2096
2124
|
*/
|
|
2097
|
-
export namespace
|
|
2098
|
-
/** @deprecated use `
|
|
2099
|
-
export const inboundSchema =
|
|
2100
|
-
|
|
2101
|
-
|
|
2125
|
+
export namespace CreateEvalRequestBodyEvalsRequestType$ {
|
|
2126
|
+
/** @deprecated use `CreateEvalRequestBodyEvalsRequestType$inboundSchema` instead. */
|
|
2127
|
+
export const inboundSchema =
|
|
2128
|
+
CreateEvalRequestBodyEvalsRequestType$inboundSchema;
|
|
2129
|
+
/** @deprecated use `CreateEvalRequestBodyEvalsRequestType$outboundSchema` instead. */
|
|
2130
|
+
export const outboundSchema =
|
|
2131
|
+
CreateEvalRequestBodyEvalsRequestType$outboundSchema;
|
|
2102
2132
|
}
|
|
2103
2133
|
|
|
2104
2134
|
/** @internal */
|
|
@@ -2133,7 +2163,7 @@ export const RequestBodyHTTP$inboundSchema: z.ZodType<
|
|
|
2133
2163
|
z.lazy(() => CreateEvalGuardrailConfigBoolean$inboundSchema),
|
|
2134
2164
|
]).optional(),
|
|
2135
2165
|
output_type: CreateEvalRequestBodyOutputType$inboundSchema,
|
|
2136
|
-
type:
|
|
2166
|
+
type: CreateEvalRequestBodyEvalsRequestType$inboundSchema,
|
|
2137
2167
|
url: z.string(),
|
|
2138
2168
|
method: RequestBodyMethod$inboundSchema,
|
|
2139
2169
|
headers: z.record(z.string()),
|
|
@@ -2176,7 +2206,7 @@ export const RequestBodyHTTP$outboundSchema: z.ZodType<
|
|
|
2176
2206
|
z.lazy(() => CreateEvalGuardrailConfigBoolean$outboundSchema),
|
|
2177
2207
|
]).optional(),
|
|
2178
2208
|
outputType: CreateEvalRequestBodyOutputType$outboundSchema,
|
|
2179
|
-
type:
|
|
2209
|
+
type: CreateEvalRequestBodyEvalsRequestType$outboundSchema,
|
|
2180
2210
|
url: z.string(),
|
|
2181
2211
|
method: RequestBodyMethod$outboundSchema,
|
|
2182
2212
|
headers: z.record(z.string()),
|
|
@@ -2487,24 +2517,24 @@ export namespace RequestBodyOutputType$ {
|
|
|
2487
2517
|
}
|
|
2488
2518
|
|
|
2489
2519
|
/** @internal */
|
|
2490
|
-
export const
|
|
2491
|
-
typeof
|
|
2492
|
-
> = z.nativeEnum(
|
|
2520
|
+
export const CreateEvalRequestBodyEvalsType$inboundSchema: z.ZodNativeEnum<
|
|
2521
|
+
typeof CreateEvalRequestBodyEvalsType
|
|
2522
|
+
> = z.nativeEnum(CreateEvalRequestBodyEvalsType);
|
|
2493
2523
|
|
|
2494
2524
|
/** @internal */
|
|
2495
|
-
export const
|
|
2496
|
-
typeof
|
|
2497
|
-
> =
|
|
2525
|
+
export const CreateEvalRequestBodyEvalsType$outboundSchema: z.ZodNativeEnum<
|
|
2526
|
+
typeof CreateEvalRequestBodyEvalsType
|
|
2527
|
+
> = CreateEvalRequestBodyEvalsType$inboundSchema;
|
|
2498
2528
|
|
|
2499
2529
|
/**
|
|
2500
2530
|
* @internal
|
|
2501
2531
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2502
2532
|
*/
|
|
2503
|
-
export namespace
|
|
2504
|
-
/** @deprecated use `
|
|
2505
|
-
export const inboundSchema =
|
|
2506
|
-
/** @deprecated use `
|
|
2507
|
-
export const outboundSchema =
|
|
2533
|
+
export namespace CreateEvalRequestBodyEvalsType$ {
|
|
2534
|
+
/** @deprecated use `CreateEvalRequestBodyEvalsType$inboundSchema` instead. */
|
|
2535
|
+
export const inboundSchema = CreateEvalRequestBodyEvalsType$inboundSchema;
|
|
2536
|
+
/** @deprecated use `CreateEvalRequestBodyEvalsType$outboundSchema` instead. */
|
|
2537
|
+
export const outboundSchema = CreateEvalRequestBodyEvalsType$outboundSchema;
|
|
2508
2538
|
}
|
|
2509
2539
|
|
|
2510
2540
|
/** @internal */
|
|
@@ -2515,7 +2545,7 @@ export const Json$inboundSchema: z.ZodType<Json, z.ZodTypeDef, unknown> = z
|
|
|
2515
2545
|
z.lazy(() => GuardrailConfigBoolean$inboundSchema),
|
|
2516
2546
|
]).optional(),
|
|
2517
2547
|
output_type: RequestBodyOutputType$inboundSchema,
|
|
2518
|
-
type:
|
|
2548
|
+
type: CreateEvalRequestBodyEvalsType$inboundSchema,
|
|
2519
2549
|
schema: z.string(),
|
|
2520
2550
|
path: z.string(),
|
|
2521
2551
|
description: z.string().default(""),
|
|
@@ -2549,7 +2579,7 @@ export const Json$outboundSchema: z.ZodType<Json$Outbound, z.ZodTypeDef, Json> =
|
|
|
2549
2579
|
z.lazy(() => GuardrailConfigBoolean$outboundSchema),
|
|
2550
2580
|
]).optional(),
|
|
2551
2581
|
outputType: RequestBodyOutputType$outboundSchema,
|
|
2552
|
-
type:
|
|
2582
|
+
type: CreateEvalRequestBodyEvalsType$outboundSchema,
|
|
2553
2583
|
schema: z.string(),
|
|
2554
2584
|
path: z.string(),
|
|
2555
2585
|
description: z.string().default(""),
|
|
@@ -2830,24 +2860,24 @@ export namespace OutputType$ {
|
|
|
2830
2860
|
}
|
|
2831
2861
|
|
|
2832
2862
|
/** @internal */
|
|
2833
|
-
export const
|
|
2834
|
-
typeof
|
|
2835
|
-
> = z.nativeEnum(
|
|
2863
|
+
export const CreateEvalRequestBodyType$inboundSchema: z.ZodNativeEnum<
|
|
2864
|
+
typeof CreateEvalRequestBodyType
|
|
2865
|
+
> = z.nativeEnum(CreateEvalRequestBodyType);
|
|
2836
2866
|
|
|
2837
2867
|
/** @internal */
|
|
2838
|
-
export const
|
|
2839
|
-
typeof
|
|
2840
|
-
> =
|
|
2868
|
+
export const CreateEvalRequestBodyType$outboundSchema: z.ZodNativeEnum<
|
|
2869
|
+
typeof CreateEvalRequestBodyType
|
|
2870
|
+
> = CreateEvalRequestBodyType$inboundSchema;
|
|
2841
2871
|
|
|
2842
2872
|
/**
|
|
2843
2873
|
* @internal
|
|
2844
2874
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
2845
2875
|
*/
|
|
2846
|
-
export namespace
|
|
2847
|
-
/** @deprecated use `
|
|
2848
|
-
export const inboundSchema =
|
|
2849
|
-
/** @deprecated use `
|
|
2850
|
-
export const outboundSchema =
|
|
2876
|
+
export namespace CreateEvalRequestBodyType$ {
|
|
2877
|
+
/** @deprecated use `CreateEvalRequestBodyType$inboundSchema` instead. */
|
|
2878
|
+
export const inboundSchema = CreateEvalRequestBodyType$inboundSchema;
|
|
2879
|
+
/** @deprecated use `CreateEvalRequestBodyType$outboundSchema` instead. */
|
|
2880
|
+
export const outboundSchema = CreateEvalRequestBodyType$outboundSchema;
|
|
2851
2881
|
}
|
|
2852
2882
|
|
|
2853
2883
|
/** @internal */
|
|
@@ -2858,7 +2888,7 @@ export const Llm$inboundSchema: z.ZodType<Llm, z.ZodTypeDef, unknown> = z
|
|
|
2858
2888
|
z.lazy(() => Boolean$inboundSchema),
|
|
2859
2889
|
]).optional(),
|
|
2860
2890
|
output_type: OutputType$inboundSchema,
|
|
2861
|
-
type:
|
|
2891
|
+
type: CreateEvalRequestBodyType$inboundSchema,
|
|
2862
2892
|
prompt: z.string(),
|
|
2863
2893
|
path: z.string(),
|
|
2864
2894
|
description: z.string().default(""),
|
|
@@ -2891,7 +2921,7 @@ export const Llm$outboundSchema: z.ZodType<Llm$Outbound, z.ZodTypeDef, Llm> = z
|
|
|
2891
2921
|
z.lazy(() => Boolean$outboundSchema),
|
|
2892
2922
|
]).optional(),
|
|
2893
2923
|
outputType: OutputType$outboundSchema,
|
|
2894
|
-
type:
|
|
2924
|
+
type: CreateEvalRequestBodyType$outboundSchema,
|
|
2895
2925
|
prompt: z.string(),
|
|
2896
2926
|
path: z.string(),
|
|
2897
2927
|
description: z.string().default(""),
|
|
@@ -3347,8 +3377,8 @@ export const Typescript$inboundSchema: z.ZodType<
|
|
|
3347
3377
|
> = z.object({
|
|
3348
3378
|
_id: z.string(),
|
|
3349
3379
|
description: z.string(),
|
|
3350
|
-
created: z.string().default("2025-10-
|
|
3351
|
-
updated: z.string().default("2025-10-
|
|
3380
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3381
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3352
3382
|
guardrail_config: z.union([
|
|
3353
3383
|
z.lazy(() =>
|
|
3354
3384
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema
|
|
@@ -3391,8 +3421,8 @@ export const Typescript$outboundSchema: z.ZodType<
|
|
|
3391
3421
|
> = z.object({
|
|
3392
3422
|
id: z.string(),
|
|
3393
3423
|
description: z.string(),
|
|
3394
|
-
created: z.string().default("2025-10-
|
|
3395
|
-
updated: z.string().default("2025-10-
|
|
3424
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3425
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3396
3426
|
guardrailConfig: z.union([
|
|
3397
3427
|
z.lazy(() =>
|
|
3398
3428
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$outboundSchema
|
|
@@ -3761,28 +3791,28 @@ export function createEvalResponseBodyEvalsResponse200ApplicationJSONGuardrailCo
|
|
|
3761
3791
|
}
|
|
3762
3792
|
|
|
3763
3793
|
/** @internal */
|
|
3764
|
-
export const
|
|
3794
|
+
export const CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$inboundSchema:
|
|
3765
3795
|
z.ZodNativeEnum<
|
|
3766
|
-
typeof
|
|
3767
|
-
> = z.nativeEnum(
|
|
3796
|
+
typeof CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type
|
|
3797
|
+
> = z.nativeEnum(CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type);
|
|
3768
3798
|
|
|
3769
3799
|
/** @internal */
|
|
3770
|
-
export const
|
|
3800
|
+
export const CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$outboundSchema:
|
|
3771
3801
|
z.ZodNativeEnum<
|
|
3772
|
-
typeof
|
|
3773
|
-
> =
|
|
3802
|
+
typeof CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type
|
|
3803
|
+
> = CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$inboundSchema;
|
|
3774
3804
|
|
|
3775
3805
|
/**
|
|
3776
3806
|
* @internal
|
|
3777
3807
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
3778
3808
|
*/
|
|
3779
|
-
export namespace
|
|
3780
|
-
/** @deprecated use `
|
|
3809
|
+
export namespace CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$ {
|
|
3810
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$inboundSchema` instead. */
|
|
3781
3811
|
export const inboundSchema =
|
|
3782
|
-
|
|
3783
|
-
/** @deprecated use `
|
|
3812
|
+
CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$inboundSchema;
|
|
3813
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$outboundSchema` instead. */
|
|
3784
3814
|
export const outboundSchema =
|
|
3785
|
-
|
|
3815
|
+
CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$outboundSchema;
|
|
3786
3816
|
}
|
|
3787
3817
|
|
|
3788
3818
|
/** @internal */
|
|
@@ -3809,8 +3839,8 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3809
3839
|
.object({
|
|
3810
3840
|
_id: z.string(),
|
|
3811
3841
|
description: z.string(),
|
|
3812
|
-
created: z.string().default("2025-10-
|
|
3813
|
-
updated: z.string().default("2025-10-
|
|
3842
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3843
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3814
3844
|
guardrail_config: z.union([
|
|
3815
3845
|
z.lazy(() =>
|
|
3816
3846
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema
|
|
@@ -3820,7 +3850,7 @@ export const Ragas$inboundSchema: z.ZodType<Ragas, z.ZodTypeDef, unknown> = z
|
|
|
3820
3850
|
),
|
|
3821
3851
|
]).optional(),
|
|
3822
3852
|
type:
|
|
3823
|
-
|
|
3853
|
+
CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$inboundSchema,
|
|
3824
3854
|
ragas_metric: RagasMetric$inboundSchema,
|
|
3825
3855
|
key: z.string(),
|
|
3826
3856
|
model: z.string(),
|
|
@@ -3856,8 +3886,8 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3856
3886
|
> = z.object({
|
|
3857
3887
|
id: z.string(),
|
|
3858
3888
|
description: z.string(),
|
|
3859
|
-
created: z.string().default("2025-10-
|
|
3860
|
-
updated: z.string().default("2025-10-
|
|
3889
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3890
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
3861
3891
|
guardrailConfig: z.union([
|
|
3862
3892
|
z.lazy(() =>
|
|
3863
3893
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$outboundSchema
|
|
@@ -3867,7 +3897,7 @@ export const Ragas$outboundSchema: z.ZodType<
|
|
|
3867
3897
|
),
|
|
3868
3898
|
]).optional(),
|
|
3869
3899
|
type:
|
|
3870
|
-
|
|
3900
|
+
CreateEvalResponseBodyEvalsResponse200ApplicationJson6Type$outboundSchema,
|
|
3871
3901
|
ragasMetric: RagasMetric$outboundSchema,
|
|
3872
3902
|
key: z.string(),
|
|
3873
3903
|
model: z.string(),
|
|
@@ -4228,26 +4258,28 @@ export function createEvalResponseBodyEvalsResponse200GuardrailConfigFromJSON(
|
|
|
4228
4258
|
}
|
|
4229
4259
|
|
|
4230
4260
|
/** @internal */
|
|
4231
|
-
export const
|
|
4232
|
-
z.ZodNativeEnum<
|
|
4233
|
-
|
|
4261
|
+
export const CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$inboundSchema:
|
|
4262
|
+
z.ZodNativeEnum<
|
|
4263
|
+
typeof CreateEvalResponseBodyEvalsResponse200ApplicationJSONType
|
|
4264
|
+
> = z.nativeEnum(CreateEvalResponseBodyEvalsResponse200ApplicationJSONType);
|
|
4234
4265
|
|
|
4235
4266
|
/** @internal */
|
|
4236
|
-
export const
|
|
4237
|
-
z.ZodNativeEnum<
|
|
4238
|
-
|
|
4267
|
+
export const CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$outboundSchema:
|
|
4268
|
+
z.ZodNativeEnum<
|
|
4269
|
+
typeof CreateEvalResponseBodyEvalsResponse200ApplicationJSONType
|
|
4270
|
+
> = CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$inboundSchema;
|
|
4239
4271
|
|
|
4240
4272
|
/**
|
|
4241
4273
|
* @internal
|
|
4242
4274
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
4243
4275
|
*/
|
|
4244
|
-
export namespace
|
|
4245
|
-
/** @deprecated use `
|
|
4276
|
+
export namespace CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$ {
|
|
4277
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$inboundSchema` instead. */
|
|
4246
4278
|
export const inboundSchema =
|
|
4247
|
-
|
|
4248
|
-
/** @deprecated use `
|
|
4279
|
+
CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$inboundSchema;
|
|
4280
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$outboundSchema` instead. */
|
|
4249
4281
|
export const outboundSchema =
|
|
4250
|
-
|
|
4282
|
+
CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$outboundSchema;
|
|
4251
4283
|
}
|
|
4252
4284
|
|
|
4253
4285
|
/** @internal */
|
|
@@ -7281,8 +7313,8 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7281
7313
|
> = z.object({
|
|
7282
7314
|
_id: z.string(),
|
|
7283
7315
|
description: z.string(),
|
|
7284
|
-
created: z.string().default("2025-10-
|
|
7285
|
-
updated: z.string().default("2025-10-
|
|
7316
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7317
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7286
7318
|
guardrail_config: z.union([
|
|
7287
7319
|
z.lazy(() =>
|
|
7288
7320
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema
|
|
@@ -7291,7 +7323,7 @@ export const ResponseBodyFunction$inboundSchema: z.ZodType<
|
|
|
7291
7323
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema
|
|
7292
7324
|
),
|
|
7293
7325
|
]).optional(),
|
|
7294
|
-
type:
|
|
7326
|
+
type: CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$inboundSchema,
|
|
7295
7327
|
function_params: z.union([
|
|
7296
7328
|
z.lazy(() => FunctionParams12$inboundSchema),
|
|
7297
7329
|
z.lazy(() => FunctionParams1$inboundSchema),
|
|
@@ -7396,8 +7428,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7396
7428
|
> = z.object({
|
|
7397
7429
|
id: z.string(),
|
|
7398
7430
|
description: z.string(),
|
|
7399
|
-
created: z.string().default("2025-10-
|
|
7400
|
-
updated: z.string().default("2025-10-
|
|
7431
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7432
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7401
7433
|
guardrailConfig: z.union([
|
|
7402
7434
|
z.lazy(() =>
|
|
7403
7435
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$outboundSchema
|
|
@@ -7406,7 +7438,8 @@ export const ResponseBodyFunction$outboundSchema: z.ZodType<
|
|
|
7406
7438
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$outboundSchema
|
|
7407
7439
|
),
|
|
7408
7440
|
]).optional(),
|
|
7409
|
-
type:
|
|
7441
|
+
type:
|
|
7442
|
+
CreateEvalResponseBodyEvalsResponse200ApplicationJSONType$outboundSchema,
|
|
7410
7443
|
functionParams: z.union([
|
|
7411
7444
|
z.lazy(() => FunctionParams12$outboundSchema),
|
|
7412
7445
|
z.lazy(() => FunctionParams1$outboundSchema),
|
|
@@ -7806,26 +7839,26 @@ export function createEvalResponseBodyEvalsResponseGuardrailConfigFromJSON(
|
|
|
7806
7839
|
}
|
|
7807
7840
|
|
|
7808
7841
|
/** @internal */
|
|
7809
|
-
export const
|
|
7810
|
-
z.ZodNativeEnum<typeof
|
|
7811
|
-
.nativeEnum(
|
|
7842
|
+
export const CreateEvalResponseBodyEvalsResponse200Type$inboundSchema:
|
|
7843
|
+
z.ZodNativeEnum<typeof CreateEvalResponseBodyEvalsResponse200Type> = z
|
|
7844
|
+
.nativeEnum(CreateEvalResponseBodyEvalsResponse200Type);
|
|
7812
7845
|
|
|
7813
7846
|
/** @internal */
|
|
7814
|
-
export const
|
|
7815
|
-
z.ZodNativeEnum<typeof
|
|
7816
|
-
|
|
7847
|
+
export const CreateEvalResponseBodyEvalsResponse200Type$outboundSchema:
|
|
7848
|
+
z.ZodNativeEnum<typeof CreateEvalResponseBodyEvalsResponse200Type> =
|
|
7849
|
+
CreateEvalResponseBodyEvalsResponse200Type$inboundSchema;
|
|
7817
7850
|
|
|
7818
7851
|
/**
|
|
7819
7852
|
* @internal
|
|
7820
7853
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
7821
7854
|
*/
|
|
7822
|
-
export namespace
|
|
7823
|
-
/** @deprecated use `
|
|
7855
|
+
export namespace CreateEvalResponseBodyEvalsResponse200Type$ {
|
|
7856
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsResponse200Type$inboundSchema` instead. */
|
|
7824
7857
|
export const inboundSchema =
|
|
7825
|
-
|
|
7826
|
-
/** @deprecated use `
|
|
7858
|
+
CreateEvalResponseBodyEvalsResponse200Type$inboundSchema;
|
|
7859
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsResponse200Type$outboundSchema` instead. */
|
|
7827
7860
|
export const outboundSchema =
|
|
7828
|
-
|
|
7861
|
+
CreateEvalResponseBodyEvalsResponse200Type$outboundSchema;
|
|
7829
7862
|
}
|
|
7830
7863
|
|
|
7831
7864
|
/** @internal */
|
|
@@ -7836,8 +7869,8 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
7836
7869
|
> = z.object({
|
|
7837
7870
|
_id: z.string(),
|
|
7838
7871
|
description: z.string(),
|
|
7839
|
-
created: z.string().default("2025-10-
|
|
7840
|
-
updated: z.string().default("2025-10-
|
|
7872
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7873
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7841
7874
|
guardrail_config: z.union([
|
|
7842
7875
|
z.lazy(() =>
|
|
7843
7876
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema
|
|
@@ -7847,7 +7880,7 @@ export const ResponseBodyPython$inboundSchema: z.ZodType<
|
|
|
7847
7880
|
),
|
|
7848
7881
|
]).optional(),
|
|
7849
7882
|
code: z.string(),
|
|
7850
|
-
type:
|
|
7883
|
+
type: CreateEvalResponseBodyEvalsResponse200Type$inboundSchema,
|
|
7851
7884
|
key: z.string(),
|
|
7852
7885
|
}).transform((v) => {
|
|
7853
7886
|
return remap$(v, {
|
|
@@ -7879,8 +7912,8 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
7879
7912
|
> = z.object({
|
|
7880
7913
|
id: z.string(),
|
|
7881
7914
|
description: z.string(),
|
|
7882
|
-
created: z.string().default("2025-10-
|
|
7883
|
-
updated: z.string().default("2025-10-
|
|
7915
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7916
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
7884
7917
|
guardrailConfig: z.union([
|
|
7885
7918
|
z.lazy(() =>
|
|
7886
7919
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema
|
|
@@ -7890,7 +7923,7 @@ export const ResponseBodyPython$outboundSchema: z.ZodType<
|
|
|
7890
7923
|
),
|
|
7891
7924
|
]).optional(),
|
|
7892
7925
|
code: z.string(),
|
|
7893
|
-
type:
|
|
7926
|
+
type: CreateEvalResponseBodyEvalsResponse200Type$outboundSchema,
|
|
7894
7927
|
key: z.string(),
|
|
7895
7928
|
}).transform((v) => {
|
|
7896
7929
|
return remap$(v, {
|
|
@@ -8244,24 +8277,26 @@ export function createEvalResponseBodyEvalsGuardrailConfigFromJSON(
|
|
|
8244
8277
|
}
|
|
8245
8278
|
|
|
8246
8279
|
/** @internal */
|
|
8247
|
-
export const
|
|
8248
|
-
typeof
|
|
8249
|
-
|
|
8280
|
+
export const CreateEvalResponseBodyEvalsResponseType$inboundSchema:
|
|
8281
|
+
z.ZodNativeEnum<typeof CreateEvalResponseBodyEvalsResponseType> = z
|
|
8282
|
+
.nativeEnum(CreateEvalResponseBodyEvalsResponseType);
|
|
8250
8283
|
|
|
8251
8284
|
/** @internal */
|
|
8252
|
-
export const
|
|
8253
|
-
typeof
|
|
8254
|
-
|
|
8285
|
+
export const CreateEvalResponseBodyEvalsResponseType$outboundSchema:
|
|
8286
|
+
z.ZodNativeEnum<typeof CreateEvalResponseBodyEvalsResponseType> =
|
|
8287
|
+
CreateEvalResponseBodyEvalsResponseType$inboundSchema;
|
|
8255
8288
|
|
|
8256
8289
|
/**
|
|
8257
8290
|
* @internal
|
|
8258
8291
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
8259
8292
|
*/
|
|
8260
|
-
export namespace
|
|
8261
|
-
/** @deprecated use `
|
|
8262
|
-
export const inboundSchema =
|
|
8263
|
-
|
|
8264
|
-
|
|
8293
|
+
export namespace CreateEvalResponseBodyEvalsResponseType$ {
|
|
8294
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsResponseType$inboundSchema` instead. */
|
|
8295
|
+
export const inboundSchema =
|
|
8296
|
+
CreateEvalResponseBodyEvalsResponseType$inboundSchema;
|
|
8297
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsResponseType$outboundSchema` instead. */
|
|
8298
|
+
export const outboundSchema =
|
|
8299
|
+
CreateEvalResponseBodyEvalsResponseType$outboundSchema;
|
|
8265
8300
|
}
|
|
8266
8301
|
|
|
8267
8302
|
/** @internal */
|
|
@@ -8293,8 +8328,8 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8293
8328
|
> = z.object({
|
|
8294
8329
|
_id: z.string(),
|
|
8295
8330
|
description: z.string(),
|
|
8296
|
-
created: z.string().default("2025-10-
|
|
8297
|
-
updated: z.string().default("2025-10-
|
|
8331
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8332
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8298
8333
|
guardrail_config: z.union([
|
|
8299
8334
|
z.lazy(() =>
|
|
8300
8335
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema
|
|
@@ -8303,7 +8338,7 @@ export const ResponseBodyHTTP$inboundSchema: z.ZodType<
|
|
|
8303
8338
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema
|
|
8304
8339
|
),
|
|
8305
8340
|
]).optional(),
|
|
8306
|
-
type:
|
|
8341
|
+
type: CreateEvalResponseBodyEvalsResponseType$inboundSchema,
|
|
8307
8342
|
url: z.string(),
|
|
8308
8343
|
method: ResponseBodyMethod$inboundSchema,
|
|
8309
8344
|
headers: z.record(z.string()),
|
|
@@ -8342,8 +8377,8 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8342
8377
|
> = z.object({
|
|
8343
8378
|
id: z.string(),
|
|
8344
8379
|
description: z.string(),
|
|
8345
|
-
created: z.string().default("2025-10-
|
|
8346
|
-
updated: z.string().default("2025-10-
|
|
8380
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8381
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8347
8382
|
guardrailConfig: z.union([
|
|
8348
8383
|
z.lazy(() =>
|
|
8349
8384
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema
|
|
@@ -8352,7 +8387,7 @@ export const ResponseBodyHTTP$outboundSchema: z.ZodType<
|
|
|
8352
8387
|
CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema
|
|
8353
8388
|
),
|
|
8354
8389
|
]).optional(),
|
|
8355
|
-
type:
|
|
8390
|
+
type: CreateEvalResponseBodyEvalsResponseType$outboundSchema,
|
|
8356
8391
|
url: z.string(),
|
|
8357
8392
|
method: ResponseBodyMethod$outboundSchema,
|
|
8358
8393
|
headers: z.record(z.string()),
|
|
@@ -8692,24 +8727,24 @@ export function createEvalResponseBodyGuardrailConfigFromJSON(
|
|
|
8692
8727
|
}
|
|
8693
8728
|
|
|
8694
8729
|
/** @internal */
|
|
8695
|
-
export const
|
|
8696
|
-
typeof
|
|
8697
|
-
> = z.nativeEnum(
|
|
8730
|
+
export const CreateEvalResponseBodyEvalsType$inboundSchema: z.ZodNativeEnum<
|
|
8731
|
+
typeof CreateEvalResponseBodyEvalsType
|
|
8732
|
+
> = z.nativeEnum(CreateEvalResponseBodyEvalsType);
|
|
8698
8733
|
|
|
8699
8734
|
/** @internal */
|
|
8700
|
-
export const
|
|
8701
|
-
typeof
|
|
8702
|
-
> =
|
|
8735
|
+
export const CreateEvalResponseBodyEvalsType$outboundSchema: z.ZodNativeEnum<
|
|
8736
|
+
typeof CreateEvalResponseBodyEvalsType
|
|
8737
|
+
> = CreateEvalResponseBodyEvalsType$inboundSchema;
|
|
8703
8738
|
|
|
8704
8739
|
/**
|
|
8705
8740
|
* @internal
|
|
8706
8741
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
8707
8742
|
*/
|
|
8708
|
-
export namespace
|
|
8709
|
-
/** @deprecated use `
|
|
8710
|
-
export const inboundSchema =
|
|
8711
|
-
/** @deprecated use `
|
|
8712
|
-
export const outboundSchema =
|
|
8743
|
+
export namespace CreateEvalResponseBodyEvalsType$ {
|
|
8744
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsType$inboundSchema` instead. */
|
|
8745
|
+
export const inboundSchema = CreateEvalResponseBodyEvalsType$inboundSchema;
|
|
8746
|
+
/** @deprecated use `CreateEvalResponseBodyEvalsType$outboundSchema` instead. */
|
|
8747
|
+
export const outboundSchema = CreateEvalResponseBodyEvalsType$outboundSchema;
|
|
8713
8748
|
}
|
|
8714
8749
|
|
|
8715
8750
|
/** @internal */
|
|
@@ -8720,15 +8755,15 @@ export const ResponseBodyJSON$inboundSchema: z.ZodType<
|
|
|
8720
8755
|
> = z.object({
|
|
8721
8756
|
_id: z.string(),
|
|
8722
8757
|
description: z.string(),
|
|
8723
|
-
created: z.string().default("2025-10-
|
|
8724
|
-
updated: z.string().default("2025-10-
|
|
8758
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8759
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8725
8760
|
guardrail_config: z.union([
|
|
8726
8761
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
8727
8762
|
z.lazy(() =>
|
|
8728
8763
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema
|
|
8729
8764
|
),
|
|
8730
8765
|
]).optional(),
|
|
8731
|
-
type:
|
|
8766
|
+
type: CreateEvalResponseBodyEvalsType$inboundSchema,
|
|
8732
8767
|
schema: z.string(),
|
|
8733
8768
|
key: z.string(),
|
|
8734
8769
|
}).transform((v) => {
|
|
@@ -8761,8 +8796,8 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
8761
8796
|
> = z.object({
|
|
8762
8797
|
id: z.string(),
|
|
8763
8798
|
description: z.string(),
|
|
8764
|
-
created: z.string().default("2025-10-
|
|
8765
|
-
updated: z.string().default("2025-10-
|
|
8799
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8800
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
8766
8801
|
guardrailConfig: z.union([
|
|
8767
8802
|
z.lazy(() =>
|
|
8768
8803
|
CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema
|
|
@@ -8771,7 +8806,7 @@ export const ResponseBodyJSON$outboundSchema: z.ZodType<
|
|
|
8771
8806
|
CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema
|
|
8772
8807
|
),
|
|
8773
8808
|
]).optional(),
|
|
8774
|
-
type:
|
|
8809
|
+
type: CreateEvalResponseBodyEvalsType$outboundSchema,
|
|
8775
8810
|
schema: z.string(),
|
|
8776
8811
|
key: z.string(),
|
|
8777
8812
|
}).transform((v) => {
|
|
@@ -9089,24 +9124,24 @@ export function responseBodyGuardrailConfigFromJSON(
|
|
|
9089
9124
|
}
|
|
9090
9125
|
|
|
9091
9126
|
/** @internal */
|
|
9092
|
-
export const
|
|
9093
|
-
typeof
|
|
9094
|
-
> = z.nativeEnum(
|
|
9127
|
+
export const CreateEvalResponseBodyType$inboundSchema: z.ZodNativeEnum<
|
|
9128
|
+
typeof CreateEvalResponseBodyType
|
|
9129
|
+
> = z.nativeEnum(CreateEvalResponseBodyType);
|
|
9095
9130
|
|
|
9096
9131
|
/** @internal */
|
|
9097
|
-
export const
|
|
9098
|
-
typeof
|
|
9099
|
-
> =
|
|
9132
|
+
export const CreateEvalResponseBodyType$outboundSchema: z.ZodNativeEnum<
|
|
9133
|
+
typeof CreateEvalResponseBodyType
|
|
9134
|
+
> = CreateEvalResponseBodyType$inboundSchema;
|
|
9100
9135
|
|
|
9101
9136
|
/**
|
|
9102
9137
|
* @internal
|
|
9103
9138
|
* @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
|
|
9104
9139
|
*/
|
|
9105
|
-
export namespace
|
|
9106
|
-
/** @deprecated use `
|
|
9107
|
-
export const inboundSchema =
|
|
9108
|
-
/** @deprecated use `
|
|
9109
|
-
export const outboundSchema =
|
|
9140
|
+
export namespace CreateEvalResponseBodyType$ {
|
|
9141
|
+
/** @deprecated use `CreateEvalResponseBodyType$inboundSchema` instead. */
|
|
9142
|
+
export const inboundSchema = CreateEvalResponseBodyType$inboundSchema;
|
|
9143
|
+
/** @deprecated use `CreateEvalResponseBodyType$outboundSchema` instead. */
|
|
9144
|
+
export const outboundSchema = CreateEvalResponseBodyType$outboundSchema;
|
|
9110
9145
|
}
|
|
9111
9146
|
|
|
9112
9147
|
/** @internal */
|
|
@@ -9117,13 +9152,13 @@ export const ResponseBodyLLM$inboundSchema: z.ZodType<
|
|
|
9117
9152
|
> = z.object({
|
|
9118
9153
|
_id: z.string(),
|
|
9119
9154
|
description: z.string(),
|
|
9120
|
-
created: z.string().default("2025-10-
|
|
9121
|
-
updated: z.string().default("2025-10-
|
|
9155
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9156
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9122
9157
|
guardrail_config: z.union([
|
|
9123
9158
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
9124
9159
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
9125
9160
|
]).optional(),
|
|
9126
|
-
type:
|
|
9161
|
+
type: CreateEvalResponseBodyType$inboundSchema,
|
|
9127
9162
|
prompt: z.string(),
|
|
9128
9163
|
key: z.string(),
|
|
9129
9164
|
model: z.string(),
|
|
@@ -9158,13 +9193,13 @@ export const ResponseBodyLLM$outboundSchema: z.ZodType<
|
|
|
9158
9193
|
> = z.object({
|
|
9159
9194
|
id: z.string(),
|
|
9160
9195
|
description: z.string(),
|
|
9161
|
-
created: z.string().default("2025-10-
|
|
9162
|
-
updated: z.string().default("2025-10-
|
|
9196
|
+
created: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9197
|
+
updated: z.string().default("2025-10-15T05:20:10.646Z"),
|
|
9163
9198
|
guardrailConfig: z.union([
|
|
9164
9199
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
9165
9200
|
z.lazy(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema),
|
|
9166
9201
|
]).optional(),
|
|
9167
|
-
type:
|
|
9202
|
+
type: CreateEvalResponseBodyType$outboundSchema,
|
|
9168
9203
|
prompt: z.string(),
|
|
9169
9204
|
key: z.string(),
|
|
9170
9205
|
model: z.string(),
|