@orq-ai/node 3.12.11 → 3.12.13
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 +259 -250
- package/bin/mcp-server.js.map +32 -32
- package/docs/sdks/evals/README.md +2 -0
- package/docs/sdks/knowledge/README.md +12 -0
- package/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/mcp-server/mcp-server.js +1 -1
- package/mcp-server/server.js +1 -1
- package/models/operations/createbudget.js +2 -2
- package/models/operations/createcontact.js +2 -2
- package/models/operations/createdataset.js +2 -2
- package/models/operations/createdatasetitem.js +2 -2
- package/models/operations/createdatasource.js +2 -2
- package/models/operations/createeval.d.ts +114 -0
- package/models/operations/createeval.d.ts.map +1 -1
- package/models/operations/createeval.js +117 -21
- package/models/operations/createeval.js.map +1 -1
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getbudget.js +2 -2
- package/models/operations/getevals.js +28 -28
- package/models/operations/listbudgets.js +2 -2
- package/models/operations/listcontacts.js +2 -2
- package/models/operations/listdatasetdatapoints.js +2 -2
- package/models/operations/listdatasets.js +2 -2
- package/models/operations/listdatasources.js +2 -2
- package/models/operations/retrievecontact.js +2 -2
- package/models/operations/retrievedatapoint.js +2 -2
- package/models/operations/retrievedataset.js +2 -2
- package/models/operations/retrievedatasource.js +2 -2
- package/models/operations/searchknowledge.d.ts +17 -246
- package/models/operations/searchknowledge.d.ts.map +1 -1
- package/models/operations/searchknowledge.js +16 -167
- package/models/operations/searchknowledge.js.map +1 -1
- package/models/operations/updatebudget.js +2 -2
- package/models/operations/updatecontact.js +2 -2
- package/models/operations/updatedatapoint.js +2 -2
- package/models/operations/updatedataset.js +2 -2
- package/models/operations/updatedatasource.js +2 -2
- package/models/operations/updateeval.d.ts +114 -0
- package/models/operations/updateeval.d.ts.map +1 -1
- package/models/operations/updateeval.js +122 -21
- package/models/operations/updateeval.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +1 -1
- package/src/models/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 -2
- package/src/models/operations/createdatasource.ts +2 -2
- package/src/models/operations/createeval.ts +155 -16
- package/src/models/operations/fileget.ts +2 -2
- package/src/models/operations/filelist.ts +2 -2
- package/src/models/operations/fileupload.ts +2 -2
- package/src/models/operations/getbudget.ts +2 -2
- package/src/models/operations/getevals.ts +28 -28
- package/src/models/operations/listbudgets.ts +2 -2
- package/src/models/operations/listcontacts.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +2 -2
- package/src/models/operations/listdatasets.ts +2 -2
- package/src/models/operations/listdatasources.ts +2 -2
- package/src/models/operations/retrievecontact.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +2 -2
- package/src/models/operations/retrievedataset.ts +2 -2
- package/src/models/operations/retrievedatasource.ts +2 -2
- package/src/models/operations/searchknowledge.ts +29 -259
- package/src/models/operations/updatebudget.ts +2 -2
- package/src/models/operations/updatecontact.ts +2 -2
- package/src/models/operations/updatedatapoint.ts +2 -2
- package/src/models/operations/updatedataset.ts +2 -2
- package/src/models/operations/updatedatasource.ts +2 -2
- package/src/models/operations/updateeval.ts +169 -16
package/bin/mcp-server.js
CHANGED
|
@@ -34206,9 +34206,9 @@ var init_config = __esm(() => {
|
|
|
34206
34206
|
SDK_METADATA = {
|
|
34207
34207
|
language: "typescript",
|
|
34208
34208
|
openapiDocVersion: "2.0",
|
|
34209
|
-
sdkVersion: "3.12.
|
|
34210
|
-
genVersion: "2.706.
|
|
34211
|
-
userAgent: "speakeasy-sdk/typescript 3.12.
|
|
34209
|
+
sdkVersion: "3.12.13",
|
|
34210
|
+
genVersion: "2.706.1",
|
|
34211
|
+
userAgent: "speakeasy-sdk/typescript 3.12.13 2.706.1 2.0 @orq-ai/node"
|
|
34212
34212
|
};
|
|
34213
34213
|
});
|
|
34214
34214
|
|
|
@@ -35895,7 +35895,7 @@ var init_createbudget = __esm(() => {
|
|
|
35895
35895
|
is_active: booleanType(),
|
|
35896
35896
|
consumption: lazyType(() => Consumption$inboundSchema).optional(),
|
|
35897
35897
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35898
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
35898
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
35899
35899
|
}).transform((v2) => {
|
|
35900
35900
|
return remap(v2, {
|
|
35901
35901
|
_id: "id",
|
|
@@ -35913,7 +35913,7 @@ var init_createbudget = __esm(() => {
|
|
|
35913
35913
|
isActive: booleanType(),
|
|
35914
35914
|
consumption: lazyType(() => Consumption$outboundSchema).optional(),
|
|
35915
35915
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35916
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
35916
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
35917
35917
|
}).transform((v2) => {
|
|
35918
35918
|
return remap(v2, {
|
|
35919
35919
|
id: "_id",
|
|
@@ -36085,7 +36085,7 @@ var init_createcontact = __esm(() => {
|
|
|
36085
36085
|
tags: arrayType(stringType()).optional(),
|
|
36086
36086
|
metadata: recordType(anyType()).optional(),
|
|
36087
36087
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36088
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
36088
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
36089
36089
|
}).transform((v2) => {
|
|
36090
36090
|
return remap(v2, {
|
|
36091
36091
|
_id: "id",
|
|
@@ -36105,7 +36105,7 @@ var init_createcontact = __esm(() => {
|
|
|
36105
36105
|
tags: arrayType(stringType()).optional(),
|
|
36106
36106
|
metadata: recordType(anyType()).optional(),
|
|
36107
36107
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36108
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
36108
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
36109
36109
|
}).transform((v2) => {
|
|
36110
36110
|
return remap(v2, {
|
|
36111
36111
|
id: "_id",
|
|
@@ -36177,7 +36177,7 @@ var init_createdataset = __esm(() => {
|
|
|
36177
36177
|
updated_by_id: stringType().optional(),
|
|
36178
36178
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
36179
36179
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
36180
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
36180
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
36181
36181
|
}).transform((v2) => {
|
|
36182
36182
|
return remap(v2, {
|
|
36183
36183
|
_id: "id",
|
|
@@ -36197,7 +36197,7 @@ var init_createdataset = __esm(() => {
|
|
|
36197
36197
|
updatedById: stringType().optional(),
|
|
36198
36198
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
36199
36199
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
36200
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
36200
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
36201
36201
|
}).transform((v2) => {
|
|
36202
36202
|
return remap(v2, {
|
|
36203
36203
|
id: "_id",
|
|
@@ -37601,7 +37601,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37601
37601
|
created_by_id: stringType().optional(),
|
|
37602
37602
|
updated_by_id: stringType().optional(),
|
|
37603
37603
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37604
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
37604
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
37605
37605
|
}).transform((v2) => {
|
|
37606
37606
|
return remap(v2, {
|
|
37607
37607
|
_id: "id",
|
|
@@ -37628,7 +37628,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37628
37628
|
createdById: stringType().optional(),
|
|
37629
37629
|
updatedById: stringType().optional(),
|
|
37630
37630
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37631
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
37631
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
37632
37632
|
}).transform((v2) => {
|
|
37633
37633
|
return remap(v2, {
|
|
37634
37634
|
id: "_id",
|
|
@@ -37850,7 +37850,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37850
37850
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37851
37851
|
})(CreateDatasourceStatus$ ||= {});
|
|
37852
37852
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37853
|
-
_id: stringType().default("
|
|
37853
|
+
_id: stringType().default("01K5FCDSVN1HABR86S4P4PD9T8"),
|
|
37854
37854
|
display_name: stringType(),
|
|
37855
37855
|
description: stringType().optional(),
|
|
37856
37856
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37873,7 +37873,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37873
37873
|
});
|
|
37874
37874
|
});
|
|
37875
37875
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37876
|
-
id: stringType().default("
|
|
37876
|
+
id: stringType().default("01K5FCDSVN1HABR86S4P4PD9T8"),
|
|
37877
37877
|
displayName: stringType(),
|
|
37878
37878
|
description: stringType().optional(),
|
|
37879
37879
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -37902,7 +37902,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37902
37902
|
});
|
|
37903
37903
|
|
|
37904
37904
|
// src/models/operations/createeval.ts
|
|
37905
|
-
var CreateEvalGuardrailConfigEvalsRequestRequestBody42Type, CreateEvalGuardrailConfigEvalsOperator, CreateEvalGuardrailConfigEvalsRequestRequestBody4Type, CreateEvalRequestBodyEvalsRequestType, CreateEvalGuardrailConfigEvalsRequestRequestBody3Type, CreateEvalGuardrailConfigOperator, CreateEvalGuardrailConfigEvalsRequestRequestBodyType, CreateEvalRequestBodyEvalsType, Method, CreateEvalGuardrailConfigEvalsRequestType, GuardrailConfigOperator, CreateEvalGuardrailConfigEvalsType, CreateEvalRequestBodyType, CreateEvalGuardrailConfigType, Operator, GuardrailConfigType, RequestBodyType, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type, CreateEvalResponseBodyEvalsResponseType, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type, CreateEvalResponseBodyEvalsType, ResponseBodyMethod, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType, CreateEvalGuardrailConfigEvalsResponse200Operator, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType, CreateEvalResponseBodyType, CreateEvalGuardrailConfigEvalsResponse200Type, CreateEvalGuardrailConfigEvalsResponseOperator, CreateEvalGuardrailConfigEvalsResponseType, ResponseBodyType, CreateEvalGuardrailConfigEvalsRequestRequestBody42Type$inboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody42Type$outboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody42Type$, CreateEvalGuardrailConfigEvalsOperator$inboundSchema, CreateEvalGuardrailConfigEvalsOperator$outboundSchema, CreateEvalGuardrailConfigEvalsOperator$, CreateEvalGuardrailConfigEvalsNumber$inboundSchema, CreateEvalGuardrailConfigEvalsNumber$outboundSchema, CreateEvalGuardrailConfigEvalsNumber$, CreateEvalGuardrailConfigEvalsRequestRequestBody4Type$inboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody4Type$outboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody4Type$, CreateEvalGuardrailConfigEvalsBoolean$inboundSchema, CreateEvalGuardrailConfigEvalsBoolean$outboundSchema, CreateEvalGuardrailConfigEvalsBoolean$, CreateEvalRequestBodyEvalsGuardrailConfig$inboundSchema, CreateEvalRequestBodyEvalsGuardrailConfig$outboundSchema, CreateEvalRequestBodyEvalsGuardrailConfig$, CreateEvalRequestBodyEvalsRequestType$inboundSchema, CreateEvalRequestBodyEvalsRequestType$outboundSchema, CreateEvalRequestBodyEvalsRequestType$, Python$inboundSchema, Python$outboundSchema, Python$, CreateEvalGuardrailConfigEvalsRequestRequestBody3Type$inboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody3Type$outboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody3Type$, CreateEvalGuardrailConfigOperator$inboundSchema, CreateEvalGuardrailConfigOperator$outboundSchema, CreateEvalGuardrailConfigOperator$, CreateEvalGuardrailConfigNumber$inboundSchema, CreateEvalGuardrailConfigNumber$outboundSchema, CreateEvalGuardrailConfigNumber$, CreateEvalGuardrailConfigEvalsRequestRequestBodyType$inboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBodyType$outboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBodyType$, CreateEvalGuardrailConfigBoolean$inboundSchema, CreateEvalGuardrailConfigBoolean$outboundSchema, CreateEvalGuardrailConfigBoolean$, CreateEvalRequestBodyGuardrailConfig$inboundSchema, CreateEvalRequestBodyGuardrailConfig$outboundSchema, CreateEvalRequestBodyGuardrailConfig$, CreateEvalRequestBodyEvalsType$inboundSchema, CreateEvalRequestBodyEvalsType$outboundSchema, CreateEvalRequestBodyEvalsType$, Method$inboundSchema, Method$outboundSchema, Method$, Http$inboundSchema, Http$outboundSchema, Http$, CreateEvalGuardrailConfigEvalsRequestType$inboundSchema, CreateEvalGuardrailConfigEvalsRequestType$outboundSchema, CreateEvalGuardrailConfigEvalsRequestType$, GuardrailConfigOperator$inboundSchema, GuardrailConfigOperator$outboundSchema, GuardrailConfigOperator$, GuardrailConfigNumber$inboundSchema, GuardrailConfigNumber$outboundSchema, GuardrailConfigNumber$, CreateEvalGuardrailConfigEvalsType$inboundSchema, CreateEvalGuardrailConfigEvalsType$outboundSchema, CreateEvalGuardrailConfigEvalsType$, GuardrailConfigBoolean$inboundSchema, GuardrailConfigBoolean$outboundSchema, GuardrailConfigBoolean$, RequestBodyGuardrailConfig$inboundSchema, RequestBodyGuardrailConfig$outboundSchema, RequestBodyGuardrailConfig$, CreateEvalRequestBodyType$inboundSchema, CreateEvalRequestBodyType$outboundSchema, CreateEvalRequestBodyType$, Json$inboundSchema, Json$outboundSchema, Json$, CreateEvalGuardrailConfigType$inboundSchema, CreateEvalGuardrailConfigType$outboundSchema, CreateEvalGuardrailConfigType$, Operator$inboundSchema, Operator$outboundSchema, Operator$, NumberT$inboundSchema, NumberT$outboundSchema, NumberT$, GuardrailConfigType$inboundSchema, GuardrailConfigType$outboundSchema, GuardrailConfigType$, Boolean$inboundSchema, Boolean$outboundSchema, Boolean$, GuardrailConfig$inboundSchema, GuardrailConfig$outboundSchema, GuardrailConfig$, RequestBodyType$inboundSchema, RequestBodyType$outboundSchema, RequestBodyType$, Llm$inboundSchema, Llm$outboundSchema, Llm$, CreateEvalRequestBody$inboundSchema, CreateEvalRequestBody$outboundSchema, CreateEvalRequestBody$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$, CreateEvalResponseBodyEvalsResponseGuardrailConfig$inboundSchema, CreateEvalResponseBodyEvalsResponseGuardrailConfig$outboundSchema, CreateEvalResponseBodyEvalsResponseGuardrailConfig$, CreateEvalResponseBodyEvalsResponseType$inboundSchema, CreateEvalResponseBodyEvalsResponseType$outboundSchema, CreateEvalResponseBodyEvalsResponseType$, ResponseBodyPython$inboundSchema, ResponseBodyPython$outboundSchema, ResponseBodyPython$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$, CreateEvalResponseBodyEvalsGuardrailConfig$inboundSchema, CreateEvalResponseBodyEvalsGuardrailConfig$outboundSchema, CreateEvalResponseBodyEvalsGuardrailConfig$, CreateEvalResponseBodyEvalsType$inboundSchema, CreateEvalResponseBodyEvalsType$outboundSchema, CreateEvalResponseBodyEvalsType$, ResponseBodyMethod$inboundSchema, ResponseBodyMethod$outboundSchema, ResponseBodyMethod$, ResponseBodyHTTP$inboundSchema, ResponseBodyHTTP$outboundSchema, ResponseBodyHTTP$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$, CreateEvalGuardrailConfigEvalsResponse200Operator$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200Operator$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200Operator$, CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200Number$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$, CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200Boolean$, CreateEvalResponseBodyGuardrailConfig$inboundSchema, CreateEvalResponseBodyGuardrailConfig$outboundSchema, CreateEvalResponseBodyGuardrailConfig$, CreateEvalResponseBodyType$inboundSchema, CreateEvalResponseBodyType$outboundSchema, CreateEvalResponseBodyType$, ResponseBodyJSON$inboundSchema, ResponseBodyJSON$outboundSchema, ResponseBodyJSON$, CreateEvalGuardrailConfigEvalsResponse200Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200Type$, CreateEvalGuardrailConfigEvalsResponseOperator$inboundSchema, CreateEvalGuardrailConfigEvalsResponseOperator$outboundSchema, CreateEvalGuardrailConfigEvalsResponseOperator$, CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema, CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema, CreateEvalGuardrailConfigEvalsResponseNumber$, CreateEvalGuardrailConfigEvalsResponseType$inboundSchema, CreateEvalGuardrailConfigEvalsResponseType$outboundSchema, CreateEvalGuardrailConfigEvalsResponseType$, CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema, CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema, CreateEvalGuardrailConfigEvalsResponseBoolean$, ResponseBodyGuardrailConfig$inboundSchema, ResponseBodyGuardrailConfig$outboundSchema, ResponseBodyGuardrailConfig$, ResponseBodyType$inboundSchema, ResponseBodyType$outboundSchema, ResponseBodyType$, ResponseBodyLLM$inboundSchema, ResponseBodyLLM$outboundSchema, ResponseBodyLLM$, CreateEvalResponseBody$inboundSchema, CreateEvalResponseBody$outboundSchema, CreateEvalResponseBody$;
|
|
37905
|
+
var CreateEvalGuardrailConfigEvalsRequestRequestBody42Type, CreateEvalGuardrailConfigEvalsOperator, CreateEvalGuardrailConfigEvalsRequestRequestBody4Type, CreateEvalRequestBodyEvalsOutputType, CreateEvalRequestBodyEvalsRequestType, CreateEvalGuardrailConfigEvalsRequestRequestBody3Type, CreateEvalGuardrailConfigOperator, CreateEvalGuardrailConfigEvalsRequestRequestBodyType, CreateEvalRequestBodyOutputType, CreateEvalRequestBodyEvalsType, Method, CreateEvalGuardrailConfigEvalsRequestType, GuardrailConfigOperator, CreateEvalGuardrailConfigEvalsType, RequestBodyOutputType, CreateEvalRequestBodyType, CreateEvalGuardrailConfigType, Operator, GuardrailConfigType, OutputType, RequestBodyType, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type, CreateEvalResponseBodyEvalsResponseType, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type, CreateEvalResponseBodyEvalsType, ResponseBodyMethod, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType, CreateEvalGuardrailConfigEvalsResponse200Operator, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType, CreateEvalResponseBodyType, CreateEvalGuardrailConfigEvalsResponse200Type, CreateEvalGuardrailConfigEvalsResponseOperator, CreateEvalGuardrailConfigEvalsResponseType, ResponseBodyType, CreateEvalGuardrailConfigEvalsRequestRequestBody42Type$inboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody42Type$outboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody42Type$, CreateEvalGuardrailConfigEvalsOperator$inboundSchema, CreateEvalGuardrailConfigEvalsOperator$outboundSchema, CreateEvalGuardrailConfigEvalsOperator$, CreateEvalGuardrailConfigEvalsNumber$inboundSchema, CreateEvalGuardrailConfigEvalsNumber$outboundSchema, CreateEvalGuardrailConfigEvalsNumber$, CreateEvalGuardrailConfigEvalsRequestRequestBody4Type$inboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody4Type$outboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody4Type$, CreateEvalGuardrailConfigEvalsBoolean$inboundSchema, CreateEvalGuardrailConfigEvalsBoolean$outboundSchema, CreateEvalGuardrailConfigEvalsBoolean$, CreateEvalRequestBodyEvalsGuardrailConfig$inboundSchema, CreateEvalRequestBodyEvalsGuardrailConfig$outboundSchema, CreateEvalRequestBodyEvalsGuardrailConfig$, CreateEvalRequestBodyEvalsOutputType$inboundSchema, CreateEvalRequestBodyEvalsOutputType$outboundSchema, CreateEvalRequestBodyEvalsOutputType$, CreateEvalRequestBodyEvalsRequestType$inboundSchema, CreateEvalRequestBodyEvalsRequestType$outboundSchema, CreateEvalRequestBodyEvalsRequestType$, Python$inboundSchema, Python$outboundSchema, Python$, CreateEvalGuardrailConfigEvalsRequestRequestBody3Type$inboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody3Type$outboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBody3Type$, CreateEvalGuardrailConfigOperator$inboundSchema, CreateEvalGuardrailConfigOperator$outboundSchema, CreateEvalGuardrailConfigOperator$, CreateEvalGuardrailConfigNumber$inboundSchema, CreateEvalGuardrailConfigNumber$outboundSchema, CreateEvalGuardrailConfigNumber$, CreateEvalGuardrailConfigEvalsRequestRequestBodyType$inboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBodyType$outboundSchema, CreateEvalGuardrailConfigEvalsRequestRequestBodyType$, CreateEvalGuardrailConfigBoolean$inboundSchema, CreateEvalGuardrailConfigBoolean$outboundSchema, CreateEvalGuardrailConfigBoolean$, CreateEvalRequestBodyGuardrailConfig$inboundSchema, CreateEvalRequestBodyGuardrailConfig$outboundSchema, CreateEvalRequestBodyGuardrailConfig$, CreateEvalRequestBodyOutputType$inboundSchema, CreateEvalRequestBodyOutputType$outboundSchema, CreateEvalRequestBodyOutputType$, CreateEvalRequestBodyEvalsType$inboundSchema, CreateEvalRequestBodyEvalsType$outboundSchema, CreateEvalRequestBodyEvalsType$, Method$inboundSchema, Method$outboundSchema, Method$, Http$inboundSchema, Http$outboundSchema, Http$, CreateEvalGuardrailConfigEvalsRequestType$inboundSchema, CreateEvalGuardrailConfigEvalsRequestType$outboundSchema, CreateEvalGuardrailConfigEvalsRequestType$, GuardrailConfigOperator$inboundSchema, GuardrailConfigOperator$outboundSchema, GuardrailConfigOperator$, GuardrailConfigNumber$inboundSchema, GuardrailConfigNumber$outboundSchema, GuardrailConfigNumber$, CreateEvalGuardrailConfigEvalsType$inboundSchema, CreateEvalGuardrailConfigEvalsType$outboundSchema, CreateEvalGuardrailConfigEvalsType$, GuardrailConfigBoolean$inboundSchema, GuardrailConfigBoolean$outboundSchema, GuardrailConfigBoolean$, RequestBodyGuardrailConfig$inboundSchema, RequestBodyGuardrailConfig$outboundSchema, RequestBodyGuardrailConfig$, RequestBodyOutputType$inboundSchema, RequestBodyOutputType$outboundSchema, RequestBodyOutputType$, CreateEvalRequestBodyType$inboundSchema, CreateEvalRequestBodyType$outboundSchema, CreateEvalRequestBodyType$, Json$inboundSchema, Json$outboundSchema, Json$, CreateEvalGuardrailConfigType$inboundSchema, CreateEvalGuardrailConfigType$outboundSchema, CreateEvalGuardrailConfigType$, Operator$inboundSchema, Operator$outboundSchema, Operator$, NumberT$inboundSchema, NumberT$outboundSchema, NumberT$, GuardrailConfigType$inboundSchema, GuardrailConfigType$outboundSchema, GuardrailConfigType$, Boolean$inboundSchema, Boolean$outboundSchema, Boolean$, GuardrailConfig$inboundSchema, GuardrailConfig$outboundSchema, GuardrailConfig$, OutputType$inboundSchema, OutputType$outboundSchema, OutputType$, RequestBodyType$inboundSchema, RequestBodyType$outboundSchema, RequestBodyType$, Llm$inboundSchema, Llm$outboundSchema, Llm$, CreateEvalRequestBody$inboundSchema, CreateEvalRequestBody$outboundSchema, CreateEvalRequestBody$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$, CreateEvalResponseBodyEvalsResponseGuardrailConfig$inboundSchema, CreateEvalResponseBodyEvalsResponseGuardrailConfig$outboundSchema, CreateEvalResponseBodyEvalsResponseGuardrailConfig$, CreateEvalResponseBodyEvalsResponseType$inboundSchema, CreateEvalResponseBodyEvalsResponseType$outboundSchema, CreateEvalResponseBodyEvalsResponseType$, ResponseBodyPython$inboundSchema, ResponseBodyPython$outboundSchema, ResponseBodyPython$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$, CreateEvalResponseBodyEvalsGuardrailConfig$inboundSchema, CreateEvalResponseBodyEvalsGuardrailConfig$outboundSchema, CreateEvalResponseBodyEvalsGuardrailConfig$, CreateEvalResponseBodyEvalsType$inboundSchema, CreateEvalResponseBodyEvalsType$outboundSchema, CreateEvalResponseBodyEvalsType$, ResponseBodyMethod$inboundSchema, ResponseBodyMethod$outboundSchema, ResponseBodyMethod$, ResponseBodyHTTP$inboundSchema, ResponseBodyHTTP$outboundSchema, ResponseBodyHTTP$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$, CreateEvalGuardrailConfigEvalsResponse200Operator$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200Operator$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200Operator$, CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200Number$, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$, CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200Boolean$, CreateEvalResponseBodyGuardrailConfig$inboundSchema, CreateEvalResponseBodyGuardrailConfig$outboundSchema, CreateEvalResponseBodyGuardrailConfig$, CreateEvalResponseBodyType$inboundSchema, CreateEvalResponseBodyType$outboundSchema, CreateEvalResponseBodyType$, ResponseBodyJSON$inboundSchema, ResponseBodyJSON$outboundSchema, ResponseBodyJSON$, CreateEvalGuardrailConfigEvalsResponse200Type$inboundSchema, CreateEvalGuardrailConfigEvalsResponse200Type$outboundSchema, CreateEvalGuardrailConfigEvalsResponse200Type$, CreateEvalGuardrailConfigEvalsResponseOperator$inboundSchema, CreateEvalGuardrailConfigEvalsResponseOperator$outboundSchema, CreateEvalGuardrailConfigEvalsResponseOperator$, CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema, CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema, CreateEvalGuardrailConfigEvalsResponseNumber$, CreateEvalGuardrailConfigEvalsResponseType$inboundSchema, CreateEvalGuardrailConfigEvalsResponseType$outboundSchema, CreateEvalGuardrailConfigEvalsResponseType$, CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema, CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema, CreateEvalGuardrailConfigEvalsResponseBoolean$, ResponseBodyGuardrailConfig$inboundSchema, ResponseBodyGuardrailConfig$outboundSchema, ResponseBodyGuardrailConfig$, ResponseBodyType$inboundSchema, ResponseBodyType$outboundSchema, ResponseBodyType$, ResponseBodyLLM$inboundSchema, ResponseBodyLLM$outboundSchema, ResponseBodyLLM$, CreateEvalResponseBody$inboundSchema, CreateEvalResponseBody$outboundSchema, CreateEvalResponseBody$;
|
|
37906
37906
|
var init_createeval = __esm(() => {
|
|
37907
37907
|
init_esm();
|
|
37908
37908
|
init_primitives();
|
|
@@ -37920,6 +37920,11 @@ var init_createeval = __esm(() => {
|
|
|
37920
37920
|
CreateEvalGuardrailConfigEvalsRequestRequestBody4Type = {
|
|
37921
37921
|
Boolean: "boolean"
|
|
37922
37922
|
};
|
|
37923
|
+
CreateEvalRequestBodyEvalsOutputType = {
|
|
37924
|
+
Boolean: "boolean",
|
|
37925
|
+
Number: "number",
|
|
37926
|
+
String: "string"
|
|
37927
|
+
};
|
|
37923
37928
|
CreateEvalRequestBodyEvalsRequestType = {
|
|
37924
37929
|
PythonEval: "python_eval"
|
|
37925
37930
|
};
|
|
@@ -37937,6 +37942,11 @@ var init_createeval = __esm(() => {
|
|
|
37937
37942
|
CreateEvalGuardrailConfigEvalsRequestRequestBodyType = {
|
|
37938
37943
|
Boolean: "boolean"
|
|
37939
37944
|
};
|
|
37945
|
+
CreateEvalRequestBodyOutputType = {
|
|
37946
|
+
Boolean: "boolean",
|
|
37947
|
+
Number: "number",
|
|
37948
|
+
String: "string"
|
|
37949
|
+
};
|
|
37940
37950
|
CreateEvalRequestBodyEvalsType = {
|
|
37941
37951
|
HttpEval: "http_eval"
|
|
37942
37952
|
};
|
|
@@ -37958,6 +37968,9 @@ var init_createeval = __esm(() => {
|
|
|
37958
37968
|
CreateEvalGuardrailConfigEvalsType = {
|
|
37959
37969
|
Boolean: "boolean"
|
|
37960
37970
|
};
|
|
37971
|
+
RequestBodyOutputType = {
|
|
37972
|
+
Boolean: "boolean"
|
|
37973
|
+
};
|
|
37961
37974
|
CreateEvalRequestBodyType = {
|
|
37962
37975
|
JsonSchema: "json_schema"
|
|
37963
37976
|
};
|
|
@@ -37975,6 +37988,11 @@ var init_createeval = __esm(() => {
|
|
|
37975
37988
|
GuardrailConfigType = {
|
|
37976
37989
|
Boolean: "boolean"
|
|
37977
37990
|
};
|
|
37991
|
+
OutputType = {
|
|
37992
|
+
Boolean: "boolean",
|
|
37993
|
+
Number: "number",
|
|
37994
|
+
String: "string"
|
|
37995
|
+
};
|
|
37978
37996
|
RequestBodyType = {
|
|
37979
37997
|
LlmEval: "llm_eval"
|
|
37980
37998
|
};
|
|
@@ -38110,6 +38128,12 @@ var init_createeval = __esm(() => {
|
|
|
38110
38128
|
CreateEvalRequestBodyEvalsGuardrailConfig$.inboundSchema = CreateEvalRequestBodyEvalsGuardrailConfig$inboundSchema;
|
|
38111
38129
|
CreateEvalRequestBodyEvalsGuardrailConfig$.outboundSchema = CreateEvalRequestBodyEvalsGuardrailConfig$outboundSchema;
|
|
38112
38130
|
})(CreateEvalRequestBodyEvalsGuardrailConfig$ ||= {});
|
|
38131
|
+
CreateEvalRequestBodyEvalsOutputType$inboundSchema = nativeEnumType(CreateEvalRequestBodyEvalsOutputType);
|
|
38132
|
+
CreateEvalRequestBodyEvalsOutputType$outboundSchema = CreateEvalRequestBodyEvalsOutputType$inboundSchema;
|
|
38133
|
+
((CreateEvalRequestBodyEvalsOutputType$) => {
|
|
38134
|
+
CreateEvalRequestBodyEvalsOutputType$.inboundSchema = CreateEvalRequestBodyEvalsOutputType$inboundSchema;
|
|
38135
|
+
CreateEvalRequestBodyEvalsOutputType$.outboundSchema = CreateEvalRequestBodyEvalsOutputType$outboundSchema;
|
|
38136
|
+
})(CreateEvalRequestBodyEvalsOutputType$ ||= {});
|
|
38113
38137
|
CreateEvalRequestBodyEvalsRequestType$inboundSchema = nativeEnumType(CreateEvalRequestBodyEvalsRequestType);
|
|
38114
38138
|
CreateEvalRequestBodyEvalsRequestType$outboundSchema = CreateEvalRequestBodyEvalsRequestType$inboundSchema;
|
|
38115
38139
|
((CreateEvalRequestBodyEvalsRequestType$) => {
|
|
@@ -38121,6 +38145,7 @@ var init_createeval = __esm(() => {
|
|
|
38121
38145
|
lazyType(() => CreateEvalGuardrailConfigEvalsNumber$inboundSchema),
|
|
38122
38146
|
lazyType(() => CreateEvalGuardrailConfigEvalsBoolean$inboundSchema)
|
|
38123
38147
|
]).optional(),
|
|
38148
|
+
output_type: CreateEvalRequestBodyEvalsOutputType$inboundSchema,
|
|
38124
38149
|
code: stringType(),
|
|
38125
38150
|
type: CreateEvalRequestBodyEvalsRequestType$inboundSchema,
|
|
38126
38151
|
path: stringType(),
|
|
@@ -38128,7 +38153,8 @@ var init_createeval = __esm(() => {
|
|
|
38128
38153
|
key: stringType()
|
|
38129
38154
|
}).transform((v2) => {
|
|
38130
38155
|
return remap(v2, {
|
|
38131
|
-
guardrail_config: "guardrailConfig"
|
|
38156
|
+
guardrail_config: "guardrailConfig",
|
|
38157
|
+
output_type: "outputType"
|
|
38132
38158
|
});
|
|
38133
38159
|
});
|
|
38134
38160
|
Python$outboundSchema = objectType({
|
|
@@ -38136,6 +38162,7 @@ var init_createeval = __esm(() => {
|
|
|
38136
38162
|
lazyType(() => CreateEvalGuardrailConfigEvalsNumber$outboundSchema),
|
|
38137
38163
|
lazyType(() => CreateEvalGuardrailConfigEvalsBoolean$outboundSchema)
|
|
38138
38164
|
]).optional(),
|
|
38165
|
+
outputType: CreateEvalRequestBodyEvalsOutputType$outboundSchema,
|
|
38139
38166
|
code: stringType(),
|
|
38140
38167
|
type: CreateEvalRequestBodyEvalsRequestType$outboundSchema,
|
|
38141
38168
|
path: stringType(),
|
|
@@ -38143,7 +38170,8 @@ var init_createeval = __esm(() => {
|
|
|
38143
38170
|
key: stringType()
|
|
38144
38171
|
}).transform((v2) => {
|
|
38145
38172
|
return remap(v2, {
|
|
38146
|
-
guardrailConfig: "guardrail_config"
|
|
38173
|
+
guardrailConfig: "guardrail_config",
|
|
38174
|
+
outputType: "output_type"
|
|
38147
38175
|
});
|
|
38148
38176
|
});
|
|
38149
38177
|
((Python$) => {
|
|
@@ -38210,6 +38238,12 @@ var init_createeval = __esm(() => {
|
|
|
38210
38238
|
CreateEvalRequestBodyGuardrailConfig$.inboundSchema = CreateEvalRequestBodyGuardrailConfig$inboundSchema;
|
|
38211
38239
|
CreateEvalRequestBodyGuardrailConfig$.outboundSchema = CreateEvalRequestBodyGuardrailConfig$outboundSchema;
|
|
38212
38240
|
})(CreateEvalRequestBodyGuardrailConfig$ ||= {});
|
|
38241
|
+
CreateEvalRequestBodyOutputType$inboundSchema = nativeEnumType(CreateEvalRequestBodyOutputType);
|
|
38242
|
+
CreateEvalRequestBodyOutputType$outboundSchema = CreateEvalRequestBodyOutputType$inboundSchema;
|
|
38243
|
+
((CreateEvalRequestBodyOutputType$) => {
|
|
38244
|
+
CreateEvalRequestBodyOutputType$.inboundSchema = CreateEvalRequestBodyOutputType$inboundSchema;
|
|
38245
|
+
CreateEvalRequestBodyOutputType$.outboundSchema = CreateEvalRequestBodyOutputType$outboundSchema;
|
|
38246
|
+
})(CreateEvalRequestBodyOutputType$ ||= {});
|
|
38213
38247
|
CreateEvalRequestBodyEvalsType$inboundSchema = nativeEnumType(CreateEvalRequestBodyEvalsType);
|
|
38214
38248
|
CreateEvalRequestBodyEvalsType$outboundSchema = CreateEvalRequestBodyEvalsType$inboundSchema;
|
|
38215
38249
|
((CreateEvalRequestBodyEvalsType$) => {
|
|
@@ -38227,6 +38261,7 @@ var init_createeval = __esm(() => {
|
|
|
38227
38261
|
lazyType(() => CreateEvalGuardrailConfigNumber$inboundSchema),
|
|
38228
38262
|
lazyType(() => CreateEvalGuardrailConfigBoolean$inboundSchema)
|
|
38229
38263
|
]).optional(),
|
|
38264
|
+
output_type: CreateEvalRequestBodyOutputType$inboundSchema,
|
|
38230
38265
|
type: CreateEvalRequestBodyEvalsType$inboundSchema,
|
|
38231
38266
|
url: stringType(),
|
|
38232
38267
|
method: Method$inboundSchema,
|
|
@@ -38237,7 +38272,8 @@ var init_createeval = __esm(() => {
|
|
|
38237
38272
|
key: stringType()
|
|
38238
38273
|
}).transform((v2) => {
|
|
38239
38274
|
return remap(v2, {
|
|
38240
|
-
guardrail_config: "guardrailConfig"
|
|
38275
|
+
guardrail_config: "guardrailConfig",
|
|
38276
|
+
output_type: "outputType"
|
|
38241
38277
|
});
|
|
38242
38278
|
});
|
|
38243
38279
|
Http$outboundSchema = objectType({
|
|
@@ -38245,6 +38281,7 @@ var init_createeval = __esm(() => {
|
|
|
38245
38281
|
lazyType(() => CreateEvalGuardrailConfigNumber$outboundSchema),
|
|
38246
38282
|
lazyType(() => CreateEvalGuardrailConfigBoolean$outboundSchema)
|
|
38247
38283
|
]).optional(),
|
|
38284
|
+
outputType: CreateEvalRequestBodyOutputType$outboundSchema,
|
|
38248
38285
|
type: CreateEvalRequestBodyEvalsType$outboundSchema,
|
|
38249
38286
|
url: stringType(),
|
|
38250
38287
|
method: Method$outboundSchema,
|
|
@@ -38255,7 +38292,8 @@ var init_createeval = __esm(() => {
|
|
|
38255
38292
|
key: stringType()
|
|
38256
38293
|
}).transform((v2) => {
|
|
38257
38294
|
return remap(v2, {
|
|
38258
|
-
guardrailConfig: "guardrail_config"
|
|
38295
|
+
guardrailConfig: "guardrail_config",
|
|
38296
|
+
outputType: "output_type"
|
|
38259
38297
|
});
|
|
38260
38298
|
});
|
|
38261
38299
|
((Http$) => {
|
|
@@ -38322,6 +38360,12 @@ var init_createeval = __esm(() => {
|
|
|
38322
38360
|
RequestBodyGuardrailConfig$.inboundSchema = RequestBodyGuardrailConfig$inboundSchema;
|
|
38323
38361
|
RequestBodyGuardrailConfig$.outboundSchema = RequestBodyGuardrailConfig$outboundSchema;
|
|
38324
38362
|
})(RequestBodyGuardrailConfig$ ||= {});
|
|
38363
|
+
RequestBodyOutputType$inboundSchema = nativeEnumType(RequestBodyOutputType);
|
|
38364
|
+
RequestBodyOutputType$outboundSchema = RequestBodyOutputType$inboundSchema;
|
|
38365
|
+
((RequestBodyOutputType$) => {
|
|
38366
|
+
RequestBodyOutputType$.inboundSchema = RequestBodyOutputType$inboundSchema;
|
|
38367
|
+
RequestBodyOutputType$.outboundSchema = RequestBodyOutputType$outboundSchema;
|
|
38368
|
+
})(RequestBodyOutputType$ ||= {});
|
|
38325
38369
|
CreateEvalRequestBodyType$inboundSchema = nativeEnumType(CreateEvalRequestBodyType);
|
|
38326
38370
|
CreateEvalRequestBodyType$outboundSchema = CreateEvalRequestBodyType$inboundSchema;
|
|
38327
38371
|
((CreateEvalRequestBodyType$) => {
|
|
@@ -38333,6 +38377,7 @@ var init_createeval = __esm(() => {
|
|
|
38333
38377
|
lazyType(() => GuardrailConfigNumber$inboundSchema),
|
|
38334
38378
|
lazyType(() => GuardrailConfigBoolean$inboundSchema)
|
|
38335
38379
|
]).optional(),
|
|
38380
|
+
output_type: RequestBodyOutputType$inboundSchema,
|
|
38336
38381
|
type: CreateEvalRequestBodyType$inboundSchema,
|
|
38337
38382
|
schema: stringType(),
|
|
38338
38383
|
path: stringType(),
|
|
@@ -38340,7 +38385,8 @@ var init_createeval = __esm(() => {
|
|
|
38340
38385
|
key: stringType()
|
|
38341
38386
|
}).transform((v2) => {
|
|
38342
38387
|
return remap(v2, {
|
|
38343
|
-
guardrail_config: "guardrailConfig"
|
|
38388
|
+
guardrail_config: "guardrailConfig",
|
|
38389
|
+
output_type: "outputType"
|
|
38344
38390
|
});
|
|
38345
38391
|
});
|
|
38346
38392
|
Json$outboundSchema = objectType({
|
|
@@ -38348,6 +38394,7 @@ var init_createeval = __esm(() => {
|
|
|
38348
38394
|
lazyType(() => GuardrailConfigNumber$outboundSchema),
|
|
38349
38395
|
lazyType(() => GuardrailConfigBoolean$outboundSchema)
|
|
38350
38396
|
]).optional(),
|
|
38397
|
+
outputType: RequestBodyOutputType$outboundSchema,
|
|
38351
38398
|
type: CreateEvalRequestBodyType$outboundSchema,
|
|
38352
38399
|
schema: stringType(),
|
|
38353
38400
|
path: stringType(),
|
|
@@ -38355,7 +38402,8 @@ var init_createeval = __esm(() => {
|
|
|
38355
38402
|
key: stringType()
|
|
38356
38403
|
}).transform((v2) => {
|
|
38357
38404
|
return remap(v2, {
|
|
38358
|
-
guardrailConfig: "guardrail_config"
|
|
38405
|
+
guardrailConfig: "guardrail_config",
|
|
38406
|
+
outputType: "output_type"
|
|
38359
38407
|
});
|
|
38360
38408
|
});
|
|
38361
38409
|
((Json$) => {
|
|
@@ -38422,6 +38470,12 @@ var init_createeval = __esm(() => {
|
|
|
38422
38470
|
GuardrailConfig$.inboundSchema = GuardrailConfig$inboundSchema;
|
|
38423
38471
|
GuardrailConfig$.outboundSchema = GuardrailConfig$outboundSchema;
|
|
38424
38472
|
})(GuardrailConfig$ ||= {});
|
|
38473
|
+
OutputType$inboundSchema = nativeEnumType(OutputType);
|
|
38474
|
+
OutputType$outboundSchema = OutputType$inboundSchema;
|
|
38475
|
+
((OutputType$) => {
|
|
38476
|
+
OutputType$.inboundSchema = OutputType$inboundSchema;
|
|
38477
|
+
OutputType$.outboundSchema = OutputType$outboundSchema;
|
|
38478
|
+
})(OutputType$ ||= {});
|
|
38425
38479
|
RequestBodyType$inboundSchema = nativeEnumType(RequestBodyType);
|
|
38426
38480
|
RequestBodyType$outboundSchema = RequestBodyType$inboundSchema;
|
|
38427
38481
|
((RequestBodyType$) => {
|
|
@@ -38433,6 +38487,7 @@ var init_createeval = __esm(() => {
|
|
|
38433
38487
|
lazyType(() => NumberT$inboundSchema),
|
|
38434
38488
|
lazyType(() => Boolean$inboundSchema)
|
|
38435
38489
|
]).optional(),
|
|
38490
|
+
output_type: OutputType$inboundSchema,
|
|
38436
38491
|
type: RequestBodyType$inboundSchema,
|
|
38437
38492
|
prompt: stringType(),
|
|
38438
38493
|
path: stringType(),
|
|
@@ -38441,7 +38496,8 @@ var init_createeval = __esm(() => {
|
|
|
38441
38496
|
key: stringType()
|
|
38442
38497
|
}).transform((v2) => {
|
|
38443
38498
|
return remap(v2, {
|
|
38444
|
-
guardrail_config: "guardrailConfig"
|
|
38499
|
+
guardrail_config: "guardrailConfig",
|
|
38500
|
+
output_type: "outputType"
|
|
38445
38501
|
});
|
|
38446
38502
|
});
|
|
38447
38503
|
Llm$outboundSchema = objectType({
|
|
@@ -38449,6 +38505,7 @@ var init_createeval = __esm(() => {
|
|
|
38449
38505
|
lazyType(() => NumberT$outboundSchema),
|
|
38450
38506
|
lazyType(() => Boolean$outboundSchema)
|
|
38451
38507
|
]).optional(),
|
|
38508
|
+
outputType: OutputType$outboundSchema,
|
|
38452
38509
|
type: RequestBodyType$outboundSchema,
|
|
38453
38510
|
prompt: stringType(),
|
|
38454
38511
|
path: stringType(),
|
|
@@ -38457,7 +38514,8 @@ var init_createeval = __esm(() => {
|
|
|
38457
38514
|
key: stringType()
|
|
38458
38515
|
}).transform((v2) => {
|
|
38459
38516
|
return remap(v2, {
|
|
38460
|
-
guardrailConfig: "guardrail_config"
|
|
38517
|
+
guardrailConfig: "guardrail_config",
|
|
38518
|
+
outputType: "output_type"
|
|
38461
38519
|
});
|
|
38462
38520
|
});
|
|
38463
38521
|
((Llm$) => {
|
|
@@ -38549,8 +38607,8 @@ var init_createeval = __esm(() => {
|
|
|
38549
38607
|
ResponseBodyPython$inboundSchema = objectType({
|
|
38550
38608
|
_id: stringType(),
|
|
38551
38609
|
description: stringType(),
|
|
38552
|
-
created: stringType().default("2025-09-
|
|
38553
|
-
updated: stringType().default("2025-09-
|
|
38610
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38611
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38554
38612
|
guardrail_config: unionType([
|
|
38555
38613
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
38556
38614
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -38567,8 +38625,8 @@ var init_createeval = __esm(() => {
|
|
|
38567
38625
|
ResponseBodyPython$outboundSchema = objectType({
|
|
38568
38626
|
id: stringType(),
|
|
38569
38627
|
description: stringType(),
|
|
38570
|
-
created: stringType().default("2025-09-
|
|
38571
|
-
updated: stringType().default("2025-09-
|
|
38628
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38629
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38572
38630
|
guardrailConfig: unionType([
|
|
38573
38631
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
38574
38632
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -38661,8 +38719,8 @@ var init_createeval = __esm(() => {
|
|
|
38661
38719
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
38662
38720
|
_id: stringType(),
|
|
38663
38721
|
description: stringType(),
|
|
38664
|
-
created: stringType().default("2025-09-
|
|
38665
|
-
updated: stringType().default("2025-09-
|
|
38722
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38723
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38666
38724
|
guardrail_config: unionType([
|
|
38667
38725
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
38668
38726
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -38682,8 +38740,8 @@ var init_createeval = __esm(() => {
|
|
|
38682
38740
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
38683
38741
|
id: stringType(),
|
|
38684
38742
|
description: stringType(),
|
|
38685
|
-
created: stringType().default("2025-09-
|
|
38686
|
-
updated: stringType().default("2025-09-
|
|
38743
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38744
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38687
38745
|
guardrailConfig: unionType([
|
|
38688
38746
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
38689
38747
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -38773,8 +38831,8 @@ var init_createeval = __esm(() => {
|
|
|
38773
38831
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
38774
38832
|
_id: stringType(),
|
|
38775
38833
|
description: stringType(),
|
|
38776
|
-
created: stringType().default("2025-09-
|
|
38777
|
-
updated: stringType().default("2025-09-
|
|
38834
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38835
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38778
38836
|
guardrail_config: unionType([
|
|
38779
38837
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
38780
38838
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -38791,8 +38849,8 @@ var init_createeval = __esm(() => {
|
|
|
38791
38849
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
38792
38850
|
id: stringType(),
|
|
38793
38851
|
description: stringType(),
|
|
38794
|
-
created: stringType().default("2025-09-
|
|
38795
|
-
updated: stringType().default("2025-09-
|
|
38852
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38853
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38796
38854
|
guardrailConfig: unionType([
|
|
38797
38855
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
38798
38856
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -38879,8 +38937,8 @@ var init_createeval = __esm(() => {
|
|
|
38879
38937
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
38880
38938
|
_id: stringType(),
|
|
38881
38939
|
description: stringType(),
|
|
38882
|
-
created: stringType().default("2025-09-
|
|
38883
|
-
updated: stringType().default("2025-09-
|
|
38940
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38941
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38884
38942
|
guardrail_config: unionType([
|
|
38885
38943
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
38886
38944
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -38898,8 +38956,8 @@ var init_createeval = __esm(() => {
|
|
|
38898
38956
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
38899
38957
|
id: stringType(),
|
|
38900
38958
|
description: stringType(),
|
|
38901
|
-
created: stringType().default("2025-09-
|
|
38902
|
-
updated: stringType().default("2025-09-
|
|
38959
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38960
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
38903
38961
|
guardrailConfig: unionType([
|
|
38904
38962
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
38905
38963
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -49736,7 +49794,7 @@ var init_fileget = __esm(() => {
|
|
|
49736
49794
|
bytes: numberType(),
|
|
49737
49795
|
file_name: stringType(),
|
|
49738
49796
|
workspace_id: stringType(),
|
|
49739
|
-
created: stringType().datetime({ offset: true }).default("2025-09-
|
|
49797
|
+
created: stringType().datetime({ offset: true }).default("2025-09-18T21:41:51.963Z").transform((v2) => new Date(v2))
|
|
49740
49798
|
}).transform((v2) => {
|
|
49741
49799
|
return remap(v2, {
|
|
49742
49800
|
_id: "id",
|
|
@@ -49752,7 +49810,7 @@ var init_fileget = __esm(() => {
|
|
|
49752
49810
|
bytes: numberType(),
|
|
49753
49811
|
fileName: stringType(),
|
|
49754
49812
|
workspaceId: stringType(),
|
|
49755
|
-
created: dateType().default(() => new Date("2025-09-
|
|
49813
|
+
created: dateType().default(() => new Date("2025-09-18T21:41:51.963Z")).transform((v2) => v2.toISOString())
|
|
49756
49814
|
}).transform((v2) => {
|
|
49757
49815
|
return remap(v2, {
|
|
49758
49816
|
id: "_id",
|
|
@@ -49823,7 +49881,7 @@ var init_filelist = __esm(() => {
|
|
|
49823
49881
|
bytes: numberType(),
|
|
49824
49882
|
file_name: stringType(),
|
|
49825
49883
|
workspace_id: stringType(),
|
|
49826
|
-
created: stringType().datetime({ offset: true }).default("2025-09-
|
|
49884
|
+
created: stringType().datetime({ offset: true }).default("2025-09-18T21:41:51.963Z").transform((v2) => new Date(v2))
|
|
49827
49885
|
}).transform((v2) => {
|
|
49828
49886
|
return remap(v2, {
|
|
49829
49887
|
_id: "id",
|
|
@@ -49839,7 +49897,7 @@ var init_filelist = __esm(() => {
|
|
|
49839
49897
|
bytes: numberType(),
|
|
49840
49898
|
fileName: stringType(),
|
|
49841
49899
|
workspaceId: stringType(),
|
|
49842
|
-
created: dateType().default(() => new Date("2025-09-
|
|
49900
|
+
created: dateType().default(() => new Date("2025-09-18T21:41:51.963Z")).transform((v2) => v2.toISOString())
|
|
49843
49901
|
}).transform((v2) => {
|
|
49844
49902
|
return remap(v2, {
|
|
49845
49903
|
id: "_id",
|
|
@@ -49971,7 +50029,7 @@ var init_fileupload = __esm(() => {
|
|
|
49971
50029
|
bytes: numberType(),
|
|
49972
50030
|
file_name: stringType(),
|
|
49973
50031
|
workspace_id: stringType(),
|
|
49974
|
-
created: stringType().datetime({ offset: true }).default("2025-09-
|
|
50032
|
+
created: stringType().datetime({ offset: true }).default("2025-09-18T21:41:51.963Z").transform((v2) => new Date(v2))
|
|
49975
50033
|
}).transform((v2) => {
|
|
49976
50034
|
return remap(v2, {
|
|
49977
50035
|
_id: "id",
|
|
@@ -49987,7 +50045,7 @@ var init_fileupload = __esm(() => {
|
|
|
49987
50045
|
bytes: numberType(),
|
|
49988
50046
|
fileName: stringType(),
|
|
49989
50047
|
workspaceId: stringType(),
|
|
49990
|
-
created: dateType().default(() => new Date("2025-09-
|
|
50048
|
+
created: dateType().default(() => new Date("2025-09-18T21:41:51.963Z")).transform((v2) => v2.toISOString())
|
|
49991
50049
|
}).transform((v2) => {
|
|
49992
50050
|
return remap(v2, {
|
|
49993
50051
|
id: "_id",
|
|
@@ -50804,7 +50862,7 @@ var init_getbudget = __esm(() => {
|
|
|
50804
50862
|
is_active: booleanType(),
|
|
50805
50863
|
consumption: lazyType(() => GetBudgetConsumption$inboundSchema).optional(),
|
|
50806
50864
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
50807
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
50865
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
50808
50866
|
}).transform((v2) => {
|
|
50809
50867
|
return remap(v2, {
|
|
50810
50868
|
_id: "id",
|
|
@@ -50822,7 +50880,7 @@ var init_getbudget = __esm(() => {
|
|
|
50822
50880
|
isActive: booleanType(),
|
|
50823
50881
|
consumption: lazyType(() => GetBudgetConsumption$outboundSchema).optional(),
|
|
50824
50882
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
50825
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
50883
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
50826
50884
|
}).transform((v2) => {
|
|
50827
50885
|
return remap(v2, {
|
|
50828
50886
|
id: "_id",
|
|
@@ -51186,8 +51244,8 @@ var init_getevals = __esm(() => {
|
|
|
51186
51244
|
Typescript$inboundSchema = objectType({
|
|
51187
51245
|
_id: stringType(),
|
|
51188
51246
|
description: stringType(),
|
|
51189
|
-
created: stringType().default("2025-09-
|
|
51190
|
-
updated: stringType().default("2025-09-
|
|
51247
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
51248
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
51191
51249
|
guardrail_config: unionType([
|
|
51192
51250
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
51193
51251
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -51204,8 +51262,8 @@ var init_getevals = __esm(() => {
|
|
|
51204
51262
|
Typescript$outboundSchema = objectType({
|
|
51205
51263
|
id: stringType(),
|
|
51206
51264
|
description: stringType(),
|
|
51207
|
-
created: stringType().default("2025-09-
|
|
51208
|
-
updated: stringType().default("2025-09-
|
|
51265
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
51266
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
51209
51267
|
guardrailConfig: unionType([
|
|
51210
51268
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
51211
51269
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -51298,8 +51356,8 @@ var init_getevals = __esm(() => {
|
|
|
51298
51356
|
Ragas$inboundSchema = objectType({
|
|
51299
51357
|
_id: stringType(),
|
|
51300
51358
|
description: stringType(),
|
|
51301
|
-
created: stringType().default("2025-09-
|
|
51302
|
-
updated: stringType().default("2025-09-
|
|
51359
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
51360
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
51303
51361
|
guardrail_config: unionType([
|
|
51304
51362
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
51305
51363
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -51318,8 +51376,8 @@ var init_getevals = __esm(() => {
|
|
|
51318
51376
|
Ragas$outboundSchema = objectType({
|
|
51319
51377
|
id: stringType(),
|
|
51320
51378
|
description: stringType(),
|
|
51321
|
-
created: stringType().default("2025-09-
|
|
51322
|
-
updated: stringType().default("2025-09-
|
|
51379
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
51380
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
51323
51381
|
guardrailConfig: unionType([
|
|
51324
51382
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
51325
51383
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -52072,8 +52130,8 @@ var init_getevals = __esm(() => {
|
|
|
52072
52130
|
DataFunction$inboundSchema = objectType({
|
|
52073
52131
|
_id: stringType(),
|
|
52074
52132
|
description: stringType(),
|
|
52075
|
-
created: stringType().default("2025-09-
|
|
52076
|
-
updated: stringType().default("2025-09-
|
|
52133
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52134
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52077
52135
|
guardrail_config: unionType([
|
|
52078
52136
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
52079
52137
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -52127,8 +52185,8 @@ var init_getevals = __esm(() => {
|
|
|
52127
52185
|
DataFunction$outboundSchema = objectType({
|
|
52128
52186
|
id: stringType(),
|
|
52129
52187
|
description: stringType(),
|
|
52130
|
-
created: stringType().default("2025-09-
|
|
52131
|
-
updated: stringType().default("2025-09-
|
|
52188
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52189
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52132
52190
|
guardrailConfig: unionType([
|
|
52133
52191
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
52134
52192
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -52252,8 +52310,8 @@ var init_getevals = __esm(() => {
|
|
|
52252
52310
|
DataPython$inboundSchema = objectType({
|
|
52253
52311
|
_id: stringType(),
|
|
52254
52312
|
description: stringType(),
|
|
52255
|
-
created: stringType().default("2025-09-
|
|
52256
|
-
updated: stringType().default("2025-09-
|
|
52313
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52314
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52257
52315
|
guardrail_config: unionType([
|
|
52258
52316
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
52259
52317
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -52270,8 +52328,8 @@ var init_getevals = __esm(() => {
|
|
|
52270
52328
|
DataPython$outboundSchema = objectType({
|
|
52271
52329
|
id: stringType(),
|
|
52272
52330
|
description: stringType(),
|
|
52273
|
-
created: stringType().default("2025-09-
|
|
52274
|
-
updated: stringType().default("2025-09-
|
|
52331
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52332
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52275
52333
|
guardrailConfig: unionType([
|
|
52276
52334
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
52277
52335
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -52364,8 +52422,8 @@ var init_getevals = __esm(() => {
|
|
|
52364
52422
|
DataHTTP$inboundSchema = objectType({
|
|
52365
52423
|
_id: stringType(),
|
|
52366
52424
|
description: stringType(),
|
|
52367
|
-
created: stringType().default("2025-09-
|
|
52368
|
-
updated: stringType().default("2025-09-
|
|
52425
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52426
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52369
52427
|
guardrail_config: unionType([
|
|
52370
52428
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
52371
52429
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -52385,8 +52443,8 @@ var init_getevals = __esm(() => {
|
|
|
52385
52443
|
DataHTTP$outboundSchema = objectType({
|
|
52386
52444
|
id: stringType(),
|
|
52387
52445
|
description: stringType(),
|
|
52388
|
-
created: stringType().default("2025-09-
|
|
52389
|
-
updated: stringType().default("2025-09-
|
|
52446
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52447
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52390
52448
|
guardrailConfig: unionType([
|
|
52391
52449
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
52392
52450
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -52476,8 +52534,8 @@ var init_getevals = __esm(() => {
|
|
|
52476
52534
|
DataJSON$inboundSchema = objectType({
|
|
52477
52535
|
_id: stringType(),
|
|
52478
52536
|
description: stringType(),
|
|
52479
|
-
created: stringType().default("2025-09-
|
|
52480
|
-
updated: stringType().default("2025-09-
|
|
52537
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52538
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52481
52539
|
guardrail_config: unionType([
|
|
52482
52540
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
52483
52541
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -52494,8 +52552,8 @@ var init_getevals = __esm(() => {
|
|
|
52494
52552
|
DataJSON$outboundSchema = objectType({
|
|
52495
52553
|
id: stringType(),
|
|
52496
52554
|
description: stringType(),
|
|
52497
|
-
created: stringType().default("2025-09-
|
|
52498
|
-
updated: stringType().default("2025-09-
|
|
52555
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52556
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52499
52557
|
guardrailConfig: unionType([
|
|
52500
52558
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
52501
52559
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -52582,8 +52640,8 @@ var init_getevals = __esm(() => {
|
|
|
52582
52640
|
DataLLM$inboundSchema = objectType({
|
|
52583
52641
|
_id: stringType(),
|
|
52584
52642
|
description: stringType(),
|
|
52585
|
-
created: stringType().default("2025-09-
|
|
52586
|
-
updated: stringType().default("2025-09-
|
|
52643
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52644
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52587
52645
|
guardrail_config: unionType([
|
|
52588
52646
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
52589
52647
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -52601,8 +52659,8 @@ var init_getevals = __esm(() => {
|
|
|
52601
52659
|
DataLLM$outboundSchema = objectType({
|
|
52602
52660
|
id: stringType(),
|
|
52603
52661
|
description: stringType(),
|
|
52604
|
-
created: stringType().default("2025-09-
|
|
52605
|
-
updated: stringType().default("2025-09-
|
|
52662
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52663
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
52606
52664
|
guardrailConfig: unionType([
|
|
52607
52665
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
52608
52666
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -54978,7 +55036,7 @@ var init_listbudgets = __esm(() => {
|
|
|
54978
55036
|
is_active: booleanType(),
|
|
54979
55037
|
consumption: lazyType(() => ListBudgetsConsumption$inboundSchema).optional(),
|
|
54980
55038
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54981
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
55039
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
54982
55040
|
}).transform((v2) => {
|
|
54983
55041
|
return remap(v2, {
|
|
54984
55042
|
_id: "id",
|
|
@@ -54996,7 +55054,7 @@ var init_listbudgets = __esm(() => {
|
|
|
54996
55054
|
isActive: booleanType(),
|
|
54997
55055
|
consumption: lazyType(() => ListBudgetsConsumption$outboundSchema).optional(),
|
|
54998
55056
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54999
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
55057
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
55000
55058
|
}).transform((v2) => {
|
|
55001
55059
|
return remap(v2, {
|
|
55002
55060
|
id: "_id",
|
|
@@ -55265,7 +55323,7 @@ var init_listcontacts = __esm(() => {
|
|
|
55265
55323
|
tags: arrayType(stringType()).optional(),
|
|
55266
55324
|
metadata: recordType(anyType()).optional(),
|
|
55267
55325
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
55268
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
55326
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2)),
|
|
55269
55327
|
metrics: lazyType(() => Metrics$inboundSchema)
|
|
55270
55328
|
}).transform((v2) => {
|
|
55271
55329
|
return remap(v2, {
|
|
@@ -55284,7 +55342,7 @@ var init_listcontacts = __esm(() => {
|
|
|
55284
55342
|
tags: arrayType(stringType()).optional(),
|
|
55285
55343
|
metadata: recordType(anyType()).optional(),
|
|
55286
55344
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
55287
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
55345
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString()),
|
|
55288
55346
|
metrics: lazyType(() => Metrics$outboundSchema)
|
|
55289
55347
|
}).transform((v2) => {
|
|
55290
55348
|
return remap(v2, {
|
|
@@ -56035,7 +56093,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
56035
56093
|
created_by_id: stringType().optional(),
|
|
56036
56094
|
updated_by_id: stringType().optional(),
|
|
56037
56095
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56038
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
56096
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
56039
56097
|
}).transform((v2) => {
|
|
56040
56098
|
return remap(v2, {
|
|
56041
56099
|
_id: "id",
|
|
@@ -56062,7 +56120,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
56062
56120
|
createdById: stringType().optional(),
|
|
56063
56121
|
updatedById: stringType().optional(),
|
|
56064
56122
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56065
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
56123
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
56066
56124
|
}).transform((v2) => {
|
|
56067
56125
|
return remap(v2, {
|
|
56068
56126
|
id: "_id",
|
|
@@ -56170,7 +56228,7 @@ var init_listdatasets = __esm(() => {
|
|
|
56170
56228
|
updated_by_id: stringType().optional(),
|
|
56171
56229
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
56172
56230
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56173
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
56231
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
56174
56232
|
}).transform((v2) => {
|
|
56175
56233
|
return remap(v2, {
|
|
56176
56234
|
_id: "id",
|
|
@@ -56190,7 +56248,7 @@ var init_listdatasets = __esm(() => {
|
|
|
56190
56248
|
updatedById: stringType().optional(),
|
|
56191
56249
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
56192
56250
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56193
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
56251
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
56194
56252
|
}).transform((v2) => {
|
|
56195
56253
|
return remap(v2, {
|
|
56196
56254
|
id: "_id",
|
|
@@ -56295,7 +56353,7 @@ var init_listdatasources = __esm(() => {
|
|
|
56295
56353
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
56296
56354
|
})(ListDatasourcesStatus$ ||= {});
|
|
56297
56355
|
ListDatasourcesData$inboundSchema = objectType({
|
|
56298
|
-
_id: stringType().default("
|
|
56356
|
+
_id: stringType().default("01K5FCDSVH9DR43FN4C656GQR0"),
|
|
56299
56357
|
display_name: stringType(),
|
|
56300
56358
|
description: stringType().optional(),
|
|
56301
56359
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -56318,7 +56376,7 @@ var init_listdatasources = __esm(() => {
|
|
|
56318
56376
|
});
|
|
56319
56377
|
});
|
|
56320
56378
|
ListDatasourcesData$outboundSchema = objectType({
|
|
56321
|
-
id: stringType().default("
|
|
56379
|
+
id: stringType().default("01K5FCDSVH9DR43FN4C656GQR0"),
|
|
56322
56380
|
displayName: stringType(),
|
|
56323
56381
|
description: stringType().optional(),
|
|
56324
56382
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -57866,7 +57924,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
57866
57924
|
tags: arrayType(stringType()).optional(),
|
|
57867
57925
|
metadata: recordType(anyType()).optional(),
|
|
57868
57926
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
57869
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
57927
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
57870
57928
|
}).transform((v2) => {
|
|
57871
57929
|
return remap(v2, {
|
|
57872
57930
|
_id: "id",
|
|
@@ -57884,7 +57942,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
57884
57942
|
tags: arrayType(stringType()).optional(),
|
|
57885
57943
|
metadata: recordType(anyType()).optional(),
|
|
57886
57944
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
57887
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
57945
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
57888
57946
|
}).transform((v2) => {
|
|
57889
57947
|
return remap(v2, {
|
|
57890
57948
|
id: "_id",
|
|
@@ -58597,7 +58655,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
58597
58655
|
created_by_id: stringType().optional(),
|
|
58598
58656
|
updated_by_id: stringType().optional(),
|
|
58599
58657
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58600
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
58658
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
58601
58659
|
}).transform((v2) => {
|
|
58602
58660
|
return remap(v2, {
|
|
58603
58661
|
_id: "id",
|
|
@@ -58624,7 +58682,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
58624
58682
|
createdById: stringType().optional(),
|
|
58625
58683
|
updatedById: stringType().optional(),
|
|
58626
58684
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58627
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
58685
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
58628
58686
|
}).transform((v2) => {
|
|
58629
58687
|
return remap(v2, {
|
|
58630
58688
|
id: "_id",
|
|
@@ -58695,7 +58753,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
58695
58753
|
updated_by_id: stringType().optional(),
|
|
58696
58754
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
58697
58755
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58698
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
58756
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
58699
58757
|
}).transform((v2) => {
|
|
58700
58758
|
return remap(v2, {
|
|
58701
58759
|
_id: "id",
|
|
@@ -58715,7 +58773,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
58715
58773
|
updatedById: stringType().optional(),
|
|
58716
58774
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
58717
58775
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58718
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
58776
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
58719
58777
|
}).transform((v2) => {
|
|
58720
58778
|
return remap(v2, {
|
|
58721
58779
|
id: "_id",
|
|
@@ -58773,7 +58831,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
58773
58831
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
58774
58832
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
58775
58833
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
58776
|
-
_id: stringType().default("
|
|
58834
|
+
_id: stringType().default("01K5FCDSVJM4207B5FRRPKQRT7"),
|
|
58777
58835
|
display_name: stringType(),
|
|
58778
58836
|
description: stringType().optional(),
|
|
58779
58837
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -58796,7 +58854,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
58796
58854
|
});
|
|
58797
58855
|
});
|
|
58798
58856
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
58799
|
-
id: stringType().default("
|
|
58857
|
+
id: stringType().default("01K5FCDSVJM4207B5FRRPKQRT7"),
|
|
58800
58858
|
displayName: stringType(),
|
|
58801
58859
|
description: stringType().optional(),
|
|
58802
58860
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -58825,7 +58883,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
58825
58883
|
});
|
|
58826
58884
|
|
|
58827
58885
|
// src/models/operations/searchknowledge.ts
|
|
58828
|
-
var SearchType,
|
|
58886
|
+
var SearchType, SearchType$inboundSchema, SearchType$outboundSchema, SearchType$, SearchKnowledgeOrExists$inboundSchema, SearchKnowledgeOrExists$outboundSchema, SearchKnowledgeOrExists$, SearchKnowledgeOrKnowledgeNin$inboundSchema, SearchKnowledgeOrKnowledgeNin$outboundSchema, SearchKnowledgeOrKnowledgeNin$, SearchKnowledgeOrNin$inboundSchema, SearchKnowledgeOrNin$outboundSchema, SearchKnowledgeOrNin$, SearchKnowledgeOrKnowledgeIn$inboundSchema, SearchKnowledgeOrKnowledgeIn$outboundSchema, SearchKnowledgeOrKnowledgeIn$, SearchKnowledgeOrIn$inboundSchema, SearchKnowledgeOrIn$outboundSchema, SearchKnowledgeOrIn$, SearchKnowledgeOrLte$inboundSchema, SearchKnowledgeOrLte$outboundSchema, SearchKnowledgeOrLte$, SearchKnowledgeOrLt$inboundSchema, SearchKnowledgeOrLt$outboundSchema, SearchKnowledgeOrLt$, SearchKnowledgeOrGte$inboundSchema, SearchKnowledgeOrGte$outboundSchema, SearchKnowledgeOrGte$, SearchKnowledgeOr3$inboundSchema, SearchKnowledgeOr3$outboundSchema, SearchKnowledgeOr3$, SearchKnowledgeOrKnowledgeNe$inboundSchema, SearchKnowledgeOrKnowledgeNe$outboundSchema, SearchKnowledgeOrKnowledgeNe$, SearchKnowledgeOrNe$inboundSchema, SearchKnowledgeOrNe$outboundSchema, SearchKnowledgeOrNe$, SearchKnowledgeOrKnowledgeEq$inboundSchema, SearchKnowledgeOrKnowledgeEq$outboundSchema, SearchKnowledgeOrKnowledgeEq$, SearchKnowledgeOrEq$inboundSchema, SearchKnowledgeOrEq$outboundSchema, SearchKnowledgeOrEq$, SearchKnowledgeFilterByOr$inboundSchema, SearchKnowledgeFilterByOr$outboundSchema, SearchKnowledgeFilterByOr$, FilterByOr$inboundSchema, FilterByOr$outboundSchema, FilterByOr$, SearchKnowledgeAndExists$inboundSchema, SearchKnowledgeAndExists$outboundSchema, SearchKnowledgeAndExists$, SearchKnowledgeAndKnowledgeNin$inboundSchema, SearchKnowledgeAndKnowledgeNin$outboundSchema, SearchKnowledgeAndKnowledgeNin$, SearchKnowledgeAndNin$inboundSchema, SearchKnowledgeAndNin$outboundSchema, SearchKnowledgeAndNin$, SearchKnowledgeAndKnowledgeIn$inboundSchema, SearchKnowledgeAndKnowledgeIn$outboundSchema, SearchKnowledgeAndKnowledgeIn$, SearchKnowledgeAndIn$inboundSchema, SearchKnowledgeAndIn$outboundSchema, SearchKnowledgeAndIn$, SearchKnowledgeAndLte$inboundSchema, SearchKnowledgeAndLte$outboundSchema, SearchKnowledgeAndLte$, SearchKnowledgeAndLt$inboundSchema, SearchKnowledgeAndLt$outboundSchema, SearchKnowledgeAndLt$, SearchKnowledgeAndGte$inboundSchema, SearchKnowledgeAndGte$outboundSchema, SearchKnowledgeAndGte$, SearchKnowledgeAnd3$inboundSchema, SearchKnowledgeAnd3$outboundSchema, SearchKnowledgeAnd3$, SearchKnowledgeAndKnowledgeNe$inboundSchema, SearchKnowledgeAndKnowledgeNe$outboundSchema, SearchKnowledgeAndKnowledgeNe$, SearchKnowledgeAndNe$inboundSchema, SearchKnowledgeAndNe$outboundSchema, SearchKnowledgeAndNe$, SearchKnowledgeAndKnowledgeEq$inboundSchema, SearchKnowledgeAndKnowledgeEq$outboundSchema, SearchKnowledgeAndKnowledgeEq$, SearchKnowledgeAndEq$inboundSchema, SearchKnowledgeAndEq$outboundSchema, SearchKnowledgeAndEq$, SearchKnowledgeFilterByAnd$inboundSchema, SearchKnowledgeFilterByAnd$outboundSchema, SearchKnowledgeFilterByAnd$, FilterByAnd$inboundSchema, FilterByAnd$outboundSchema, FilterByAnd$, SearchKnowledge1Exists$inboundSchema, SearchKnowledge1Exists$outboundSchema, SearchKnowledge1Exists$, SearchKnowledge1KnowledgeNin$inboundSchema, SearchKnowledge1KnowledgeNin$outboundSchema, SearchKnowledge1KnowledgeNin$, SearchKnowledge1Nin$inboundSchema, SearchKnowledge1Nin$outboundSchema, SearchKnowledge1Nin$, SearchKnowledge1KnowledgeIn$inboundSchema, SearchKnowledge1KnowledgeIn$outboundSchema, SearchKnowledge1KnowledgeIn$, SearchKnowledge1In$inboundSchema, SearchKnowledge1In$outboundSchema, SearchKnowledge1In$, SearchKnowledge1Lte$inboundSchema, SearchKnowledge1Lte$outboundSchema, SearchKnowledge1Lte$, SearchKnowledge1Lt$inboundSchema, SearchKnowledge1Lt$outboundSchema, SearchKnowledge1Lt$, SearchKnowledge1Gte$inboundSchema, SearchKnowledge1Gte$outboundSchema, SearchKnowledge1Gte$, SearchKnowledge13$inboundSchema, SearchKnowledge13$outboundSchema, SearchKnowledge13$, SearchKnowledge1KnowledgeNe$inboundSchema, SearchKnowledge1KnowledgeNe$outboundSchema, SearchKnowledge1KnowledgeNe$, SearchKnowledge1Ne$inboundSchema, SearchKnowledge1Ne$outboundSchema, SearchKnowledge1Ne$, SearchKnowledge1KnowledgeEq$inboundSchema, SearchKnowledge1KnowledgeEq$outboundSchema, SearchKnowledge1KnowledgeEq$, SearchKnowledge1Eq$inboundSchema, SearchKnowledge1Eq$outboundSchema, SearchKnowledge1Eq$, FilterBy1$inboundSchema, FilterBy1$outboundSchema, FilterBy1$, FilterBy$inboundSchema, FilterBy$outboundSchema, FilterBy$, SearchOptions$inboundSchema, SearchOptions$outboundSchema, SearchOptions$, SearchKnowledgeRerankConfig$inboundSchema, SearchKnowledgeRerankConfig$outboundSchema, SearchKnowledgeRerankConfig$, SearchKnowledgeAgenticRagConfig$inboundSchema, SearchKnowledgeAgenticRagConfig$outboundSchema, SearchKnowledgeAgenticRagConfig$, SearchKnowledgeRequestBody$inboundSchema, SearchKnowledgeRequestBody$outboundSchema, SearchKnowledgeRequestBody$, SearchKnowledgeRequest$inboundSchema, SearchKnowledgeRequest$outboundSchema, SearchKnowledgeRequest$, Scores$inboundSchema, Scores$outboundSchema, Scores$, Matches$inboundSchema, Matches$outboundSchema, Matches$, SearchKnowledgeResponseBody$inboundSchema, SearchKnowledgeResponseBody$outboundSchema, SearchKnowledgeResponseBody$;
|
|
58829
58887
|
var init_searchknowledge = __esm(() => {
|
|
58830
58888
|
init_esm();
|
|
58831
58889
|
init_primitives();
|
|
@@ -58834,57 +58892,6 @@ var init_searchknowledge = __esm(() => {
|
|
|
58834
58892
|
KeywordSearch: "keyword_search",
|
|
58835
58893
|
HybridSearch: "hybrid_search"
|
|
58836
58894
|
};
|
|
58837
|
-
SearchKnowledgeProvider = {
|
|
58838
|
-
Cohere: "cohere",
|
|
58839
|
-
Openai: "openai",
|
|
58840
|
-
Anthropic: "anthropic",
|
|
58841
|
-
Huggingface: "huggingface",
|
|
58842
|
-
Replicate: "replicate",
|
|
58843
|
-
Google: "google",
|
|
58844
|
-
GoogleAi: "google-ai",
|
|
58845
|
-
Azure: "azure",
|
|
58846
|
-
Aws: "aws",
|
|
58847
|
-
Anyscale: "anyscale",
|
|
58848
|
-
Perplexity: "perplexity",
|
|
58849
|
-
Groq: "groq",
|
|
58850
|
-
Fal: "fal",
|
|
58851
|
-
Leonardoai: "leonardoai",
|
|
58852
|
-
Nvidia: "nvidia",
|
|
58853
|
-
Jina: "jina",
|
|
58854
|
-
Togetherai: "togetherai",
|
|
58855
|
-
Elevenlabs: "elevenlabs",
|
|
58856
|
-
Litellm: "litellm",
|
|
58857
|
-
Openailike: "openailike",
|
|
58858
|
-
Cerebras: "cerebras",
|
|
58859
|
-
Bytedance: "bytedance"
|
|
58860
|
-
};
|
|
58861
|
-
SearchKnowledgeModelType = {
|
|
58862
|
-
Rerank: "rerank"
|
|
58863
|
-
};
|
|
58864
|
-
SearchKnowledgeKnowledgeProvider = {
|
|
58865
|
-
Cohere: "cohere",
|
|
58866
|
-
Openai: "openai",
|
|
58867
|
-
Anthropic: "anthropic",
|
|
58868
|
-
Huggingface: "huggingface",
|
|
58869
|
-
Replicate: "replicate",
|
|
58870
|
-
Google: "google",
|
|
58871
|
-
GoogleAi: "google-ai",
|
|
58872
|
-
Azure: "azure",
|
|
58873
|
-
Aws: "aws",
|
|
58874
|
-
Anyscale: "anyscale",
|
|
58875
|
-
Perplexity: "perplexity",
|
|
58876
|
-
Groq: "groq",
|
|
58877
|
-
Fal: "fal",
|
|
58878
|
-
Leonardoai: "leonardoai",
|
|
58879
|
-
Nvidia: "nvidia",
|
|
58880
|
-
Jina: "jina",
|
|
58881
|
-
Togetherai: "togetherai",
|
|
58882
|
-
Elevenlabs: "elevenlabs",
|
|
58883
|
-
Litellm: "litellm",
|
|
58884
|
-
Openailike: "openailike",
|
|
58885
|
-
Cerebras: "cerebras",
|
|
58886
|
-
Bytedance: "bytedance"
|
|
58887
|
-
};
|
|
58888
58895
|
SearchType$inboundSchema = nativeEnumType(SearchType);
|
|
58889
58896
|
SearchType$outboundSchema = SearchType$inboundSchema;
|
|
58890
58897
|
((SearchType$) => {
|
|
@@ -59431,89 +59438,33 @@ var init_searchknowledge = __esm(() => {
|
|
|
59431
59438
|
SearchOptions$.inboundSchema = SearchOptions$inboundSchema;
|
|
59432
59439
|
SearchOptions$.outboundSchema = SearchOptions$outboundSchema;
|
|
59433
59440
|
})(SearchOptions$ ||= {});
|
|
59434
|
-
SearchKnowledgeProvider$inboundSchema = nativeEnumType(SearchKnowledgeProvider);
|
|
59435
|
-
SearchKnowledgeProvider$outboundSchema = SearchKnowledgeProvider$inboundSchema;
|
|
59436
|
-
((SearchKnowledgeProvider$) => {
|
|
59437
|
-
SearchKnowledgeProvider$.inboundSchema = SearchKnowledgeProvider$inboundSchema;
|
|
59438
|
-
SearchKnowledgeProvider$.outboundSchema = SearchKnowledgeProvider$outboundSchema;
|
|
59439
|
-
})(SearchKnowledgeProvider$ ||= {});
|
|
59440
|
-
SearchKnowledgeModelType$inboundSchema = nativeEnumType(SearchKnowledgeModelType);
|
|
59441
|
-
SearchKnowledgeModelType$outboundSchema = SearchKnowledgeModelType$inboundSchema;
|
|
59442
|
-
((SearchKnowledgeModelType$) => {
|
|
59443
|
-
SearchKnowledgeModelType$.inboundSchema = SearchKnowledgeModelType$inboundSchema;
|
|
59444
|
-
SearchKnowledgeModelType$.outboundSchema = SearchKnowledgeModelType$outboundSchema;
|
|
59445
|
-
})(SearchKnowledgeModelType$ ||= {});
|
|
59446
|
-
SearchKnowledgeModelParameters$inboundSchema = objectType({
|
|
59447
|
-
threshold: numberType().optional()
|
|
59448
|
-
});
|
|
59449
|
-
SearchKnowledgeModelParameters$outboundSchema = objectType({
|
|
59450
|
-
threshold: numberType().optional()
|
|
59451
|
-
});
|
|
59452
|
-
((SearchKnowledgeModelParameters$) => {
|
|
59453
|
-
SearchKnowledgeModelParameters$.inboundSchema = SearchKnowledgeModelParameters$inboundSchema;
|
|
59454
|
-
SearchKnowledgeModelParameters$.outboundSchema = SearchKnowledgeModelParameters$outboundSchema;
|
|
59455
|
-
})(SearchKnowledgeModelParameters$ ||= {});
|
|
59456
59441
|
SearchKnowledgeRerankConfig$inboundSchema = objectType({
|
|
59457
|
-
|
|
59458
|
-
|
|
59459
|
-
top_k: numberType().int().
|
|
59460
|
-
model: stringType().optional(),
|
|
59461
|
-
model_db_id: stringType().optional(),
|
|
59462
|
-
model_type: SearchKnowledgeModelType$inboundSchema.optional(),
|
|
59463
|
-
model_parameters: lazyType(() => SearchKnowledgeModelParameters$inboundSchema).optional()
|
|
59442
|
+
model: stringType(),
|
|
59443
|
+
threshold: numberType().default(0),
|
|
59444
|
+
top_k: numberType().int().default(10)
|
|
59464
59445
|
}).transform((v2) => {
|
|
59465
59446
|
return remap(v2, {
|
|
59466
|
-
top_k: "topK"
|
|
59467
|
-
model_db_id: "modelDbId",
|
|
59468
|
-
model_type: "modelType",
|
|
59469
|
-
model_parameters: "modelParameters"
|
|
59447
|
+
top_k: "topK"
|
|
59470
59448
|
});
|
|
59471
59449
|
});
|
|
59472
59450
|
SearchKnowledgeRerankConfig$outboundSchema = objectType({
|
|
59473
|
-
|
|
59474
|
-
|
|
59475
|
-
topK: numberType().int().
|
|
59476
|
-
model: stringType().optional(),
|
|
59477
|
-
modelDbId: stringType().optional(),
|
|
59478
|
-
modelType: SearchKnowledgeModelType$outboundSchema.optional(),
|
|
59479
|
-
modelParameters: lazyType(() => SearchKnowledgeModelParameters$outboundSchema).optional()
|
|
59451
|
+
model: stringType(),
|
|
59452
|
+
threshold: numberType().default(0),
|
|
59453
|
+
topK: numberType().int().default(10)
|
|
59480
59454
|
}).transform((v2) => {
|
|
59481
59455
|
return remap(v2, {
|
|
59482
|
-
topK: "top_k"
|
|
59483
|
-
modelDbId: "model_db_id",
|
|
59484
|
-
modelType: "model_type",
|
|
59485
|
-
modelParameters: "model_parameters"
|
|
59456
|
+
topK: "top_k"
|
|
59486
59457
|
});
|
|
59487
59458
|
});
|
|
59488
59459
|
((SearchKnowledgeRerankConfig$) => {
|
|
59489
59460
|
SearchKnowledgeRerankConfig$.inboundSchema = SearchKnowledgeRerankConfig$inboundSchema;
|
|
59490
59461
|
SearchKnowledgeRerankConfig$.outboundSchema = SearchKnowledgeRerankConfig$outboundSchema;
|
|
59491
59462
|
})(SearchKnowledgeRerankConfig$ ||= {});
|
|
59492
|
-
SearchKnowledgeKnowledgeProvider$inboundSchema = nativeEnumType(SearchKnowledgeKnowledgeProvider);
|
|
59493
|
-
SearchKnowledgeKnowledgeProvider$outboundSchema = SearchKnowledgeKnowledgeProvider$inboundSchema;
|
|
59494
|
-
((SearchKnowledgeKnowledgeProvider$) => {
|
|
59495
|
-
SearchKnowledgeKnowledgeProvider$.inboundSchema = SearchKnowledgeKnowledgeProvider$inboundSchema;
|
|
59496
|
-
SearchKnowledgeKnowledgeProvider$.outboundSchema = SearchKnowledgeKnowledgeProvider$outboundSchema;
|
|
59497
|
-
})(SearchKnowledgeKnowledgeProvider$ ||= {});
|
|
59498
59463
|
SearchKnowledgeAgenticRagConfig$inboundSchema = objectType({
|
|
59499
|
-
|
|
59500
|
-
provider: SearchKnowledgeKnowledgeProvider$inboundSchema,
|
|
59501
|
-
integration_id: nullableType(stringType()).optional()
|
|
59502
|
-
}).transform((v2) => {
|
|
59503
|
-
return remap(v2, {
|
|
59504
|
-
model_db_id: "modelDbId",
|
|
59505
|
-
integration_id: "integrationId"
|
|
59506
|
-
});
|
|
59464
|
+
model: stringType()
|
|
59507
59465
|
});
|
|
59508
59466
|
SearchKnowledgeAgenticRagConfig$outboundSchema = objectType({
|
|
59509
|
-
|
|
59510
|
-
provider: SearchKnowledgeKnowledgeProvider$outboundSchema,
|
|
59511
|
-
integrationId: nullableType(stringType()).optional()
|
|
59512
|
-
}).transform((v2) => {
|
|
59513
|
-
return remap(v2, {
|
|
59514
|
-
modelDbId: "model_db_id",
|
|
59515
|
-
integrationId: "integration_id"
|
|
59516
|
-
});
|
|
59467
|
+
model: stringType()
|
|
59517
59468
|
});
|
|
59518
59469
|
((SearchKnowledgeAgenticRagConfig$) => {
|
|
59519
59470
|
SearchKnowledgeAgenticRagConfig$.inboundSchema = SearchKnowledgeAgenticRagConfig$inboundSchema;
|
|
@@ -59540,7 +59491,7 @@ var init_searchknowledge = __esm(() => {
|
|
|
59540
59491
|
]))
|
|
59541
59492
|
]).optional(),
|
|
59542
59493
|
search_options: lazyType(() => SearchOptions$inboundSchema).optional(),
|
|
59543
|
-
rerank_config:
|
|
59494
|
+
rerank_config: lazyType(() => SearchKnowledgeRerankConfig$inboundSchema).optional(),
|
|
59544
59495
|
agentic_rag_config: lazyType(() => SearchKnowledgeAgenticRagConfig$inboundSchema).optional()
|
|
59545
59496
|
}).transform((v2) => {
|
|
59546
59497
|
return remap(v2, {
|
|
@@ -59573,7 +59524,7 @@ var init_searchknowledge = __esm(() => {
|
|
|
59573
59524
|
]))
|
|
59574
59525
|
]).optional(),
|
|
59575
59526
|
searchOptions: lazyType(() => SearchOptions$outboundSchema).optional(),
|
|
59576
|
-
rerankConfig:
|
|
59527
|
+
rerankConfig: lazyType(() => SearchKnowledgeRerankConfig$outboundSchema).optional(),
|
|
59577
59528
|
agenticRagConfig: lazyType(() => SearchKnowledgeAgenticRagConfig$outboundSchema).optional()
|
|
59578
59529
|
}).transform((v2) => {
|
|
59579
59530
|
return remap(v2, {
|
|
@@ -59806,7 +59757,7 @@ var init_updatebudget = __esm(() => {
|
|
|
59806
59757
|
is_active: booleanType(),
|
|
59807
59758
|
consumption: lazyType(() => UpdateBudgetConsumption$inboundSchema).optional(),
|
|
59808
59759
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
59809
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
59760
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
59810
59761
|
}).transform((v2) => {
|
|
59811
59762
|
return remap(v2, {
|
|
59812
59763
|
_id: "id",
|
|
@@ -59824,7 +59775,7 @@ var init_updatebudget = __esm(() => {
|
|
|
59824
59775
|
isActive: booleanType(),
|
|
59825
59776
|
consumption: lazyType(() => UpdateBudgetConsumption$outboundSchema).optional(),
|
|
59826
59777
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
59827
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
59778
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
59828
59779
|
}).transform((v2) => {
|
|
59829
59780
|
return remap(v2, {
|
|
59830
59781
|
id: "_id",
|
|
@@ -60015,7 +59966,7 @@ var init_updatecontact = __esm(() => {
|
|
|
60015
59966
|
tags: arrayType(stringType()).optional(),
|
|
60016
59967
|
metadata: recordType(anyType()).optional(),
|
|
60017
59968
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
60018
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
59969
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
60019
59970
|
}).transform((v2) => {
|
|
60020
59971
|
return remap(v2, {
|
|
60021
59972
|
_id: "id",
|
|
@@ -60033,7 +59984,7 @@ var init_updatecontact = __esm(() => {
|
|
|
60033
59984
|
tags: arrayType(stringType()).optional(),
|
|
60034
59985
|
metadata: recordType(anyType()).optional(),
|
|
60035
59986
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
60036
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
59987
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
60037
59988
|
}).transform((v2) => {
|
|
60038
59989
|
return remap(v2, {
|
|
60039
59990
|
id: "_id",
|
|
@@ -61439,7 +61390,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
61439
61390
|
created_by_id: stringType().optional(),
|
|
61440
61391
|
updated_by_id: stringType().optional(),
|
|
61441
61392
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61442
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
61393
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
61443
61394
|
}).transform((v2) => {
|
|
61444
61395
|
return remap(v2, {
|
|
61445
61396
|
_id: "id",
|
|
@@ -61466,7 +61417,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
61466
61417
|
createdById: stringType().optional(),
|
|
61467
61418
|
updatedById: stringType().optional(),
|
|
61468
61419
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61469
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
61420
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
61470
61421
|
}).transform((v2) => {
|
|
61471
61422
|
return remap(v2, {
|
|
61472
61423
|
id: "_id",
|
|
@@ -61567,7 +61518,7 @@ var init_updatedataset = __esm(() => {
|
|
|
61567
61518
|
parent_id: stringType().optional(),
|
|
61568
61519
|
version: stringType().optional(),
|
|
61569
61520
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
61570
|
-
updated: stringType().datetime({ offset: true }).default("2025-09-
|
|
61521
|
+
updated: stringType().datetime({ offset: true }).default("2025-09-18T21:41:48.234Z").transform((v2) => new Date(v2))
|
|
61571
61522
|
}).transform((v2) => {
|
|
61572
61523
|
return remap(v2, {
|
|
61573
61524
|
_id: "id",
|
|
@@ -61590,7 +61541,7 @@ var init_updatedataset = __esm(() => {
|
|
|
61590
61541
|
parentId: stringType().optional(),
|
|
61591
61542
|
version: stringType().optional(),
|
|
61592
61543
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
61593
|
-
updated: dateType().default(() => new Date("2025-09-
|
|
61544
|
+
updated: dateType().default(() => new Date("2025-09-18T21:41:48.234Z")).transform((v2) => v2.toISOString())
|
|
61594
61545
|
}).transform((v2) => {
|
|
61595
61546
|
return remap(v2, {
|
|
61596
61547
|
id: "_id",
|
|
@@ -61671,7 +61622,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
61671
61622
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
61672
61623
|
})(UpdateDatasourceStatus$ ||= {});
|
|
61673
61624
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
61674
|
-
_id: stringType().default("
|
|
61625
|
+
_id: stringType().default("01K5FCDSVP2CF06H2VN0TAN8F7"),
|
|
61675
61626
|
display_name: stringType(),
|
|
61676
61627
|
description: stringType().optional(),
|
|
61677
61628
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -61694,7 +61645,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
61694
61645
|
});
|
|
61695
61646
|
});
|
|
61696
61647
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
61697
|
-
id: stringType().default("
|
|
61648
|
+
id: stringType().default("01K5FCDSVP2CF06H2VN0TAN8F7"),
|
|
61698
61649
|
displayName: stringType(),
|
|
61699
61650
|
description: stringType().optional(),
|
|
61700
61651
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -61723,7 +61674,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
61723
61674
|
});
|
|
61724
61675
|
|
|
61725
61676
|
// src/models/operations/updateeval.ts
|
|
61726
|
-
var UpdateEvalGuardrailConfigEvalsRequestRequestBody42Type, UpdateEvalGuardrailConfigEvalsRequestRequestBodyOperator, UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type, UpdateEvalRequestBodyEvalsRequest4Type, UpdateEvalGuardrailConfigEvalsRequestRequestBody32Type, UpdateEvalGuardrailConfigEvalsRequestOperator, UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type, UpdateEvalRequestBodyEvalsRequestType, RequestBodyMethod, UpdateEvalGuardrailConfigEvalsRequestRequestBodyType, UpdateEvalGuardrailConfigEvalsOperator, UpdateEvalGuardrailConfigEvalsRequestType, UpdateEvalRequestBodyEvalsType, UpdateEvalGuardrailConfigEvalsType, UpdateEvalGuardrailConfigOperator, UpdateEvalGuardrailConfigType, UpdateEvalRequestBodyType, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type, UpdateEvalResponseBodyEvalsResponse200Type, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type, UpdateEvalResponseBodyEvalsResponseType, UpdateEvalResponseBodyMethod, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType, UpdateEvalGuardrailConfigEvalsResponse200Operator, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONType, UpdateEvalResponseBodyEvalsType, UpdateEvalGuardrailConfigEvalsResponse200Type, UpdateEvalGuardrailConfigEvalsResponseOperator, UpdateEvalGuardrailConfigEvalsResponseType, UpdateEvalResponseBodyType, UpdateEvalGuardrailConfigEvalsRequestRequestBody42Type$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody42Type$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody42Type$, UpdateEvalGuardrailConfigEvalsRequestRequestBodyOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyOperator$, UpdateEvalGuardrailConfigEvalsRequestRequestBodyNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyNumber$, UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type$, UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean$, UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$inboundSchema, UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$outboundSchema, UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$, UpdateEvalRequestBodyEvalsRequest4Type$inboundSchema, UpdateEvalRequestBodyEvalsRequest4Type$outboundSchema, UpdateEvalRequestBodyEvalsRequest4Type$, RequestBodyPython$inboundSchema, RequestBodyPython$outboundSchema, RequestBodyPython$, UpdateEvalGuardrailConfigEvalsRequestRequestBody32Type$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody32Type$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody32Type$, UpdateEvalGuardrailConfigEvalsRequestOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestOperator$, UpdateEvalGuardrailConfigEvalsRequestNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestNumber$, UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type$, UpdateEvalGuardrailConfigEvalsRequestBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestBoolean$, UpdateEvalRequestBodyEvalsRequestGuardrailConfig$inboundSchema, UpdateEvalRequestBodyEvalsRequestGuardrailConfig$outboundSchema, UpdateEvalRequestBodyEvalsRequestGuardrailConfig$, UpdateEvalRequestBodyEvalsRequestType$inboundSchema, UpdateEvalRequestBodyEvalsRequestType$outboundSchema, UpdateEvalRequestBodyEvalsRequestType$, RequestBodyMethod$inboundSchema, RequestBodyMethod$outboundSchema, RequestBodyMethod$, RequestBodyHTTP$inboundSchema, RequestBodyHTTP$outboundSchema, RequestBodyHTTP$, UpdateEvalGuardrailConfigEvalsRequestRequestBodyType$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyType$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyType$, UpdateEvalGuardrailConfigEvalsOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsOperator$, UpdateEvalGuardrailConfigEvalsNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsNumber$, UpdateEvalGuardrailConfigEvalsRequestType$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestType$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestType$, UpdateEvalGuardrailConfigEvalsBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsBoolean$, UpdateEvalRequestBodyEvalsGuardrailConfig$inboundSchema, UpdateEvalRequestBodyEvalsGuardrailConfig$outboundSchema, UpdateEvalRequestBodyEvalsGuardrailConfig$, UpdateEvalRequestBodyEvalsType$inboundSchema, UpdateEvalRequestBodyEvalsType$outboundSchema, UpdateEvalRequestBodyEvalsType$, RequestBodyJSON$inboundSchema, RequestBodyJSON$outboundSchema, RequestBodyJSON$, UpdateEvalGuardrailConfigEvalsType$inboundSchema, UpdateEvalGuardrailConfigEvalsType$outboundSchema, UpdateEvalGuardrailConfigEvalsType$, UpdateEvalGuardrailConfigOperator$inboundSchema, UpdateEvalGuardrailConfigOperator$outboundSchema, UpdateEvalGuardrailConfigOperator$, UpdateEvalGuardrailConfigNumber$inboundSchema, UpdateEvalGuardrailConfigNumber$outboundSchema, UpdateEvalGuardrailConfigNumber$, UpdateEvalGuardrailConfigType$inboundSchema, UpdateEvalGuardrailConfigType$outboundSchema, UpdateEvalGuardrailConfigType$, UpdateEvalGuardrailConfigBoolean$inboundSchema, UpdateEvalGuardrailConfigBoolean$outboundSchema, UpdateEvalGuardrailConfigBoolean$, UpdateEvalRequestBodyGuardrailConfig$inboundSchema, UpdateEvalRequestBodyGuardrailConfig$outboundSchema, UpdateEvalRequestBodyGuardrailConfig$, UpdateEvalRequestBodyType$inboundSchema, UpdateEvalRequestBodyType$outboundSchema, UpdateEvalRequestBodyType$, RequestBodyLLM$inboundSchema, RequestBodyLLM$outboundSchema, RequestBodyLLM$, UpdateEvalRequestBody$inboundSchema, UpdateEvalRequestBody$outboundSchema, UpdateEvalRequestBody$, UpdateEvalRequest$inboundSchema, UpdateEvalRequest$outboundSchema, UpdateEvalRequest$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$, UpdateEvalResponseBodyEvalsResponse200GuardrailConfig$inboundSchema, UpdateEvalResponseBodyEvalsResponse200GuardrailConfig$outboundSchema, UpdateEvalResponseBodyEvalsResponse200GuardrailConfig$, UpdateEvalResponseBodyEvalsResponse200Type$inboundSchema, UpdateEvalResponseBodyEvalsResponse200Type$outboundSchema, UpdateEvalResponseBodyEvalsResponse200Type$, UpdateEvalResponseBodyPython$inboundSchema, UpdateEvalResponseBodyPython$outboundSchema, UpdateEvalResponseBodyPython$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$, UpdateEvalResponseBodyEvalsResponseGuardrailConfig$inboundSchema, UpdateEvalResponseBodyEvalsResponseGuardrailConfig$outboundSchema, UpdateEvalResponseBodyEvalsResponseGuardrailConfig$, UpdateEvalResponseBodyEvalsResponseType$inboundSchema, UpdateEvalResponseBodyEvalsResponseType$outboundSchema, UpdateEvalResponseBodyEvalsResponseType$, UpdateEvalResponseBodyMethod$inboundSchema, UpdateEvalResponseBodyMethod$outboundSchema, UpdateEvalResponseBodyMethod$, UpdateEvalResponseBodyHTTP$inboundSchema, UpdateEvalResponseBodyHTTP$outboundSchema, UpdateEvalResponseBodyHTTP$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$, UpdateEvalGuardrailConfigEvalsResponse200Operator$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Operator$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Operator$, UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Number$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$, UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Boolean$, UpdateEvalResponseBodyEvalsGuardrailConfig$inboundSchema, UpdateEvalResponseBodyEvalsGuardrailConfig$outboundSchema, UpdateEvalResponseBodyEvalsGuardrailConfig$, UpdateEvalResponseBodyEvalsType$inboundSchema, UpdateEvalResponseBodyEvalsType$outboundSchema, UpdateEvalResponseBodyEvalsType$, UpdateEvalResponseBodyJSON$inboundSchema, UpdateEvalResponseBodyJSON$outboundSchema, UpdateEvalResponseBodyJSON$, UpdateEvalGuardrailConfigEvalsResponse200Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Type$, UpdateEvalGuardrailConfigEvalsResponseOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsResponseOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsResponseOperator$, UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsResponseNumber$, UpdateEvalGuardrailConfigEvalsResponseType$inboundSchema, UpdateEvalGuardrailConfigEvalsResponseType$outboundSchema, UpdateEvalGuardrailConfigEvalsResponseType$, UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsResponseBoolean$, UpdateEvalResponseBodyGuardrailConfig$inboundSchema, UpdateEvalResponseBodyGuardrailConfig$outboundSchema, UpdateEvalResponseBodyGuardrailConfig$, UpdateEvalResponseBodyType$inboundSchema, UpdateEvalResponseBodyType$outboundSchema, UpdateEvalResponseBodyType$, UpdateEvalResponseBodyLLM$inboundSchema, UpdateEvalResponseBodyLLM$outboundSchema, UpdateEvalResponseBodyLLM$, UpdateEvalResponseBody$inboundSchema, UpdateEvalResponseBody$outboundSchema, UpdateEvalResponseBody$;
|
|
61677
|
+
var UpdateEvalGuardrailConfigEvalsRequestRequestBody42Type, UpdateEvalGuardrailConfigEvalsRequestRequestBodyOperator, UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type, UpdateEvalRequestBodyEvalsRequest4OutputType, UpdateEvalRequestBodyEvalsRequest4Type, UpdateEvalGuardrailConfigEvalsRequestRequestBody32Type, UpdateEvalGuardrailConfigEvalsRequestOperator, UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type, UpdateEvalRequestBodyEvalsRequestOutputType, UpdateEvalRequestBodyEvalsRequestType, RequestBodyMethod, UpdateEvalGuardrailConfigEvalsRequestRequestBodyType, UpdateEvalGuardrailConfigEvalsOperator, UpdateEvalGuardrailConfigEvalsRequestType, UpdateEvalRequestBodyEvalsOutputType, UpdateEvalRequestBodyEvalsType, UpdateEvalGuardrailConfigEvalsType, UpdateEvalGuardrailConfigOperator, UpdateEvalGuardrailConfigType, UpdateEvalRequestBodyOutputType, UpdateEvalRequestBodyType, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type, UpdateEvalResponseBodyEvalsResponse200Type, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type, UpdateEvalResponseBodyEvalsResponseType, UpdateEvalResponseBodyMethod, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType, UpdateEvalGuardrailConfigEvalsResponse200Operator, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONType, UpdateEvalResponseBodyEvalsType, UpdateEvalGuardrailConfigEvalsResponse200Type, UpdateEvalGuardrailConfigEvalsResponseOperator, UpdateEvalGuardrailConfigEvalsResponseType, UpdateEvalResponseBodyType, UpdateEvalGuardrailConfigEvalsRequestRequestBody42Type$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody42Type$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody42Type$, UpdateEvalGuardrailConfigEvalsRequestRequestBodyOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyOperator$, UpdateEvalGuardrailConfigEvalsRequestRequestBodyNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyNumber$, UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type$, UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean$, UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$inboundSchema, UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$outboundSchema, UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$, UpdateEvalRequestBodyEvalsRequest4OutputType$inboundSchema, UpdateEvalRequestBodyEvalsRequest4OutputType$outboundSchema, UpdateEvalRequestBodyEvalsRequest4OutputType$, UpdateEvalRequestBodyEvalsRequest4Type$inboundSchema, UpdateEvalRequestBodyEvalsRequest4Type$outboundSchema, UpdateEvalRequestBodyEvalsRequest4Type$, RequestBodyPython$inboundSchema, RequestBodyPython$outboundSchema, RequestBodyPython$, UpdateEvalGuardrailConfigEvalsRequestRequestBody32Type$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody32Type$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody32Type$, UpdateEvalGuardrailConfigEvalsRequestOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestOperator$, UpdateEvalGuardrailConfigEvalsRequestNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestNumber$, UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type$, UpdateEvalGuardrailConfigEvalsRequestBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestBoolean$, UpdateEvalRequestBodyEvalsRequestGuardrailConfig$inboundSchema, UpdateEvalRequestBodyEvalsRequestGuardrailConfig$outboundSchema, UpdateEvalRequestBodyEvalsRequestGuardrailConfig$, UpdateEvalRequestBodyEvalsRequestOutputType$inboundSchema, UpdateEvalRequestBodyEvalsRequestOutputType$outboundSchema, UpdateEvalRequestBodyEvalsRequestOutputType$, UpdateEvalRequestBodyEvalsRequestType$inboundSchema, UpdateEvalRequestBodyEvalsRequestType$outboundSchema, UpdateEvalRequestBodyEvalsRequestType$, RequestBodyMethod$inboundSchema, RequestBodyMethod$outboundSchema, RequestBodyMethod$, RequestBodyHTTP$inboundSchema, RequestBodyHTTP$outboundSchema, RequestBodyHTTP$, UpdateEvalGuardrailConfigEvalsRequestRequestBodyType$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyType$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestRequestBodyType$, UpdateEvalGuardrailConfigEvalsOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsOperator$, UpdateEvalGuardrailConfigEvalsNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsNumber$, UpdateEvalGuardrailConfigEvalsRequestType$inboundSchema, UpdateEvalGuardrailConfigEvalsRequestType$outboundSchema, UpdateEvalGuardrailConfigEvalsRequestType$, UpdateEvalGuardrailConfigEvalsBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsBoolean$, UpdateEvalRequestBodyEvalsGuardrailConfig$inboundSchema, UpdateEvalRequestBodyEvalsGuardrailConfig$outboundSchema, UpdateEvalRequestBodyEvalsGuardrailConfig$, UpdateEvalRequestBodyEvalsOutputType$inboundSchema, UpdateEvalRequestBodyEvalsOutputType$outboundSchema, UpdateEvalRequestBodyEvalsOutputType$, UpdateEvalRequestBodyEvalsType$inboundSchema, UpdateEvalRequestBodyEvalsType$outboundSchema, UpdateEvalRequestBodyEvalsType$, RequestBodyJSON$inboundSchema, RequestBodyJSON$outboundSchema, RequestBodyJSON$, UpdateEvalGuardrailConfigEvalsType$inboundSchema, UpdateEvalGuardrailConfigEvalsType$outboundSchema, UpdateEvalGuardrailConfigEvalsType$, UpdateEvalGuardrailConfigOperator$inboundSchema, UpdateEvalGuardrailConfigOperator$outboundSchema, UpdateEvalGuardrailConfigOperator$, UpdateEvalGuardrailConfigNumber$inboundSchema, UpdateEvalGuardrailConfigNumber$outboundSchema, UpdateEvalGuardrailConfigNumber$, UpdateEvalGuardrailConfigType$inboundSchema, UpdateEvalGuardrailConfigType$outboundSchema, UpdateEvalGuardrailConfigType$, UpdateEvalGuardrailConfigBoolean$inboundSchema, UpdateEvalGuardrailConfigBoolean$outboundSchema, UpdateEvalGuardrailConfigBoolean$, UpdateEvalRequestBodyGuardrailConfig$inboundSchema, UpdateEvalRequestBodyGuardrailConfig$outboundSchema, UpdateEvalRequestBodyGuardrailConfig$, UpdateEvalRequestBodyOutputType$inboundSchema, UpdateEvalRequestBodyOutputType$outboundSchema, UpdateEvalRequestBodyOutputType$, UpdateEvalRequestBodyType$inboundSchema, UpdateEvalRequestBodyType$outboundSchema, UpdateEvalRequestBodyType$, RequestBodyLLM$inboundSchema, RequestBodyLLM$outboundSchema, RequestBodyLLM$, UpdateEvalRequestBody$inboundSchema, UpdateEvalRequestBody$outboundSchema, UpdateEvalRequestBody$, UpdateEvalRequest$inboundSchema, UpdateEvalRequest$outboundSchema, UpdateEvalRequest$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody42Type$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyOperator$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody4Type$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$, UpdateEvalResponseBodyEvalsResponse200GuardrailConfig$inboundSchema, UpdateEvalResponseBodyEvalsResponse200GuardrailConfig$outboundSchema, UpdateEvalResponseBodyEvalsResponse200GuardrailConfig$, UpdateEvalResponseBodyEvalsResponse200Type$inboundSchema, UpdateEvalResponseBodyEvalsResponse200Type$outboundSchema, UpdateEvalResponseBodyEvalsResponse200Type$, UpdateEvalResponseBodyPython$inboundSchema, UpdateEvalResponseBodyPython$outboundSchema, UpdateEvalResponseBodyPython$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody32Type$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONOperator$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody3Type$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$, UpdateEvalResponseBodyEvalsResponseGuardrailConfig$inboundSchema, UpdateEvalResponseBodyEvalsResponseGuardrailConfig$outboundSchema, UpdateEvalResponseBodyEvalsResponseGuardrailConfig$, UpdateEvalResponseBodyEvalsResponseType$inboundSchema, UpdateEvalResponseBodyEvalsResponseType$outboundSchema, UpdateEvalResponseBodyEvalsResponseType$, UpdateEvalResponseBodyMethod$inboundSchema, UpdateEvalResponseBodyMethod$outboundSchema, UpdateEvalResponseBodyMethod$, UpdateEvalResponseBodyHTTP$inboundSchema, UpdateEvalResponseBodyHTTP$outboundSchema, UpdateEvalResponseBodyHTTP$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyType$, UpdateEvalGuardrailConfigEvalsResponse200Operator$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Operator$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Operator$, UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Number$, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONType$, UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Boolean$, UpdateEvalResponseBodyEvalsGuardrailConfig$inboundSchema, UpdateEvalResponseBodyEvalsGuardrailConfig$outboundSchema, UpdateEvalResponseBodyEvalsGuardrailConfig$, UpdateEvalResponseBodyEvalsType$inboundSchema, UpdateEvalResponseBodyEvalsType$outboundSchema, UpdateEvalResponseBodyEvalsType$, UpdateEvalResponseBodyJSON$inboundSchema, UpdateEvalResponseBodyJSON$outboundSchema, UpdateEvalResponseBodyJSON$, UpdateEvalGuardrailConfigEvalsResponse200Type$inboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Type$outboundSchema, UpdateEvalGuardrailConfigEvalsResponse200Type$, UpdateEvalGuardrailConfigEvalsResponseOperator$inboundSchema, UpdateEvalGuardrailConfigEvalsResponseOperator$outboundSchema, UpdateEvalGuardrailConfigEvalsResponseOperator$, UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema, UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema, UpdateEvalGuardrailConfigEvalsResponseNumber$, UpdateEvalGuardrailConfigEvalsResponseType$inboundSchema, UpdateEvalGuardrailConfigEvalsResponseType$outboundSchema, UpdateEvalGuardrailConfigEvalsResponseType$, UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema, UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema, UpdateEvalGuardrailConfigEvalsResponseBoolean$, UpdateEvalResponseBodyGuardrailConfig$inboundSchema, UpdateEvalResponseBodyGuardrailConfig$outboundSchema, UpdateEvalResponseBodyGuardrailConfig$, UpdateEvalResponseBodyType$inboundSchema, UpdateEvalResponseBodyType$outboundSchema, UpdateEvalResponseBodyType$, UpdateEvalResponseBodyLLM$inboundSchema, UpdateEvalResponseBodyLLM$outboundSchema, UpdateEvalResponseBodyLLM$, UpdateEvalResponseBody$inboundSchema, UpdateEvalResponseBody$outboundSchema, UpdateEvalResponseBody$;
|
|
61727
61678
|
var init_updateeval = __esm(() => {
|
|
61728
61679
|
init_esm();
|
|
61729
61680
|
init_primitives();
|
|
@@ -61741,6 +61692,11 @@ var init_updateeval = __esm(() => {
|
|
|
61741
61692
|
UpdateEvalGuardrailConfigEvalsRequestRequestBody4Type = {
|
|
61742
61693
|
Boolean: "boolean"
|
|
61743
61694
|
};
|
|
61695
|
+
UpdateEvalRequestBodyEvalsRequest4OutputType = {
|
|
61696
|
+
Boolean: "boolean",
|
|
61697
|
+
Number: "number",
|
|
61698
|
+
String: "string"
|
|
61699
|
+
};
|
|
61744
61700
|
UpdateEvalRequestBodyEvalsRequest4Type = {
|
|
61745
61701
|
PythonEval: "python_eval"
|
|
61746
61702
|
};
|
|
@@ -61758,6 +61714,11 @@ var init_updateeval = __esm(() => {
|
|
|
61758
61714
|
UpdateEvalGuardrailConfigEvalsRequestRequestBody3Type = {
|
|
61759
61715
|
Boolean: "boolean"
|
|
61760
61716
|
};
|
|
61717
|
+
UpdateEvalRequestBodyEvalsRequestOutputType = {
|
|
61718
|
+
Boolean: "boolean",
|
|
61719
|
+
Number: "number",
|
|
61720
|
+
String: "string"
|
|
61721
|
+
};
|
|
61761
61722
|
UpdateEvalRequestBodyEvalsRequestType = {
|
|
61762
61723
|
HttpEval: "http_eval"
|
|
61763
61724
|
};
|
|
@@ -61779,6 +61740,9 @@ var init_updateeval = __esm(() => {
|
|
|
61779
61740
|
UpdateEvalGuardrailConfigEvalsRequestType = {
|
|
61780
61741
|
Boolean: "boolean"
|
|
61781
61742
|
};
|
|
61743
|
+
UpdateEvalRequestBodyEvalsOutputType = {
|
|
61744
|
+
Boolean: "boolean"
|
|
61745
|
+
};
|
|
61782
61746
|
UpdateEvalRequestBodyEvalsType = {
|
|
61783
61747
|
JsonSchema: "json_schema"
|
|
61784
61748
|
};
|
|
@@ -61796,6 +61760,11 @@ var init_updateeval = __esm(() => {
|
|
|
61796
61760
|
UpdateEvalGuardrailConfigType = {
|
|
61797
61761
|
Boolean: "boolean"
|
|
61798
61762
|
};
|
|
61763
|
+
UpdateEvalRequestBodyOutputType = {
|
|
61764
|
+
Boolean: "boolean",
|
|
61765
|
+
Number: "number",
|
|
61766
|
+
String: "string"
|
|
61767
|
+
};
|
|
61799
61768
|
UpdateEvalRequestBodyType = {
|
|
61800
61769
|
LlmEval: "llm_eval"
|
|
61801
61770
|
};
|
|
@@ -61931,6 +61900,12 @@ var init_updateeval = __esm(() => {
|
|
|
61931
61900
|
UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$.inboundSchema = UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$inboundSchema;
|
|
61932
61901
|
UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$.outboundSchema = UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$outboundSchema;
|
|
61933
61902
|
})(UpdateEvalRequestBodyEvalsRequest4GuardrailConfig$ ||= {});
|
|
61903
|
+
UpdateEvalRequestBodyEvalsRequest4OutputType$inboundSchema = nativeEnumType(UpdateEvalRequestBodyEvalsRequest4OutputType);
|
|
61904
|
+
UpdateEvalRequestBodyEvalsRequest4OutputType$outboundSchema = UpdateEvalRequestBodyEvalsRequest4OutputType$inboundSchema;
|
|
61905
|
+
((UpdateEvalRequestBodyEvalsRequest4OutputType$) => {
|
|
61906
|
+
UpdateEvalRequestBodyEvalsRequest4OutputType$.inboundSchema = UpdateEvalRequestBodyEvalsRequest4OutputType$inboundSchema;
|
|
61907
|
+
UpdateEvalRequestBodyEvalsRequest4OutputType$.outboundSchema = UpdateEvalRequestBodyEvalsRequest4OutputType$outboundSchema;
|
|
61908
|
+
})(UpdateEvalRequestBodyEvalsRequest4OutputType$ ||= {});
|
|
61934
61909
|
UpdateEvalRequestBodyEvalsRequest4Type$inboundSchema = nativeEnumType(UpdateEvalRequestBodyEvalsRequest4Type);
|
|
61935
61910
|
UpdateEvalRequestBodyEvalsRequest4Type$outboundSchema = UpdateEvalRequestBodyEvalsRequest4Type$inboundSchema;
|
|
61936
61911
|
((UpdateEvalRequestBodyEvalsRequest4Type$) => {
|
|
@@ -61942,6 +61917,7 @@ var init_updateeval = __esm(() => {
|
|
|
61942
61917
|
lazyType(() => UpdateEvalGuardrailConfigEvalsRequestRequestBodyNumber$inboundSchema),
|
|
61943
61918
|
lazyType(() => UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean$inboundSchema)
|
|
61944
61919
|
]).optional(),
|
|
61920
|
+
output_type: UpdateEvalRequestBodyEvalsRequest4OutputType$inboundSchema.optional(),
|
|
61945
61921
|
code: stringType().optional(),
|
|
61946
61922
|
type: UpdateEvalRequestBodyEvalsRequest4Type$inboundSchema,
|
|
61947
61923
|
path: stringType(),
|
|
@@ -61949,7 +61925,8 @@ var init_updateeval = __esm(() => {
|
|
|
61949
61925
|
key: stringType().optional()
|
|
61950
61926
|
}).transform((v2) => {
|
|
61951
61927
|
return remap(v2, {
|
|
61952
|
-
guardrail_config: "guardrailConfig"
|
|
61928
|
+
guardrail_config: "guardrailConfig",
|
|
61929
|
+
output_type: "outputType"
|
|
61953
61930
|
});
|
|
61954
61931
|
});
|
|
61955
61932
|
RequestBodyPython$outboundSchema = objectType({
|
|
@@ -61957,6 +61934,7 @@ var init_updateeval = __esm(() => {
|
|
|
61957
61934
|
lazyType(() => UpdateEvalGuardrailConfigEvalsRequestRequestBodyNumber$outboundSchema),
|
|
61958
61935
|
lazyType(() => UpdateEvalGuardrailConfigEvalsRequestRequestBodyBoolean$outboundSchema)
|
|
61959
61936
|
]).optional(),
|
|
61937
|
+
outputType: UpdateEvalRequestBodyEvalsRequest4OutputType$outboundSchema.optional(),
|
|
61960
61938
|
code: stringType().optional(),
|
|
61961
61939
|
type: UpdateEvalRequestBodyEvalsRequest4Type$outboundSchema,
|
|
61962
61940
|
path: stringType(),
|
|
@@ -61964,7 +61942,8 @@ var init_updateeval = __esm(() => {
|
|
|
61964
61942
|
key: stringType().optional()
|
|
61965
61943
|
}).transform((v2) => {
|
|
61966
61944
|
return remap(v2, {
|
|
61967
|
-
guardrailConfig: "guardrail_config"
|
|
61945
|
+
guardrailConfig: "guardrail_config",
|
|
61946
|
+
outputType: "output_type"
|
|
61968
61947
|
});
|
|
61969
61948
|
});
|
|
61970
61949
|
((RequestBodyPython$) => {
|
|
@@ -62031,6 +62010,12 @@ var init_updateeval = __esm(() => {
|
|
|
62031
62010
|
UpdateEvalRequestBodyEvalsRequestGuardrailConfig$.inboundSchema = UpdateEvalRequestBodyEvalsRequestGuardrailConfig$inboundSchema;
|
|
62032
62011
|
UpdateEvalRequestBodyEvalsRequestGuardrailConfig$.outboundSchema = UpdateEvalRequestBodyEvalsRequestGuardrailConfig$outboundSchema;
|
|
62033
62012
|
})(UpdateEvalRequestBodyEvalsRequestGuardrailConfig$ ||= {});
|
|
62013
|
+
UpdateEvalRequestBodyEvalsRequestOutputType$inboundSchema = nativeEnumType(UpdateEvalRequestBodyEvalsRequestOutputType);
|
|
62014
|
+
UpdateEvalRequestBodyEvalsRequestOutputType$outboundSchema = UpdateEvalRequestBodyEvalsRequestOutputType$inboundSchema;
|
|
62015
|
+
((UpdateEvalRequestBodyEvalsRequestOutputType$) => {
|
|
62016
|
+
UpdateEvalRequestBodyEvalsRequestOutputType$.inboundSchema = UpdateEvalRequestBodyEvalsRequestOutputType$inboundSchema;
|
|
62017
|
+
UpdateEvalRequestBodyEvalsRequestOutputType$.outboundSchema = UpdateEvalRequestBodyEvalsRequestOutputType$outboundSchema;
|
|
62018
|
+
})(UpdateEvalRequestBodyEvalsRequestOutputType$ ||= {});
|
|
62034
62019
|
UpdateEvalRequestBodyEvalsRequestType$inboundSchema = nativeEnumType(UpdateEvalRequestBodyEvalsRequestType);
|
|
62035
62020
|
UpdateEvalRequestBodyEvalsRequestType$outboundSchema = UpdateEvalRequestBodyEvalsRequestType$inboundSchema;
|
|
62036
62021
|
((UpdateEvalRequestBodyEvalsRequestType$) => {
|
|
@@ -62048,6 +62033,7 @@ var init_updateeval = __esm(() => {
|
|
|
62048
62033
|
lazyType(() => UpdateEvalGuardrailConfigEvalsRequestNumber$inboundSchema),
|
|
62049
62034
|
lazyType(() => UpdateEvalGuardrailConfigEvalsRequestBoolean$inboundSchema)
|
|
62050
62035
|
]).optional(),
|
|
62036
|
+
output_type: UpdateEvalRequestBodyEvalsRequestOutputType$inboundSchema.optional(),
|
|
62051
62037
|
type: UpdateEvalRequestBodyEvalsRequestType$inboundSchema,
|
|
62052
62038
|
url: stringType().optional(),
|
|
62053
62039
|
method: RequestBodyMethod$inboundSchema.optional(),
|
|
@@ -62058,7 +62044,8 @@ var init_updateeval = __esm(() => {
|
|
|
62058
62044
|
key: stringType().optional()
|
|
62059
62045
|
}).transform((v2) => {
|
|
62060
62046
|
return remap(v2, {
|
|
62061
|
-
guardrail_config: "guardrailConfig"
|
|
62047
|
+
guardrail_config: "guardrailConfig",
|
|
62048
|
+
output_type: "outputType"
|
|
62062
62049
|
});
|
|
62063
62050
|
});
|
|
62064
62051
|
RequestBodyHTTP$outboundSchema = objectType({
|
|
@@ -62066,6 +62053,7 @@ var init_updateeval = __esm(() => {
|
|
|
62066
62053
|
lazyType(() => UpdateEvalGuardrailConfigEvalsRequestNumber$outboundSchema),
|
|
62067
62054
|
lazyType(() => UpdateEvalGuardrailConfigEvalsRequestBoolean$outboundSchema)
|
|
62068
62055
|
]).optional(),
|
|
62056
|
+
outputType: UpdateEvalRequestBodyEvalsRequestOutputType$outboundSchema.optional(),
|
|
62069
62057
|
type: UpdateEvalRequestBodyEvalsRequestType$outboundSchema,
|
|
62070
62058
|
url: stringType().optional(),
|
|
62071
62059
|
method: RequestBodyMethod$outboundSchema.optional(),
|
|
@@ -62076,7 +62064,8 @@ var init_updateeval = __esm(() => {
|
|
|
62076
62064
|
key: stringType().optional()
|
|
62077
62065
|
}).transform((v2) => {
|
|
62078
62066
|
return remap(v2, {
|
|
62079
|
-
guardrailConfig: "guardrail_config"
|
|
62067
|
+
guardrailConfig: "guardrail_config",
|
|
62068
|
+
outputType: "output_type"
|
|
62080
62069
|
});
|
|
62081
62070
|
});
|
|
62082
62071
|
((RequestBodyHTTP$) => {
|
|
@@ -62143,6 +62132,12 @@ var init_updateeval = __esm(() => {
|
|
|
62143
62132
|
UpdateEvalRequestBodyEvalsGuardrailConfig$.inboundSchema = UpdateEvalRequestBodyEvalsGuardrailConfig$inboundSchema;
|
|
62144
62133
|
UpdateEvalRequestBodyEvalsGuardrailConfig$.outboundSchema = UpdateEvalRequestBodyEvalsGuardrailConfig$outboundSchema;
|
|
62145
62134
|
})(UpdateEvalRequestBodyEvalsGuardrailConfig$ ||= {});
|
|
62135
|
+
UpdateEvalRequestBodyEvalsOutputType$inboundSchema = nativeEnumType(UpdateEvalRequestBodyEvalsOutputType);
|
|
62136
|
+
UpdateEvalRequestBodyEvalsOutputType$outboundSchema = UpdateEvalRequestBodyEvalsOutputType$inboundSchema;
|
|
62137
|
+
((UpdateEvalRequestBodyEvalsOutputType$) => {
|
|
62138
|
+
UpdateEvalRequestBodyEvalsOutputType$.inboundSchema = UpdateEvalRequestBodyEvalsOutputType$inboundSchema;
|
|
62139
|
+
UpdateEvalRequestBodyEvalsOutputType$.outboundSchema = UpdateEvalRequestBodyEvalsOutputType$outboundSchema;
|
|
62140
|
+
})(UpdateEvalRequestBodyEvalsOutputType$ ||= {});
|
|
62146
62141
|
UpdateEvalRequestBodyEvalsType$inboundSchema = nativeEnumType(UpdateEvalRequestBodyEvalsType);
|
|
62147
62142
|
UpdateEvalRequestBodyEvalsType$outboundSchema = UpdateEvalRequestBodyEvalsType$inboundSchema;
|
|
62148
62143
|
((UpdateEvalRequestBodyEvalsType$) => {
|
|
@@ -62154,6 +62149,7 @@ var init_updateeval = __esm(() => {
|
|
|
62154
62149
|
lazyType(() => UpdateEvalGuardrailConfigEvalsNumber$inboundSchema),
|
|
62155
62150
|
lazyType(() => UpdateEvalGuardrailConfigEvalsBoolean$inboundSchema)
|
|
62156
62151
|
]).optional(),
|
|
62152
|
+
output_type: UpdateEvalRequestBodyEvalsOutputType$inboundSchema.optional(),
|
|
62157
62153
|
type: UpdateEvalRequestBodyEvalsType$inboundSchema,
|
|
62158
62154
|
schema: stringType().optional(),
|
|
62159
62155
|
path: stringType(),
|
|
@@ -62161,7 +62157,8 @@ var init_updateeval = __esm(() => {
|
|
|
62161
62157
|
key: stringType().optional()
|
|
62162
62158
|
}).transform((v2) => {
|
|
62163
62159
|
return remap(v2, {
|
|
62164
|
-
guardrail_config: "guardrailConfig"
|
|
62160
|
+
guardrail_config: "guardrailConfig",
|
|
62161
|
+
output_type: "outputType"
|
|
62165
62162
|
});
|
|
62166
62163
|
});
|
|
62167
62164
|
RequestBodyJSON$outboundSchema = objectType({
|
|
@@ -62169,6 +62166,7 @@ var init_updateeval = __esm(() => {
|
|
|
62169
62166
|
lazyType(() => UpdateEvalGuardrailConfigEvalsNumber$outboundSchema),
|
|
62170
62167
|
lazyType(() => UpdateEvalGuardrailConfigEvalsBoolean$outboundSchema)
|
|
62171
62168
|
]).optional(),
|
|
62169
|
+
outputType: UpdateEvalRequestBodyEvalsOutputType$outboundSchema.optional(),
|
|
62172
62170
|
type: UpdateEvalRequestBodyEvalsType$outboundSchema,
|
|
62173
62171
|
schema: stringType().optional(),
|
|
62174
62172
|
path: stringType(),
|
|
@@ -62176,7 +62174,8 @@ var init_updateeval = __esm(() => {
|
|
|
62176
62174
|
key: stringType().optional()
|
|
62177
62175
|
}).transform((v2) => {
|
|
62178
62176
|
return remap(v2, {
|
|
62179
|
-
guardrailConfig: "guardrail_config"
|
|
62177
|
+
guardrailConfig: "guardrail_config",
|
|
62178
|
+
outputType: "output_type"
|
|
62180
62179
|
});
|
|
62181
62180
|
});
|
|
62182
62181
|
((RequestBodyJSON$) => {
|
|
@@ -62243,6 +62242,12 @@ var init_updateeval = __esm(() => {
|
|
|
62243
62242
|
UpdateEvalRequestBodyGuardrailConfig$.inboundSchema = UpdateEvalRequestBodyGuardrailConfig$inboundSchema;
|
|
62244
62243
|
UpdateEvalRequestBodyGuardrailConfig$.outboundSchema = UpdateEvalRequestBodyGuardrailConfig$outboundSchema;
|
|
62245
62244
|
})(UpdateEvalRequestBodyGuardrailConfig$ ||= {});
|
|
62245
|
+
UpdateEvalRequestBodyOutputType$inboundSchema = nativeEnumType(UpdateEvalRequestBodyOutputType);
|
|
62246
|
+
UpdateEvalRequestBodyOutputType$outboundSchema = UpdateEvalRequestBodyOutputType$inboundSchema;
|
|
62247
|
+
((UpdateEvalRequestBodyOutputType$) => {
|
|
62248
|
+
UpdateEvalRequestBodyOutputType$.inboundSchema = UpdateEvalRequestBodyOutputType$inboundSchema;
|
|
62249
|
+
UpdateEvalRequestBodyOutputType$.outboundSchema = UpdateEvalRequestBodyOutputType$outboundSchema;
|
|
62250
|
+
})(UpdateEvalRequestBodyOutputType$ ||= {});
|
|
62246
62251
|
UpdateEvalRequestBodyType$inboundSchema = nativeEnumType(UpdateEvalRequestBodyType);
|
|
62247
62252
|
UpdateEvalRequestBodyType$outboundSchema = UpdateEvalRequestBodyType$inboundSchema;
|
|
62248
62253
|
((UpdateEvalRequestBodyType$) => {
|
|
@@ -62254,6 +62259,7 @@ var init_updateeval = __esm(() => {
|
|
|
62254
62259
|
lazyType(() => UpdateEvalGuardrailConfigNumber$inboundSchema),
|
|
62255
62260
|
lazyType(() => UpdateEvalGuardrailConfigBoolean$inboundSchema)
|
|
62256
62261
|
]).optional(),
|
|
62262
|
+
output_type: UpdateEvalRequestBodyOutputType$inboundSchema.optional(),
|
|
62257
62263
|
type: UpdateEvalRequestBodyType$inboundSchema,
|
|
62258
62264
|
prompt: stringType().optional(),
|
|
62259
62265
|
path: stringType(),
|
|
@@ -62262,7 +62268,8 @@ var init_updateeval = __esm(() => {
|
|
|
62262
62268
|
key: stringType().optional()
|
|
62263
62269
|
}).transform((v2) => {
|
|
62264
62270
|
return remap(v2, {
|
|
62265
|
-
guardrail_config: "guardrailConfig"
|
|
62271
|
+
guardrail_config: "guardrailConfig",
|
|
62272
|
+
output_type: "outputType"
|
|
62266
62273
|
});
|
|
62267
62274
|
});
|
|
62268
62275
|
RequestBodyLLM$outboundSchema = objectType({
|
|
@@ -62270,6 +62277,7 @@ var init_updateeval = __esm(() => {
|
|
|
62270
62277
|
lazyType(() => UpdateEvalGuardrailConfigNumber$outboundSchema),
|
|
62271
62278
|
lazyType(() => UpdateEvalGuardrailConfigBoolean$outboundSchema)
|
|
62272
62279
|
]).optional(),
|
|
62280
|
+
outputType: UpdateEvalRequestBodyOutputType$outboundSchema.optional(),
|
|
62273
62281
|
type: UpdateEvalRequestBodyType$outboundSchema,
|
|
62274
62282
|
prompt: stringType().optional(),
|
|
62275
62283
|
path: stringType(),
|
|
@@ -62278,7 +62286,8 @@ var init_updateeval = __esm(() => {
|
|
|
62278
62286
|
key: stringType().optional()
|
|
62279
62287
|
}).transform((v2) => {
|
|
62280
62288
|
return remap(v2, {
|
|
62281
|
-
guardrailConfig: "guardrail_config"
|
|
62289
|
+
guardrailConfig: "guardrail_config",
|
|
62290
|
+
outputType: "output_type"
|
|
62282
62291
|
});
|
|
62283
62292
|
});
|
|
62284
62293
|
((RequestBodyLLM$) => {
|
|
@@ -62400,8 +62409,8 @@ var init_updateeval = __esm(() => {
|
|
|
62400
62409
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
62401
62410
|
_id: stringType(),
|
|
62402
62411
|
description: stringType(),
|
|
62403
|
-
created: stringType().default("2025-09-
|
|
62404
|
-
updated: stringType().default("2025-09-
|
|
62412
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62413
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62405
62414
|
guardrail_config: unionType([
|
|
62406
62415
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
62407
62416
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -62418,8 +62427,8 @@ var init_updateeval = __esm(() => {
|
|
|
62418
62427
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
62419
62428
|
id: stringType(),
|
|
62420
62429
|
description: stringType(),
|
|
62421
|
-
created: stringType().default("2025-09-
|
|
62422
|
-
updated: stringType().default("2025-09-
|
|
62430
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62431
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62423
62432
|
guardrailConfig: unionType([
|
|
62424
62433
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
62425
62434
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -62512,8 +62521,8 @@ var init_updateeval = __esm(() => {
|
|
|
62512
62521
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
62513
62522
|
_id: stringType(),
|
|
62514
62523
|
description: stringType(),
|
|
62515
|
-
created: stringType().default("2025-09-
|
|
62516
|
-
updated: stringType().default("2025-09-
|
|
62524
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62525
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62517
62526
|
guardrail_config: unionType([
|
|
62518
62527
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
62519
62528
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -62533,8 +62542,8 @@ var init_updateeval = __esm(() => {
|
|
|
62533
62542
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
62534
62543
|
id: stringType(),
|
|
62535
62544
|
description: stringType(),
|
|
62536
|
-
created: stringType().default("2025-09-
|
|
62537
|
-
updated: stringType().default("2025-09-
|
|
62545
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62546
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62538
62547
|
guardrailConfig: unionType([
|
|
62539
62548
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
62540
62549
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -62624,8 +62633,8 @@ var init_updateeval = __esm(() => {
|
|
|
62624
62633
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
62625
62634
|
_id: stringType(),
|
|
62626
62635
|
description: stringType(),
|
|
62627
|
-
created: stringType().default("2025-09-
|
|
62628
|
-
updated: stringType().default("2025-09-
|
|
62636
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62637
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62629
62638
|
guardrail_config: unionType([
|
|
62630
62639
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
62631
62640
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -62642,8 +62651,8 @@ var init_updateeval = __esm(() => {
|
|
|
62642
62651
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
62643
62652
|
id: stringType(),
|
|
62644
62653
|
description: stringType(),
|
|
62645
|
-
created: stringType().default("2025-09-
|
|
62646
|
-
updated: stringType().default("2025-09-
|
|
62654
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62655
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62647
62656
|
guardrailConfig: unionType([
|
|
62648
62657
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
62649
62658
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -62730,8 +62739,8 @@ var init_updateeval = __esm(() => {
|
|
|
62730
62739
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
62731
62740
|
_id: stringType(),
|
|
62732
62741
|
description: stringType(),
|
|
62733
|
-
created: stringType().default("2025-09-
|
|
62734
|
-
updated: stringType().default("2025-09-
|
|
62742
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62743
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62735
62744
|
guardrail_config: unionType([
|
|
62736
62745
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
62737
62746
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -62749,8 +62758,8 @@ var init_updateeval = __esm(() => {
|
|
|
62749
62758
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
62750
62759
|
id: stringType(),
|
|
62751
62760
|
description: stringType(),
|
|
62752
|
-
created: stringType().default("2025-09-
|
|
62753
|
-
updated: stringType().default("2025-09-
|
|
62761
|
+
created: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62762
|
+
updated: stringType().default("2025-09-18T21:41:50.865Z"),
|
|
62754
62763
|
guardrailConfig: unionType([
|
|
62755
62764
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
62756
62765
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -79781,7 +79790,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
79781
79790
|
function createMCPServer(deps) {
|
|
79782
79791
|
const server = new McpServer({
|
|
79783
79792
|
name: "Orq",
|
|
79784
|
-
version: "3.12.
|
|
79793
|
+
version: "3.12.13"
|
|
79785
79794
|
});
|
|
79786
79795
|
const client = new OrqCore({
|
|
79787
79796
|
apiKey: deps.apiKey,
|
|
@@ -81199,7 +81208,7 @@ var routes = rn({
|
|
|
81199
81208
|
var app = Ve(routes, {
|
|
81200
81209
|
name: "mcp",
|
|
81201
81210
|
versionInfo: {
|
|
81202
|
-
currentVersion: "3.12.
|
|
81211
|
+
currentVersion: "3.12.13"
|
|
81203
81212
|
}
|
|
81204
81213
|
});
|
|
81205
81214
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -81207,5 +81216,5 @@ export {
|
|
|
81207
81216
|
app
|
|
81208
81217
|
};
|
|
81209
81218
|
|
|
81210
|
-
//# debugId=
|
|
81219
|
+
//# debugId=CD83332095E737BA64756E2164756E21
|
|
81211
81220
|
//# sourceMappingURL=mcp-server.js.map
|