@orq-ai/node 3.11.0-rc.12 → 3.11.0-rc.14
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 +254 -109
- package/bin/mcp-server.js.map +28 -28
- 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/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.js +16 -16
- package/models/operations/fileget.js +2 -2
- package/models/operations/filelist.js +2 -2
- package/models/operations/fileupload.js +2 -2
- package/models/operations/getevals.js +28 -28
- 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 +306 -1
- package/models/operations/searchknowledge.d.ts.map +1 -1
- package/models/operations/searchknowledge.js +230 -4
- package/models/operations/searchknowledge.js.map +1 -1
- 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.js +16 -16
- 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/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 +16 -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/getevals.ts +28 -28
- 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 +406 -1
- 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 +16 -16
package/bin/mcp-server.js
CHANGED
|
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
|
|
|
34203
34203
|
SDK_METADATA = {
|
|
34204
34204
|
language: "typescript",
|
|
34205
34205
|
openapiDocVersion: "2.0",
|
|
34206
|
-
sdkVersion: "3.11.0-rc.
|
|
34207
|
-
genVersion: "2.
|
|
34208
|
-
userAgent: "speakeasy-sdk/typescript 3.11.0-rc.
|
|
34206
|
+
sdkVersion: "3.11.0-rc.14",
|
|
34207
|
+
genVersion: "2.683.1",
|
|
34208
|
+
userAgent: "speakeasy-sdk/typescript 3.11.0-rc.14 2.683.1 2.0 @orq-ai/node"
|
|
34209
34209
|
};
|
|
34210
34210
|
});
|
|
34211
34211
|
|
|
@@ -35878,7 +35878,7 @@ var init_createcontact = __esm(() => {
|
|
|
35878
35878
|
tags: arrayType(stringType()).optional(),
|
|
35879
35879
|
metadata: recordType(anyType()).optional(),
|
|
35880
35880
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35881
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
35881
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
35882
35882
|
}).transform((v2) => {
|
|
35883
35883
|
return remap(v2, {
|
|
35884
35884
|
_id: "id",
|
|
@@ -35898,7 +35898,7 @@ var init_createcontact = __esm(() => {
|
|
|
35898
35898
|
tags: arrayType(stringType()).optional(),
|
|
35899
35899
|
metadata: recordType(anyType()).optional(),
|
|
35900
35900
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35901
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
35901
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
35902
35902
|
}).transform((v2) => {
|
|
35903
35903
|
return remap(v2, {
|
|
35904
35904
|
id: "_id",
|
|
@@ -35970,7 +35970,7 @@ var init_createdataset = __esm(() => {
|
|
|
35970
35970
|
updated_by_id: stringType().optional(),
|
|
35971
35971
|
metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
|
|
35972
35972
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
35973
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
35973
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
35974
35974
|
}).transform((v2) => {
|
|
35975
35975
|
return remap(v2, {
|
|
35976
35976
|
_id: "id",
|
|
@@ -35990,7 +35990,7 @@ var init_createdataset = __esm(() => {
|
|
|
35990
35990
|
updatedById: stringType().optional(),
|
|
35991
35991
|
metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
|
|
35992
35992
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
35993
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
35993
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
35994
35994
|
}).transform((v2) => {
|
|
35995
35995
|
return remap(v2, {
|
|
35996
35996
|
id: "_id",
|
|
@@ -37122,7 +37122,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37122
37122
|
created_by_id: stringType().optional(),
|
|
37123
37123
|
updated_by_id: stringType().optional(),
|
|
37124
37124
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
37125
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
37125
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
37126
37126
|
}).transform((v2) => {
|
|
37127
37127
|
return remap(v2, {
|
|
37128
37128
|
_id: "id",
|
|
@@ -37149,7 +37149,7 @@ var init_createdatasetitem = __esm(() => {
|
|
|
37149
37149
|
createdById: stringType().optional(),
|
|
37150
37150
|
updatedById: stringType().optional(),
|
|
37151
37151
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
37152
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
37152
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
37153
37153
|
}).transform((v2) => {
|
|
37154
37154
|
return remap(v2, {
|
|
37155
37155
|
id: "_id",
|
|
@@ -37371,7 +37371,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37371
37371
|
CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
|
|
37372
37372
|
})(CreateDatasourceStatus$ ||= {});
|
|
37373
37373
|
CreateDatasourceResponseBody$inboundSchema = objectType({
|
|
37374
|
-
_id: stringType().default("
|
|
37374
|
+
_id: stringType().default("01K2P52NGYMCYPHV504V1JBW8S"),
|
|
37375
37375
|
display_name: stringType(),
|
|
37376
37376
|
description: stringType().optional(),
|
|
37377
37377
|
status: CreateDatasourceStatus$inboundSchema,
|
|
@@ -37394,7 +37394,7 @@ var init_createdatasource = __esm(() => {
|
|
|
37394
37394
|
});
|
|
37395
37395
|
});
|
|
37396
37396
|
CreateDatasourceResponseBody$outboundSchema = objectType({
|
|
37397
|
-
id: stringType().default("
|
|
37397
|
+
id: stringType().default("01K2P52NGYMCYPHV504V1JBW8S"),
|
|
37398
37398
|
displayName: stringType(),
|
|
37399
37399
|
description: stringType().optional(),
|
|
37400
37400
|
status: CreateDatasourceStatus$outboundSchema,
|
|
@@ -38070,8 +38070,8 @@ var init_createeval = __esm(() => {
|
|
|
38070
38070
|
ResponseBodyPython$inboundSchema = objectType({
|
|
38071
38071
|
_id: stringType(),
|
|
38072
38072
|
description: stringType(),
|
|
38073
|
-
created: stringType().default("2025-08-
|
|
38074
|
-
updated: stringType().default("2025-08-
|
|
38073
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38074
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38075
38075
|
guardrail_config: unionType([
|
|
38076
38076
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
38077
38077
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -38088,8 +38088,8 @@ var init_createeval = __esm(() => {
|
|
|
38088
38088
|
ResponseBodyPython$outboundSchema = objectType({
|
|
38089
38089
|
id: stringType(),
|
|
38090
38090
|
description: stringType(),
|
|
38091
|
-
created: stringType().default("2025-08-
|
|
38092
|
-
updated: stringType().default("2025-08-
|
|
38091
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38092
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38093
38093
|
guardrailConfig: unionType([
|
|
38094
38094
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
38095
38095
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -38182,8 +38182,8 @@ var init_createeval = __esm(() => {
|
|
|
38182
38182
|
ResponseBodyHTTP$inboundSchema = objectType({
|
|
38183
38183
|
_id: stringType(),
|
|
38184
38184
|
description: stringType(),
|
|
38185
|
-
created: stringType().default("2025-08-
|
|
38186
|
-
updated: stringType().default("2025-08-
|
|
38185
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38186
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38187
38187
|
guardrail_config: unionType([
|
|
38188
38188
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
38189
38189
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -38203,8 +38203,8 @@ var init_createeval = __esm(() => {
|
|
|
38203
38203
|
ResponseBodyHTTP$outboundSchema = objectType({
|
|
38204
38204
|
id: stringType(),
|
|
38205
38205
|
description: stringType(),
|
|
38206
|
-
created: stringType().default("2025-08-
|
|
38207
|
-
updated: stringType().default("2025-08-
|
|
38206
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38207
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38208
38208
|
guardrailConfig: unionType([
|
|
38209
38209
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
38210
38210
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -38294,8 +38294,8 @@ var init_createeval = __esm(() => {
|
|
|
38294
38294
|
ResponseBodyJSON$inboundSchema = objectType({
|
|
38295
38295
|
_id: stringType(),
|
|
38296
38296
|
description: stringType(),
|
|
38297
|
-
created: stringType().default("2025-08-
|
|
38298
|
-
updated: stringType().default("2025-08-
|
|
38297
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38298
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38299
38299
|
guardrail_config: unionType([
|
|
38300
38300
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
38301
38301
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -38312,8 +38312,8 @@ var init_createeval = __esm(() => {
|
|
|
38312
38312
|
ResponseBodyJSON$outboundSchema = objectType({
|
|
38313
38313
|
id: stringType(),
|
|
38314
38314
|
description: stringType(),
|
|
38315
|
-
created: stringType().default("2025-08-
|
|
38316
|
-
updated: stringType().default("2025-08-
|
|
38315
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38316
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38317
38317
|
guardrailConfig: unionType([
|
|
38318
38318
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
38319
38319
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -38400,8 +38400,8 @@ var init_createeval = __esm(() => {
|
|
|
38400
38400
|
ResponseBodyLLM$inboundSchema = objectType({
|
|
38401
38401
|
_id: stringType(),
|
|
38402
38402
|
description: stringType(),
|
|
38403
|
-
created: stringType().default("2025-08-
|
|
38404
|
-
updated: stringType().default("2025-08-
|
|
38403
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38404
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38405
38405
|
guardrail_config: unionType([
|
|
38406
38406
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
38407
38407
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -38419,8 +38419,8 @@ var init_createeval = __esm(() => {
|
|
|
38419
38419
|
ResponseBodyLLM$outboundSchema = objectType({
|
|
38420
38420
|
id: stringType(),
|
|
38421
38421
|
description: stringType(),
|
|
38422
|
-
created: stringType().default("2025-08-
|
|
38423
|
-
updated: stringType().default("2025-08-
|
|
38422
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38423
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
38424
38424
|
guardrailConfig: unionType([
|
|
38425
38425
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
38426
38426
|
lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -48358,7 +48358,7 @@ var init_fileget = __esm(() => {
|
|
|
48358
48358
|
bytes: numberType(),
|
|
48359
48359
|
file_name: stringType(),
|
|
48360
48360
|
workspace_id: stringType(),
|
|
48361
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48361
|
+
created: stringType().datetime({ offset: true }).default("2025-08-15T06:01:03.134Z").transform((v2) => new Date(v2))
|
|
48362
48362
|
}).transform((v2) => {
|
|
48363
48363
|
return remap(v2, {
|
|
48364
48364
|
_id: "id",
|
|
@@ -48374,7 +48374,7 @@ var init_fileget = __esm(() => {
|
|
|
48374
48374
|
bytes: numberType(),
|
|
48375
48375
|
fileName: stringType(),
|
|
48376
48376
|
workspaceId: stringType(),
|
|
48377
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48377
|
+
created: dateType().default(() => new Date("2025-08-15T06:01:03.134Z")).transform((v2) => v2.toISOString())
|
|
48378
48378
|
}).transform((v2) => {
|
|
48379
48379
|
return remap(v2, {
|
|
48380
48380
|
id: "_id",
|
|
@@ -48445,7 +48445,7 @@ var init_filelist = __esm(() => {
|
|
|
48445
48445
|
bytes: numberType(),
|
|
48446
48446
|
file_name: stringType(),
|
|
48447
48447
|
workspace_id: stringType(),
|
|
48448
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48448
|
+
created: stringType().datetime({ offset: true }).default("2025-08-15T06:01:03.134Z").transform((v2) => new Date(v2))
|
|
48449
48449
|
}).transform((v2) => {
|
|
48450
48450
|
return remap(v2, {
|
|
48451
48451
|
_id: "id",
|
|
@@ -48461,7 +48461,7 @@ var init_filelist = __esm(() => {
|
|
|
48461
48461
|
bytes: numberType(),
|
|
48462
48462
|
fileName: stringType(),
|
|
48463
48463
|
workspaceId: stringType(),
|
|
48464
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48464
|
+
created: dateType().default(() => new Date("2025-08-15T06:01:03.134Z")).transform((v2) => v2.toISOString())
|
|
48465
48465
|
}).transform((v2) => {
|
|
48466
48466
|
return remap(v2, {
|
|
48467
48467
|
id: "_id",
|
|
@@ -48593,7 +48593,7 @@ var init_fileupload = __esm(() => {
|
|
|
48593
48593
|
bytes: numberType(),
|
|
48594
48594
|
file_name: stringType(),
|
|
48595
48595
|
workspace_id: stringType(),
|
|
48596
|
-
created: stringType().datetime({ offset: true }).default("2025-08-
|
|
48596
|
+
created: stringType().datetime({ offset: true }).default("2025-08-15T06:01:03.134Z").transform((v2) => new Date(v2))
|
|
48597
48597
|
}).transform((v2) => {
|
|
48598
48598
|
return remap(v2, {
|
|
48599
48599
|
_id: "id",
|
|
@@ -48609,7 +48609,7 @@ var init_fileupload = __esm(() => {
|
|
|
48609
48609
|
bytes: numberType(),
|
|
48610
48610
|
fileName: stringType(),
|
|
48611
48611
|
workspaceId: stringType(),
|
|
48612
|
-
created: dateType().default(() => new Date("2025-08-
|
|
48612
|
+
created: dateType().default(() => new Date("2025-08-15T06:01:03.134Z")).transform((v2) => v2.toISOString())
|
|
48613
48613
|
}).transform((v2) => {
|
|
48614
48614
|
return remap(v2, {
|
|
48615
48615
|
id: "_id",
|
|
@@ -49685,8 +49685,8 @@ var init_getevals = __esm(() => {
|
|
|
49685
49685
|
Typescript$inboundSchema = objectType({
|
|
49686
49686
|
_id: stringType(),
|
|
49687
49687
|
description: stringType(),
|
|
49688
|
-
created: stringType().default("2025-08-
|
|
49689
|
-
updated: stringType().default("2025-08-
|
|
49688
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
49689
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
49690
49690
|
guardrail_config: unionType([
|
|
49691
49691
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
49692
49692
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -49703,8 +49703,8 @@ var init_getevals = __esm(() => {
|
|
|
49703
49703
|
Typescript$outboundSchema = objectType({
|
|
49704
49704
|
id: stringType(),
|
|
49705
49705
|
description: stringType(),
|
|
49706
|
-
created: stringType().default("2025-08-
|
|
49707
|
-
updated: stringType().default("2025-08-
|
|
49706
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
49707
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
49708
49708
|
guardrailConfig: unionType([
|
|
49709
49709
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
49710
49710
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -49797,8 +49797,8 @@ var init_getevals = __esm(() => {
|
|
|
49797
49797
|
Ragas$inboundSchema = objectType({
|
|
49798
49798
|
_id: stringType(),
|
|
49799
49799
|
description: stringType(),
|
|
49800
|
-
created: stringType().default("2025-08-
|
|
49801
|
-
updated: stringType().default("2025-08-
|
|
49800
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
49801
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
49802
49802
|
guardrail_config: unionType([
|
|
49803
49803
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
49804
49804
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -49817,8 +49817,8 @@ var init_getevals = __esm(() => {
|
|
|
49817
49817
|
Ragas$outboundSchema = objectType({
|
|
49818
49818
|
id: stringType(),
|
|
49819
49819
|
description: stringType(),
|
|
49820
|
-
created: stringType().default("2025-08-
|
|
49821
|
-
updated: stringType().default("2025-08-
|
|
49820
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
49821
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
49822
49822
|
guardrailConfig: unionType([
|
|
49823
49823
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
49824
49824
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -50571,8 +50571,8 @@ var init_getevals = __esm(() => {
|
|
|
50571
50571
|
DataFunction$inboundSchema = objectType({
|
|
50572
50572
|
_id: stringType(),
|
|
50573
50573
|
description: stringType(),
|
|
50574
|
-
created: stringType().default("2025-08-
|
|
50575
|
-
updated: stringType().default("2025-08-
|
|
50574
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50575
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50576
50576
|
guardrail_config: unionType([
|
|
50577
50577
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
50578
50578
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -50626,8 +50626,8 @@ var init_getevals = __esm(() => {
|
|
|
50626
50626
|
DataFunction$outboundSchema = objectType({
|
|
50627
50627
|
id: stringType(),
|
|
50628
50628
|
description: stringType(),
|
|
50629
|
-
created: stringType().default("2025-08-
|
|
50630
|
-
updated: stringType().default("2025-08-
|
|
50629
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50630
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50631
50631
|
guardrailConfig: unionType([
|
|
50632
50632
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
50633
50633
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -50751,8 +50751,8 @@ var init_getevals = __esm(() => {
|
|
|
50751
50751
|
DataPython$inboundSchema = objectType({
|
|
50752
50752
|
_id: stringType(),
|
|
50753
50753
|
description: stringType(),
|
|
50754
|
-
created: stringType().default("2025-08-
|
|
50755
|
-
updated: stringType().default("2025-08-
|
|
50754
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50755
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50756
50756
|
guardrail_config: unionType([
|
|
50757
50757
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
|
|
50758
50758
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
|
|
@@ -50769,8 +50769,8 @@ var init_getevals = __esm(() => {
|
|
|
50769
50769
|
DataPython$outboundSchema = objectType({
|
|
50770
50770
|
id: stringType(),
|
|
50771
50771
|
description: stringType(),
|
|
50772
|
-
created: stringType().default("2025-08-
|
|
50773
|
-
updated: stringType().default("2025-08-
|
|
50772
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50773
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50774
50774
|
guardrailConfig: unionType([
|
|
50775
50775
|
lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
|
|
50776
50776
|
lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
|
|
@@ -50863,8 +50863,8 @@ var init_getevals = __esm(() => {
|
|
|
50863
50863
|
DataHTTP$inboundSchema = objectType({
|
|
50864
50864
|
_id: stringType(),
|
|
50865
50865
|
description: stringType(),
|
|
50866
|
-
created: stringType().default("2025-08-
|
|
50867
|
-
updated: stringType().default("2025-08-
|
|
50866
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50867
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50868
50868
|
guardrail_config: unionType([
|
|
50869
50869
|
lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
|
|
50870
50870
|
lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
|
|
@@ -50884,8 +50884,8 @@ var init_getevals = __esm(() => {
|
|
|
50884
50884
|
DataHTTP$outboundSchema = objectType({
|
|
50885
50885
|
id: stringType(),
|
|
50886
50886
|
description: stringType(),
|
|
50887
|
-
created: stringType().default("2025-08-
|
|
50888
|
-
updated: stringType().default("2025-08-
|
|
50887
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50888
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50889
50889
|
guardrailConfig: unionType([
|
|
50890
50890
|
lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
|
|
50891
50891
|
lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
|
|
@@ -50975,8 +50975,8 @@ var init_getevals = __esm(() => {
|
|
|
50975
50975
|
DataJSON$inboundSchema = objectType({
|
|
50976
50976
|
_id: stringType(),
|
|
50977
50977
|
description: stringType(),
|
|
50978
|
-
created: stringType().default("2025-08-
|
|
50979
|
-
updated: stringType().default("2025-08-
|
|
50978
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50979
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50980
50980
|
guardrail_config: unionType([
|
|
50981
50981
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
|
|
50982
50982
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
|
|
@@ -50993,8 +50993,8 @@ var init_getevals = __esm(() => {
|
|
|
50993
50993
|
DataJSON$outboundSchema = objectType({
|
|
50994
50994
|
id: stringType(),
|
|
50995
50995
|
description: stringType(),
|
|
50996
|
-
created: stringType().default("2025-08-
|
|
50997
|
-
updated: stringType().default("2025-08-
|
|
50996
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50997
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
50998
50998
|
guardrailConfig: unionType([
|
|
50999
50999
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
|
|
51000
51000
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
|
|
@@ -51081,8 +51081,8 @@ var init_getevals = __esm(() => {
|
|
|
51081
51081
|
DataLLM$inboundSchema = objectType({
|
|
51082
51082
|
_id: stringType(),
|
|
51083
51083
|
description: stringType(),
|
|
51084
|
-
created: stringType().default("2025-08-
|
|
51085
|
-
updated: stringType().default("2025-08-
|
|
51084
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
51085
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
51086
51086
|
guardrail_config: unionType([
|
|
51087
51087
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
51088
51088
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -51100,8 +51100,8 @@ var init_getevals = __esm(() => {
|
|
|
51100
51100
|
DataLLM$outboundSchema = objectType({
|
|
51101
51101
|
id: stringType(),
|
|
51102
51102
|
description: stringType(),
|
|
51103
|
-
created: stringType().default("2025-08-
|
|
51104
|
-
updated: stringType().default("2025-08-
|
|
51103
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
51104
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
51105
51105
|
guardrailConfig: unionType([
|
|
51106
51106
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
51107
51107
|
lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -53574,7 +53574,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53574
53574
|
tags: arrayType(stringType()).optional(),
|
|
53575
53575
|
metadata: recordType(anyType()).optional(),
|
|
53576
53576
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
53577
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
53577
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2)),
|
|
53578
53578
|
metrics: lazyType(() => Metrics$inboundSchema)
|
|
53579
53579
|
}).transform((v2) => {
|
|
53580
53580
|
return remap(v2, {
|
|
@@ -53593,7 +53593,7 @@ var init_listcontacts = __esm(() => {
|
|
|
53593
53593
|
tags: arrayType(stringType()).optional(),
|
|
53594
53594
|
metadata: recordType(anyType()).optional(),
|
|
53595
53595
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
53596
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
53596
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString()),
|
|
53597
53597
|
metrics: lazyType(() => Metrics$outboundSchema)
|
|
53598
53598
|
}).transform((v2) => {
|
|
53599
53599
|
return remap(v2, {
|
|
@@ -54208,7 +54208,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
54208
54208
|
created_by_id: stringType().optional(),
|
|
54209
54209
|
updated_by_id: stringType().optional(),
|
|
54210
54210
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54211
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
54211
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
54212
54212
|
}).transform((v2) => {
|
|
54213
54213
|
return remap(v2, {
|
|
54214
54214
|
_id: "id",
|
|
@@ -54235,7 +54235,7 @@ var init_listdatasetdatapoints = __esm(() => {
|
|
|
54235
54235
|
createdById: stringType().optional(),
|
|
54236
54236
|
updatedById: stringType().optional(),
|
|
54237
54237
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54238
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
54238
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
54239
54239
|
}).transform((v2) => {
|
|
54240
54240
|
return remap(v2, {
|
|
54241
54241
|
id: "_id",
|
|
@@ -54343,7 +54343,7 @@ var init_listdatasets = __esm(() => {
|
|
|
54343
54343
|
updated_by_id: stringType().optional(),
|
|
54344
54344
|
metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
|
|
54345
54345
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
54346
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
54346
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
54347
54347
|
}).transform((v2) => {
|
|
54348
54348
|
return remap(v2, {
|
|
54349
54349
|
_id: "id",
|
|
@@ -54363,7 +54363,7 @@ var init_listdatasets = __esm(() => {
|
|
|
54363
54363
|
updatedById: stringType().optional(),
|
|
54364
54364
|
metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
|
|
54365
54365
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
54366
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
54366
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
54367
54367
|
}).transform((v2) => {
|
|
54368
54368
|
return remap(v2, {
|
|
54369
54369
|
id: "_id",
|
|
@@ -54468,7 +54468,7 @@ var init_listdatasources = __esm(() => {
|
|
|
54468
54468
|
ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
|
|
54469
54469
|
})(ListDatasourcesStatus$ ||= {});
|
|
54470
54470
|
ListDatasourcesData$inboundSchema = objectType({
|
|
54471
|
-
_id: stringType().default("
|
|
54471
|
+
_id: stringType().default("01K2P52NGXQ1CB6P6RDGERRHJW"),
|
|
54472
54472
|
display_name: stringType(),
|
|
54473
54473
|
description: stringType().optional(),
|
|
54474
54474
|
status: ListDatasourcesStatus$inboundSchema,
|
|
@@ -54491,7 +54491,7 @@ var init_listdatasources = __esm(() => {
|
|
|
54491
54491
|
});
|
|
54492
54492
|
});
|
|
54493
54493
|
ListDatasourcesData$outboundSchema = objectType({
|
|
54494
|
-
id: stringType().default("
|
|
54494
|
+
id: stringType().default("01K2P52NGXQ1CB6P6RDGERRHJW"),
|
|
54495
54495
|
displayName: stringType(),
|
|
54496
54496
|
description: stringType().optional(),
|
|
54497
54497
|
status: ListDatasourcesStatus$outboundSchema,
|
|
@@ -56038,7 +56038,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
56038
56038
|
tags: arrayType(stringType()).optional(),
|
|
56039
56039
|
metadata: recordType(anyType()).optional(),
|
|
56040
56040
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56041
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56041
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
56042
56042
|
}).transform((v2) => {
|
|
56043
56043
|
return remap(v2, {
|
|
56044
56044
|
_id: "id",
|
|
@@ -56056,7 +56056,7 @@ var init_retrievecontact = __esm(() => {
|
|
|
56056
56056
|
tags: arrayType(stringType()).optional(),
|
|
56057
56057
|
metadata: recordType(anyType()).optional(),
|
|
56058
56058
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56059
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56059
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
56060
56060
|
}).transform((v2) => {
|
|
56061
56061
|
return remap(v2, {
|
|
56062
56062
|
id: "_id",
|
|
@@ -56633,7 +56633,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56633
56633
|
created_by_id: stringType().optional(),
|
|
56634
56634
|
updated_by_id: stringType().optional(),
|
|
56635
56635
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56636
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56636
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
56637
56637
|
}).transform((v2) => {
|
|
56638
56638
|
return remap(v2, {
|
|
56639
56639
|
_id: "id",
|
|
@@ -56660,7 +56660,7 @@ var init_retrievedatapoint = __esm(() => {
|
|
|
56660
56660
|
createdById: stringType().optional(),
|
|
56661
56661
|
updatedById: stringType().optional(),
|
|
56662
56662
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56663
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56663
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
56664
56664
|
}).transform((v2) => {
|
|
56665
56665
|
return remap(v2, {
|
|
56666
56666
|
id: "_id",
|
|
@@ -56731,7 +56731,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56731
56731
|
updated_by_id: stringType().optional(),
|
|
56732
56732
|
metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
|
|
56733
56733
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
56734
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
56734
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
56735
56735
|
}).transform((v2) => {
|
|
56736
56736
|
return remap(v2, {
|
|
56737
56737
|
_id: "id",
|
|
@@ -56751,7 +56751,7 @@ var init_retrievedataset = __esm(() => {
|
|
|
56751
56751
|
updatedById: stringType().optional(),
|
|
56752
56752
|
metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
|
|
56753
56753
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
56754
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
56754
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
56755
56755
|
}).transform((v2) => {
|
|
56756
56756
|
return remap(v2, {
|
|
56757
56757
|
id: "_id",
|
|
@@ -56809,7 +56809,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56809
56809
|
RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
|
|
56810
56810
|
})(RetrieveDatasourceStatus$ ||= {});
|
|
56811
56811
|
RetrieveDatasourceResponseBody$inboundSchema = objectType({
|
|
56812
|
-
_id: stringType().default("
|
|
56812
|
+
_id: stringType().default("01K2P52NGYA6GT1651T2DRMZWN"),
|
|
56813
56813
|
display_name: stringType(),
|
|
56814
56814
|
description: stringType().optional(),
|
|
56815
56815
|
status: RetrieveDatasourceStatus$inboundSchema,
|
|
@@ -56832,7 +56832,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56832
56832
|
});
|
|
56833
56833
|
});
|
|
56834
56834
|
RetrieveDatasourceResponseBody$outboundSchema = objectType({
|
|
56835
|
-
id: stringType().default("
|
|
56835
|
+
id: stringType().default("01K2P52NGYA6GT1651T2DRMZWN"),
|
|
56836
56836
|
displayName: stringType(),
|
|
56837
56837
|
description: stringType().optional(),
|
|
56838
56838
|
status: RetrieveDatasourceStatus$outboundSchema,
|
|
@@ -56861,7 +56861,7 @@ var init_retrievedatasource = __esm(() => {
|
|
|
56861
56861
|
});
|
|
56862
56862
|
|
|
56863
56863
|
// src/models/operations/searchknowledge.ts
|
|
56864
|
-
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$, 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$;
|
|
56864
|
+
var SearchType, SearchKnowledgeProvider, SearchKnowledgeModelType, SearchKnowledgeKnowledgeProvider, 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$, SearchKnowledgeProvider$inboundSchema, SearchKnowledgeProvider$outboundSchema, SearchKnowledgeProvider$, SearchKnowledgeModelType$inboundSchema, SearchKnowledgeModelType$outboundSchema, SearchKnowledgeModelType$, SearchKnowledgeModelParameters$inboundSchema, SearchKnowledgeModelParameters$outboundSchema, SearchKnowledgeModelParameters$, SearchKnowledgeRerankConfig$inboundSchema, SearchKnowledgeRerankConfig$outboundSchema, SearchKnowledgeRerankConfig$, SearchKnowledgeKnowledgeProvider$inboundSchema, SearchKnowledgeKnowledgeProvider$outboundSchema, SearchKnowledgeKnowledgeProvider$, 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$;
|
|
56865
56865
|
var init_searchknowledge = __esm(() => {
|
|
56866
56866
|
init_esm();
|
|
56867
56867
|
init_primitives();
|
|
@@ -56870,6 +56870,55 @@ var init_searchknowledge = __esm(() => {
|
|
|
56870
56870
|
KeywordSearch: "keyword_search",
|
|
56871
56871
|
HybridSearch: "hybrid_search"
|
|
56872
56872
|
};
|
|
56873
|
+
SearchKnowledgeProvider = {
|
|
56874
|
+
Cohere: "cohere",
|
|
56875
|
+
Openai: "openai",
|
|
56876
|
+
Anthropic: "anthropic",
|
|
56877
|
+
Huggingface: "huggingface",
|
|
56878
|
+
Replicate: "replicate",
|
|
56879
|
+
Google: "google",
|
|
56880
|
+
GoogleAi: "google-ai",
|
|
56881
|
+
Azure: "azure",
|
|
56882
|
+
Aws: "aws",
|
|
56883
|
+
Anyscale: "anyscale",
|
|
56884
|
+
Perplexity: "perplexity",
|
|
56885
|
+
Groq: "groq",
|
|
56886
|
+
Fal: "fal",
|
|
56887
|
+
Leonardoai: "leonardoai",
|
|
56888
|
+
Nvidia: "nvidia",
|
|
56889
|
+
Jina: "jina",
|
|
56890
|
+
Togetherai: "togetherai",
|
|
56891
|
+
Elevenlabs: "elevenlabs",
|
|
56892
|
+
Litellm: "litellm",
|
|
56893
|
+
Openailike: "openailike",
|
|
56894
|
+
Cerebras: "cerebras"
|
|
56895
|
+
};
|
|
56896
|
+
SearchKnowledgeModelType = {
|
|
56897
|
+
Rerank: "rerank"
|
|
56898
|
+
};
|
|
56899
|
+
SearchKnowledgeKnowledgeProvider = {
|
|
56900
|
+
Cohere: "cohere",
|
|
56901
|
+
Openai: "openai",
|
|
56902
|
+
Anthropic: "anthropic",
|
|
56903
|
+
Huggingface: "huggingface",
|
|
56904
|
+
Replicate: "replicate",
|
|
56905
|
+
Google: "google",
|
|
56906
|
+
GoogleAi: "google-ai",
|
|
56907
|
+
Azure: "azure",
|
|
56908
|
+
Aws: "aws",
|
|
56909
|
+
Anyscale: "anyscale",
|
|
56910
|
+
Perplexity: "perplexity",
|
|
56911
|
+
Groq: "groq",
|
|
56912
|
+
Fal: "fal",
|
|
56913
|
+
Leonardoai: "leonardoai",
|
|
56914
|
+
Nvidia: "nvidia",
|
|
56915
|
+
Jina: "jina",
|
|
56916
|
+
Togetherai: "togetherai",
|
|
56917
|
+
Elevenlabs: "elevenlabs",
|
|
56918
|
+
Litellm: "litellm",
|
|
56919
|
+
Openailike: "openailike",
|
|
56920
|
+
Cerebras: "cerebras"
|
|
56921
|
+
};
|
|
56873
56922
|
SearchType$inboundSchema = nativeEnumType(SearchType);
|
|
56874
56923
|
SearchType$outboundSchema = SearchType$inboundSchema;
|
|
56875
56924
|
((SearchType$) => {
|
|
@@ -57416,6 +57465,94 @@ var init_searchknowledge = __esm(() => {
|
|
|
57416
57465
|
SearchOptions$.inboundSchema = SearchOptions$inboundSchema;
|
|
57417
57466
|
SearchOptions$.outboundSchema = SearchOptions$outboundSchema;
|
|
57418
57467
|
})(SearchOptions$ ||= {});
|
|
57468
|
+
SearchKnowledgeProvider$inboundSchema = nativeEnumType(SearchKnowledgeProvider);
|
|
57469
|
+
SearchKnowledgeProvider$outboundSchema = SearchKnowledgeProvider$inboundSchema;
|
|
57470
|
+
((SearchKnowledgeProvider$) => {
|
|
57471
|
+
SearchKnowledgeProvider$.inboundSchema = SearchKnowledgeProvider$inboundSchema;
|
|
57472
|
+
SearchKnowledgeProvider$.outboundSchema = SearchKnowledgeProvider$outboundSchema;
|
|
57473
|
+
})(SearchKnowledgeProvider$ ||= {});
|
|
57474
|
+
SearchKnowledgeModelType$inboundSchema = nativeEnumType(SearchKnowledgeModelType);
|
|
57475
|
+
SearchKnowledgeModelType$outboundSchema = SearchKnowledgeModelType$inboundSchema;
|
|
57476
|
+
((SearchKnowledgeModelType$) => {
|
|
57477
|
+
SearchKnowledgeModelType$.inboundSchema = SearchKnowledgeModelType$inboundSchema;
|
|
57478
|
+
SearchKnowledgeModelType$.outboundSchema = SearchKnowledgeModelType$outboundSchema;
|
|
57479
|
+
})(SearchKnowledgeModelType$ ||= {});
|
|
57480
|
+
SearchKnowledgeModelParameters$inboundSchema = objectType({
|
|
57481
|
+
threshold: numberType().optional()
|
|
57482
|
+
});
|
|
57483
|
+
SearchKnowledgeModelParameters$outboundSchema = objectType({
|
|
57484
|
+
threshold: numberType().optional()
|
|
57485
|
+
});
|
|
57486
|
+
((SearchKnowledgeModelParameters$) => {
|
|
57487
|
+
SearchKnowledgeModelParameters$.inboundSchema = SearchKnowledgeModelParameters$inboundSchema;
|
|
57488
|
+
SearchKnowledgeModelParameters$.outboundSchema = SearchKnowledgeModelParameters$outboundSchema;
|
|
57489
|
+
})(SearchKnowledgeModelParameters$ ||= {});
|
|
57490
|
+
SearchKnowledgeRerankConfig$inboundSchema = objectType({
|
|
57491
|
+
enabled: booleanType().optional(),
|
|
57492
|
+
provider: SearchKnowledgeProvider$inboundSchema.optional(),
|
|
57493
|
+
top_k: numberType().int().optional(),
|
|
57494
|
+
model: stringType().optional(),
|
|
57495
|
+
model_db_id: stringType().optional(),
|
|
57496
|
+
model_type: SearchKnowledgeModelType$inboundSchema.optional(),
|
|
57497
|
+
model_parameters: lazyType(() => SearchKnowledgeModelParameters$inboundSchema).optional()
|
|
57498
|
+
}).transform((v2) => {
|
|
57499
|
+
return remap(v2, {
|
|
57500
|
+
top_k: "topK",
|
|
57501
|
+
model_db_id: "modelDbId",
|
|
57502
|
+
model_type: "modelType",
|
|
57503
|
+
model_parameters: "modelParameters"
|
|
57504
|
+
});
|
|
57505
|
+
});
|
|
57506
|
+
SearchKnowledgeRerankConfig$outboundSchema = objectType({
|
|
57507
|
+
enabled: booleanType().optional(),
|
|
57508
|
+
provider: SearchKnowledgeProvider$outboundSchema.optional(),
|
|
57509
|
+
topK: numberType().int().optional(),
|
|
57510
|
+
model: stringType().optional(),
|
|
57511
|
+
modelDbId: stringType().optional(),
|
|
57512
|
+
modelType: SearchKnowledgeModelType$outboundSchema.optional(),
|
|
57513
|
+
modelParameters: lazyType(() => SearchKnowledgeModelParameters$outboundSchema).optional()
|
|
57514
|
+
}).transform((v2) => {
|
|
57515
|
+
return remap(v2, {
|
|
57516
|
+
topK: "top_k",
|
|
57517
|
+
modelDbId: "model_db_id",
|
|
57518
|
+
modelType: "model_type",
|
|
57519
|
+
modelParameters: "model_parameters"
|
|
57520
|
+
});
|
|
57521
|
+
});
|
|
57522
|
+
((SearchKnowledgeRerankConfig$) => {
|
|
57523
|
+
SearchKnowledgeRerankConfig$.inboundSchema = SearchKnowledgeRerankConfig$inboundSchema;
|
|
57524
|
+
SearchKnowledgeRerankConfig$.outboundSchema = SearchKnowledgeRerankConfig$outboundSchema;
|
|
57525
|
+
})(SearchKnowledgeRerankConfig$ ||= {});
|
|
57526
|
+
SearchKnowledgeKnowledgeProvider$inboundSchema = nativeEnumType(SearchKnowledgeKnowledgeProvider);
|
|
57527
|
+
SearchKnowledgeKnowledgeProvider$outboundSchema = SearchKnowledgeKnowledgeProvider$inboundSchema;
|
|
57528
|
+
((SearchKnowledgeKnowledgeProvider$) => {
|
|
57529
|
+
SearchKnowledgeKnowledgeProvider$.inboundSchema = SearchKnowledgeKnowledgeProvider$inboundSchema;
|
|
57530
|
+
SearchKnowledgeKnowledgeProvider$.outboundSchema = SearchKnowledgeKnowledgeProvider$outboundSchema;
|
|
57531
|
+
})(SearchKnowledgeKnowledgeProvider$ ||= {});
|
|
57532
|
+
SearchKnowledgeAgenticRagConfig$inboundSchema = objectType({
|
|
57533
|
+
model_db_id: stringType(),
|
|
57534
|
+
provider: SearchKnowledgeKnowledgeProvider$inboundSchema,
|
|
57535
|
+
integration_id: nullableType(stringType()).optional()
|
|
57536
|
+
}).transform((v2) => {
|
|
57537
|
+
return remap(v2, {
|
|
57538
|
+
model_db_id: "modelDbId",
|
|
57539
|
+
integration_id: "integrationId"
|
|
57540
|
+
});
|
|
57541
|
+
});
|
|
57542
|
+
SearchKnowledgeAgenticRagConfig$outboundSchema = objectType({
|
|
57543
|
+
modelDbId: stringType(),
|
|
57544
|
+
provider: SearchKnowledgeKnowledgeProvider$outboundSchema,
|
|
57545
|
+
integrationId: nullableType(stringType()).optional()
|
|
57546
|
+
}).transform((v2) => {
|
|
57547
|
+
return remap(v2, {
|
|
57548
|
+
modelDbId: "model_db_id",
|
|
57549
|
+
integrationId: "integration_id"
|
|
57550
|
+
});
|
|
57551
|
+
});
|
|
57552
|
+
((SearchKnowledgeAgenticRagConfig$) => {
|
|
57553
|
+
SearchKnowledgeAgenticRagConfig$.inboundSchema = SearchKnowledgeAgenticRagConfig$inboundSchema;
|
|
57554
|
+
SearchKnowledgeAgenticRagConfig$.outboundSchema = SearchKnowledgeAgenticRagConfig$outboundSchema;
|
|
57555
|
+
})(SearchKnowledgeAgenticRagConfig$ ||= {});
|
|
57419
57556
|
SearchKnowledgeRequestBody$inboundSchema = objectType({
|
|
57420
57557
|
query: stringType(),
|
|
57421
57558
|
top_k: numberType().int().optional(),
|
|
@@ -57436,13 +57573,17 @@ var init_searchknowledge = __esm(() => {
|
|
|
57436
57573
|
lazyType(() => SearchKnowledge1Exists$inboundSchema)
|
|
57437
57574
|
]))
|
|
57438
57575
|
]).optional(),
|
|
57439
|
-
search_options: lazyType(() => SearchOptions$inboundSchema).optional()
|
|
57576
|
+
search_options: lazyType(() => SearchOptions$inboundSchema).optional(),
|
|
57577
|
+
rerank_config: nullableType(lazyType(() => SearchKnowledgeRerankConfig$inboundSchema)).optional(),
|
|
57578
|
+
agentic_rag_config: lazyType(() => SearchKnowledgeAgenticRagConfig$inboundSchema).optional()
|
|
57440
57579
|
}).transform((v2) => {
|
|
57441
57580
|
return remap(v2, {
|
|
57442
57581
|
top_k: "topK",
|
|
57443
57582
|
search_type: "searchType",
|
|
57444
57583
|
filter_by: "filterBy",
|
|
57445
|
-
search_options: "searchOptions"
|
|
57584
|
+
search_options: "searchOptions",
|
|
57585
|
+
rerank_config: "rerankConfig",
|
|
57586
|
+
agentic_rag_config: "agenticRagConfig"
|
|
57446
57587
|
});
|
|
57447
57588
|
});
|
|
57448
57589
|
SearchKnowledgeRequestBody$outboundSchema = objectType({
|
|
@@ -57465,13 +57606,17 @@ var init_searchknowledge = __esm(() => {
|
|
|
57465
57606
|
lazyType(() => SearchKnowledge1Exists$outboundSchema)
|
|
57466
57607
|
]))
|
|
57467
57608
|
]).optional(),
|
|
57468
|
-
searchOptions: lazyType(() => SearchOptions$outboundSchema).optional()
|
|
57609
|
+
searchOptions: lazyType(() => SearchOptions$outboundSchema).optional(),
|
|
57610
|
+
rerankConfig: nullableType(lazyType(() => SearchKnowledgeRerankConfig$outboundSchema)).optional(),
|
|
57611
|
+
agenticRagConfig: lazyType(() => SearchKnowledgeAgenticRagConfig$outboundSchema).optional()
|
|
57469
57612
|
}).transform((v2) => {
|
|
57470
57613
|
return remap(v2, {
|
|
57471
57614
|
topK: "top_k",
|
|
57472
57615
|
searchType: "search_type",
|
|
57473
57616
|
filterBy: "filter_by",
|
|
57474
|
-
searchOptions: "search_options"
|
|
57617
|
+
searchOptions: "search_options",
|
|
57618
|
+
rerankConfig: "rerank_config",
|
|
57619
|
+
agenticRagConfig: "agentic_rag_config"
|
|
57475
57620
|
});
|
|
57476
57621
|
});
|
|
57477
57622
|
((SearchKnowledgeRequestBody$) => {
|
|
@@ -57728,7 +57873,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57728
57873
|
tags: arrayType(stringType()).optional(),
|
|
57729
57874
|
metadata: recordType(anyType()).optional(),
|
|
57730
57875
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
57731
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
57876
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
57732
57877
|
}).transform((v2) => {
|
|
57733
57878
|
return remap(v2, {
|
|
57734
57879
|
_id: "id",
|
|
@@ -57746,7 +57891,7 @@ var init_updatecontact = __esm(() => {
|
|
|
57746
57891
|
tags: arrayType(stringType()).optional(),
|
|
57747
57892
|
metadata: recordType(anyType()).optional(),
|
|
57748
57893
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
57749
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
57894
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
57750
57895
|
}).transform((v2) => {
|
|
57751
57896
|
return remap(v2, {
|
|
57752
57897
|
id: "_id",
|
|
@@ -58880,7 +59025,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58880
59025
|
created_by_id: stringType().optional(),
|
|
58881
59026
|
updated_by_id: stringType().optional(),
|
|
58882
59027
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
58883
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
59028
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
58884
59029
|
}).transform((v2) => {
|
|
58885
59030
|
return remap(v2, {
|
|
58886
59031
|
_id: "id",
|
|
@@ -58907,7 +59052,7 @@ var init_updatedatapoint = __esm(() => {
|
|
|
58907
59052
|
createdById: stringType().optional(),
|
|
58908
59053
|
updatedById: stringType().optional(),
|
|
58909
59054
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
58910
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
59055
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
58911
59056
|
}).transform((v2) => {
|
|
58912
59057
|
return remap(v2, {
|
|
58913
59058
|
id: "_id",
|
|
@@ -59008,7 +59153,7 @@ var init_updatedataset = __esm(() => {
|
|
|
59008
59153
|
parent_id: stringType().optional(),
|
|
59009
59154
|
version: stringType().optional(),
|
|
59010
59155
|
created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
|
|
59011
|
-
updated: stringType().datetime({ offset: true }).default("2025-08-
|
|
59156
|
+
updated: stringType().datetime({ offset: true }).default("2025-08-15T06:01:00.035Z").transform((v2) => new Date(v2))
|
|
59012
59157
|
}).transform((v2) => {
|
|
59013
59158
|
return remap(v2, {
|
|
59014
59159
|
_id: "id",
|
|
@@ -59031,7 +59176,7 @@ var init_updatedataset = __esm(() => {
|
|
|
59031
59176
|
parentId: stringType().optional(),
|
|
59032
59177
|
version: stringType().optional(),
|
|
59033
59178
|
created: dateType().transform((v2) => v2.toISOString()).optional(),
|
|
59034
|
-
updated: dateType().default(() => new Date("2025-08-
|
|
59179
|
+
updated: dateType().default(() => new Date("2025-08-15T06:01:00.035Z")).transform((v2) => v2.toISOString())
|
|
59035
59180
|
}).transform((v2) => {
|
|
59036
59181
|
return remap(v2, {
|
|
59037
59182
|
id: "_id",
|
|
@@ -59112,7 +59257,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
59112
59257
|
UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
|
|
59113
59258
|
})(UpdateDatasourceStatus$ ||= {});
|
|
59114
59259
|
UpdateDatasourceResponseBody$inboundSchema = objectType({
|
|
59115
|
-
_id: stringType().default("
|
|
59260
|
+
_id: stringType().default("01K2P52NH068DNRNQ5D3K90Z9E"),
|
|
59116
59261
|
display_name: stringType(),
|
|
59117
59262
|
description: stringType().optional(),
|
|
59118
59263
|
status: UpdateDatasourceStatus$inboundSchema,
|
|
@@ -59135,7 +59280,7 @@ var init_updatedatasource = __esm(() => {
|
|
|
59135
59280
|
});
|
|
59136
59281
|
});
|
|
59137
59282
|
UpdateDatasourceResponseBody$outboundSchema = objectType({
|
|
59138
|
-
id: stringType().default("
|
|
59283
|
+
id: stringType().default("01K2P52NH068DNRNQ5D3K90Z9E"),
|
|
59139
59284
|
displayName: stringType(),
|
|
59140
59285
|
description: stringType().optional(),
|
|
59141
59286
|
status: UpdateDatasourceStatus$outboundSchema,
|
|
@@ -59841,8 +59986,8 @@ var init_updateeval = __esm(() => {
|
|
|
59841
59986
|
UpdateEvalResponseBodyPython$inboundSchema = objectType({
|
|
59842
59987
|
_id: stringType(),
|
|
59843
59988
|
description: stringType(),
|
|
59844
|
-
created: stringType().default("2025-08-
|
|
59845
|
-
updated: stringType().default("2025-08-
|
|
59989
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
59990
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
59846
59991
|
guardrail_config: unionType([
|
|
59847
59992
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
59848
59993
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
|
|
@@ -59859,8 +60004,8 @@ var init_updateeval = __esm(() => {
|
|
|
59859
60004
|
UpdateEvalResponseBodyPython$outboundSchema = objectType({
|
|
59860
60005
|
id: stringType(),
|
|
59861
60006
|
description: stringType(),
|
|
59862
|
-
created: stringType().default("2025-08-
|
|
59863
|
-
updated: stringType().default("2025-08-
|
|
60007
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60008
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
59864
60009
|
guardrailConfig: unionType([
|
|
59865
60010
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
|
|
59866
60011
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
|
|
@@ -59953,8 +60098,8 @@ var init_updateeval = __esm(() => {
|
|
|
59953
60098
|
UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
|
|
59954
60099
|
_id: stringType(),
|
|
59955
60100
|
description: stringType(),
|
|
59956
|
-
created: stringType().default("2025-08-
|
|
59957
|
-
updated: stringType().default("2025-08-
|
|
60101
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60102
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
59958
60103
|
guardrail_config: unionType([
|
|
59959
60104
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
59960
60105
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
|
|
@@ -59974,8 +60119,8 @@ var init_updateeval = __esm(() => {
|
|
|
59974
60119
|
UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
|
|
59975
60120
|
id: stringType(),
|
|
59976
60121
|
description: stringType(),
|
|
59977
|
-
created: stringType().default("2025-08-
|
|
59978
|
-
updated: stringType().default("2025-08-
|
|
60122
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60123
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
59979
60124
|
guardrailConfig: unionType([
|
|
59980
60125
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
|
|
59981
60126
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
|
|
@@ -60065,8 +60210,8 @@ var init_updateeval = __esm(() => {
|
|
|
60065
60210
|
UpdateEvalResponseBodyJSON$inboundSchema = objectType({
|
|
60066
60211
|
_id: stringType(),
|
|
60067
60212
|
description: stringType(),
|
|
60068
|
-
created: stringType().default("2025-08-
|
|
60069
|
-
updated: stringType().default("2025-08-
|
|
60213
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60214
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60070
60215
|
guardrail_config: unionType([
|
|
60071
60216
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
60072
60217
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
|
|
@@ -60083,8 +60228,8 @@ var init_updateeval = __esm(() => {
|
|
|
60083
60228
|
UpdateEvalResponseBodyJSON$outboundSchema = objectType({
|
|
60084
60229
|
id: stringType(),
|
|
60085
60230
|
description: stringType(),
|
|
60086
|
-
created: stringType().default("2025-08-
|
|
60087
|
-
updated: stringType().default("2025-08-
|
|
60231
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60232
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60088
60233
|
guardrailConfig: unionType([
|
|
60089
60234
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
|
|
60090
60235
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
|
|
@@ -60171,8 +60316,8 @@ var init_updateeval = __esm(() => {
|
|
|
60171
60316
|
UpdateEvalResponseBodyLLM$inboundSchema = objectType({
|
|
60172
60317
|
_id: stringType(),
|
|
60173
60318
|
description: stringType(),
|
|
60174
|
-
created: stringType().default("2025-08-
|
|
60175
|
-
updated: stringType().default("2025-08-
|
|
60319
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60320
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60176
60321
|
guardrail_config: unionType([
|
|
60177
60322
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
60178
60323
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
|
|
@@ -60190,8 +60335,8 @@ var init_updateeval = __esm(() => {
|
|
|
60190
60335
|
UpdateEvalResponseBodyLLM$outboundSchema = objectType({
|
|
60191
60336
|
id: stringType(),
|
|
60192
60337
|
description: stringType(),
|
|
60193
|
-
created: stringType().default("2025-08-
|
|
60194
|
-
updated: stringType().default("2025-08-
|
|
60338
|
+
created: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60339
|
+
updated: stringType().default("2025-08-15T06:01:02.313Z"),
|
|
60195
60340
|
guardrailConfig: unionType([
|
|
60196
60341
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
|
|
60197
60342
|
lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
|
|
@@ -76424,7 +76569,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
|
|
|
76424
76569
|
function createMCPServer(deps) {
|
|
76425
76570
|
const server = new McpServer({
|
|
76426
76571
|
name: "Orq",
|
|
76427
|
-
version: "3.11.0-rc.
|
|
76572
|
+
version: "3.11.0-rc.14"
|
|
76428
76573
|
});
|
|
76429
76574
|
const client = new OrqCore({
|
|
76430
76575
|
apiKey: deps.apiKey,
|
|
@@ -77832,7 +77977,7 @@ var routes = rn({
|
|
|
77832
77977
|
var app = Ve(routes, {
|
|
77833
77978
|
name: "mcp",
|
|
77834
77979
|
versionInfo: {
|
|
77835
|
-
currentVersion: "3.11.0-rc.
|
|
77980
|
+
currentVersion: "3.11.0-rc.14"
|
|
77836
77981
|
}
|
|
77837
77982
|
});
|
|
77838
77983
|
_t(app, process3.argv.slice(2), buildContext(process3));
|
|
@@ -77840,5 +77985,5 @@ export {
|
|
|
77840
77985
|
app
|
|
77841
77986
|
};
|
|
77842
77987
|
|
|
77843
|
-
//# debugId=
|
|
77988
|
+
//# debugId=076D2192C95F993664756E2164756E21
|
|
77844
77989
|
//# sourceMappingURL=mcp-server.js.map
|