@orq-ai/node 3.9.20 → 3.9.22

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.
Files changed (100) hide show
  1. package/bin/mcp-server.js +112 -130
  2. package/bin/mcp-server.js.map +30 -30
  3. package/examples/package-lock.json +1 -1
  4. package/jsr.json +1 -1
  5. package/lib/config.d.ts +2 -2
  6. package/lib/config.js +2 -2
  7. package/mcp-server/mcp-server.js +1 -1
  8. package/mcp-server/server.js +1 -1
  9. package/models/components/deployments.d.ts +2 -23
  10. package/models/components/deployments.d.ts.map +1 -1
  11. package/models/components/deployments.js +10 -35
  12. package/models/components/deployments.js.map +1 -1
  13. package/models/operations/createcontact.js +2 -2
  14. package/models/operations/createdataset.js +2 -2
  15. package/models/operations/createdatasetitem.js +2 -2
  16. package/models/operations/createdatasource.js +2 -2
  17. package/models/operations/createeval.js +16 -16
  18. package/models/operations/deploymentgetconfig.d.ts +2 -23
  19. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  20. package/models/operations/deploymentgetconfig.js +13 -37
  21. package/models/operations/deploymentgetconfig.js.map +1 -1
  22. package/models/operations/deploymentstream.d.ts +2 -23
  23. package/models/operations/deploymentstream.d.ts.map +1 -1
  24. package/models/operations/deploymentstream.js +12 -35
  25. package/models/operations/deploymentstream.js.map +1 -1
  26. package/models/operations/fileget.js +2 -2
  27. package/models/operations/filelist.js +2 -2
  28. package/models/operations/fileupload.js +2 -2
  29. package/models/operations/getevals.js +28 -28
  30. package/models/operations/listcontacts.js +2 -2
  31. package/models/operations/listdatasetdatapoints.js +2 -2
  32. package/models/operations/listdatasets.js +2 -2
  33. package/models/operations/listdatasources.js +2 -2
  34. package/models/operations/retrievecontact.js +2 -2
  35. package/models/operations/retrievedatapoint.js +2 -2
  36. package/models/operations/retrievedataset.js +2 -2
  37. package/models/operations/retrievedatasource.js +2 -2
  38. package/models/operations/updatecontact.js +2 -2
  39. package/models/operations/updatedatapoint.js +2 -2
  40. package/models/operations/updatedataset.js +2 -2
  41. package/models/operations/updatedatasource.js +2 -2
  42. package/models/operations/updateeval.js +16 -16
  43. package/package.json +1 -1
  44. package/packages/orq-rc/examples/package-lock.json +1 -1
  45. package/packages/orq-rc/jsr.json +1 -1
  46. package/packages/orq-rc/package-lock.json +2 -2
  47. package/packages/orq-rc/package.json +1 -1
  48. package/packages/orq-rc/src/lib/config.ts +3 -3
  49. package/packages/orq-rc/src/mcp-server/mcp-server.ts +1 -1
  50. package/packages/orq-rc/src/mcp-server/server.ts +1 -1
  51. package/packages/orq-rc/src/models/operations/createcontact.ts +2 -2
  52. package/packages/orq-rc/src/models/operations/createdataset.ts +2 -2
  53. package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2 -2
  54. package/packages/orq-rc/src/models/operations/createdatasource.ts +2 -2
  55. package/packages/orq-rc/src/models/operations/createeval.ts +16 -16
  56. package/packages/orq-rc/src/models/operations/fileget.ts +2 -2
  57. package/packages/orq-rc/src/models/operations/filelist.ts +2 -2
  58. package/packages/orq-rc/src/models/operations/fileupload.ts +2 -2
  59. package/packages/orq-rc/src/models/operations/getevals.ts +28 -28
  60. package/packages/orq-rc/src/models/operations/listcontacts.ts +2 -2
  61. package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +2 -2
  62. package/packages/orq-rc/src/models/operations/listdatasets.ts +2 -2
  63. package/packages/orq-rc/src/models/operations/listdatasources.ts +2 -2
  64. package/packages/orq-rc/src/models/operations/retrievecontact.ts +2 -2
  65. package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +2 -2
  66. package/packages/orq-rc/src/models/operations/retrievedataset.ts +2 -2
  67. package/packages/orq-rc/src/models/operations/retrievedatasource.ts +2 -2
  68. package/packages/orq-rc/src/models/operations/updatecontact.ts +2 -2
  69. package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2 -2
  70. package/packages/orq-rc/src/models/operations/updatedataset.ts +2 -2
  71. package/packages/orq-rc/src/models/operations/updatedatasource.ts +2 -2
  72. package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
  73. package/src/lib/config.ts +2 -2
  74. package/src/mcp-server/mcp-server.ts +1 -1
  75. package/src/mcp-server/server.ts +1 -1
  76. package/src/models/components/deployments.ts +4 -47
  77. package/src/models/operations/createcontact.ts +2 -2
  78. package/src/models/operations/createdataset.ts +2 -2
  79. package/src/models/operations/createdatasetitem.ts +2 -2
  80. package/src/models/operations/createdatasource.ts +2 -2
  81. package/src/models/operations/createeval.ts +16 -16
  82. package/src/models/operations/deploymentgetconfig.ts +4 -47
  83. package/src/models/operations/deploymentstream.ts +4 -54
  84. package/src/models/operations/fileget.ts +2 -2
  85. package/src/models/operations/filelist.ts +2 -2
  86. package/src/models/operations/fileupload.ts +2 -2
  87. package/src/models/operations/getevals.ts +28 -28
  88. package/src/models/operations/listcontacts.ts +2 -2
  89. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  90. package/src/models/operations/listdatasets.ts +2 -2
  91. package/src/models/operations/listdatasources.ts +2 -2
  92. package/src/models/operations/retrievecontact.ts +2 -2
  93. package/src/models/operations/retrievedatapoint.ts +2 -2
  94. package/src/models/operations/retrievedataset.ts +2 -2
  95. package/src/models/operations/retrievedatasource.ts +2 -2
  96. package/src/models/operations/updatecontact.ts +2 -2
  97. package/src/models/operations/updatedatapoint.ts +2 -2
  98. package/src/models/operations/updatedataset.ts +2 -2
  99. package/src/models/operations/updatedatasource.ts +2 -2
  100. package/src/models/operations/updateeval.ts +16 -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.9.20",
34209
+ sdkVersion: "3.9.22",
34210
34210
  genVersion: "2.664.0",
34211
- userAgent: "speakeasy-sdk/typescript 3.9.20 2.664.0 2.0 @orq-ai/node"
34211
+ userAgent: "speakeasy-sdk/typescript 3.9.22 2.664.0 2.0 @orq-ai/node"
34212
34212
  };
34213
34213
  });
34214
34214
 
@@ -35881,7 +35881,7 @@ var init_createcontact = __esm(() => {
35881
35881
  tags: arrayType(stringType()).optional(),
35882
35882
  metadata: recordType(anyType()).optional(),
35883
35883
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
35884
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
35884
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
35885
35885
  }).transform((v2) => {
35886
35886
  return remap(v2, {
35887
35887
  _id: "id",
@@ -35901,7 +35901,7 @@ var init_createcontact = __esm(() => {
35901
35901
  tags: arrayType(stringType()).optional(),
35902
35902
  metadata: recordType(anyType()).optional(),
35903
35903
  created: dateType().transform((v2) => v2.toISOString()).optional(),
35904
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
35904
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
35905
35905
  }).transform((v2) => {
35906
35906
  return remap(v2, {
35907
35907
  id: "_id",
@@ -35973,7 +35973,7 @@ var init_createdataset = __esm(() => {
35973
35973
  updated_by_id: stringType().optional(),
35974
35974
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
35975
35975
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
35976
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
35976
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
35977
35977
  }).transform((v2) => {
35978
35978
  return remap(v2, {
35979
35979
  _id: "id",
@@ -35993,7 +35993,7 @@ var init_createdataset = __esm(() => {
35993
35993
  updatedById: stringType().optional(),
35994
35994
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
35995
35995
  created: dateType().transform((v2) => v2.toISOString()).optional(),
35996
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
35996
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
35997
35997
  }).transform((v2) => {
35998
35998
  return remap(v2, {
35999
35999
  id: "_id",
@@ -37125,7 +37125,7 @@ var init_createdatasetitem = __esm(() => {
37125
37125
  created_by_id: stringType().optional(),
37126
37126
  updated_by_id: stringType().optional(),
37127
37127
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37128
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
37128
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
37129
37129
  }).transform((v2) => {
37130
37130
  return remap(v2, {
37131
37131
  _id: "id",
@@ -37152,7 +37152,7 @@ var init_createdatasetitem = __esm(() => {
37152
37152
  createdById: stringType().optional(),
37153
37153
  updatedById: stringType().optional(),
37154
37154
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37155
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
37155
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
37156
37156
  }).transform((v2) => {
37157
37157
  return remap(v2, {
37158
37158
  id: "_id",
@@ -37374,7 +37374,7 @@ var init_createdatasource = __esm(() => {
37374
37374
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37375
37375
  })(CreateDatasourceStatus$ ||= {});
37376
37376
  CreateDatasourceResponseBody$inboundSchema = objectType({
37377
- _id: stringType().default("01K0Z0BD15C59H7RFG63D8XQ2B"),
37377
+ _id: stringType().default("01K10GD6X70WERK18YKYE1A86X"),
37378
37378
  display_name: stringType(),
37379
37379
  description: stringType().optional(),
37380
37380
  status: CreateDatasourceStatus$inboundSchema,
@@ -37397,7 +37397,7 @@ var init_createdatasource = __esm(() => {
37397
37397
  });
37398
37398
  });
37399
37399
  CreateDatasourceResponseBody$outboundSchema = objectType({
37400
- id: stringType().default("01K0Z0BD15C59H7RFG63D8XQ2B"),
37400
+ id: stringType().default("01K10GD6X70WERK18YKYE1A86X"),
37401
37401
  displayName: stringType(),
37402
37402
  description: stringType().optional(),
37403
37403
  status: CreateDatasourceStatus$outboundSchema,
@@ -38073,8 +38073,8 @@ var init_createeval = __esm(() => {
38073
38073
  ResponseBodyPython$inboundSchema = objectType({
38074
38074
  _id: stringType(),
38075
38075
  description: stringType(),
38076
- created: stringType().default("2025-07-24T20:00:12.253Z"),
38077
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
38076
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
38077
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
38078
38078
  guardrail_config: unionType([
38079
38079
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
38080
38080
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -38091,8 +38091,8 @@ var init_createeval = __esm(() => {
38091
38091
  ResponseBodyPython$outboundSchema = objectType({
38092
38092
  id: stringType(),
38093
38093
  description: stringType(),
38094
- created: stringType().default("2025-07-24T20:00:12.253Z"),
38095
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
38094
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
38095
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
38096
38096
  guardrailConfig: unionType([
38097
38097
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
38098
38098
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -38185,8 +38185,8 @@ var init_createeval = __esm(() => {
38185
38185
  ResponseBodyHTTP$inboundSchema = objectType({
38186
38186
  _id: stringType(),
38187
38187
  description: stringType(),
38188
- created: stringType().default("2025-07-24T20:00:12.253Z"),
38189
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
38188
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
38189
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
38190
38190
  guardrail_config: unionType([
38191
38191
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
38192
38192
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -38206,8 +38206,8 @@ var init_createeval = __esm(() => {
38206
38206
  ResponseBodyHTTP$outboundSchema = objectType({
38207
38207
  id: stringType(),
38208
38208
  description: stringType(),
38209
- created: stringType().default("2025-07-24T20:00:12.253Z"),
38210
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
38209
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
38210
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
38211
38211
  guardrailConfig: unionType([
38212
38212
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
38213
38213
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -38297,8 +38297,8 @@ var init_createeval = __esm(() => {
38297
38297
  ResponseBodyJSON$inboundSchema = objectType({
38298
38298
  _id: stringType(),
38299
38299
  description: stringType(),
38300
- created: stringType().default("2025-07-24T20:00:12.253Z"),
38301
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
38300
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
38301
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
38302
38302
  guardrail_config: unionType([
38303
38303
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
38304
38304
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -38315,8 +38315,8 @@ var init_createeval = __esm(() => {
38315
38315
  ResponseBodyJSON$outboundSchema = objectType({
38316
38316
  id: stringType(),
38317
38317
  description: stringType(),
38318
- created: stringType().default("2025-07-24T20:00:12.253Z"),
38319
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
38318
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
38319
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
38320
38320
  guardrailConfig: unionType([
38321
38321
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
38322
38322
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -38403,8 +38403,8 @@ var init_createeval = __esm(() => {
38403
38403
  ResponseBodyLLM$inboundSchema = objectType({
38404
38404
  _id: stringType(),
38405
38405
  description: stringType(),
38406
- created: stringType().default("2025-07-24T20:00:12.253Z"),
38407
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
38406
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
38407
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
38408
38408
  guardrail_config: unionType([
38409
38409
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
38410
38410
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -38422,8 +38422,8 @@ var init_createeval = __esm(() => {
38422
38422
  ResponseBodyLLM$outboundSchema = objectType({
38423
38423
  id: stringType(),
38424
38424
  description: stringType(),
38425
- created: stringType().default("2025-07-24T20:00:12.253Z"),
38426
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
38425
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
38426
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
38427
38427
  guardrailConfig: unionType([
38428
38428
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
38429
38429
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -41315,7 +41315,7 @@ var init_deploymentcreatemetric = __esm(() => {
41315
41315
  });
41316
41316
 
41317
41317
  // src/models/operations/deploymentgetconfig.ts
41318
- var DeploymentGetConfigPrefixMessagesDeploymentsRequestRole, DeploymentGetConfig2DeploymentsRequestRequestBodyType, DeploymentGetConfig2DeploymentsRequestType, DeploymentGetConfigPrefixMessagesDeploymentsRole, PrefixMessagesType, DeploymentGetConfigPrefixMessagesRole, DeploymentGetConfig2DeploymentsType, DeploymentGetConfig2Type, Format, TwoType, Detail, Type, PrefixMessagesRole, Role, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type, DeploymentGetConfigMessagesDeploymentsRequestRole, MessagesType, DeploymentGetConfigMessagesDeploymentsRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType, TwoFormat, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type, TwoDetail, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType, DeploymentGetConfigMessagesRole, MessagesRole, DeploymentGetConfigType, DeploymentGetConfigRole, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType, DeploymentGetConfig2DeploymentsResponse200Type, DeploymentGetConfig2DeploymentsResponseType, DeploymentGetConfigDeploymentsResponseType, DeploymentGetConfigFormat, DeploymentGetConfigResponseFormatType, DeploymentGetConfigResponseFormatDeploymentsType, DeploymentGetConfigPhotoRealVersion, DeploymentGetConfigEncodingFormat, DeploymentGetConfigReasoningEffort, DeploymentGetConfigDeploymentsType, Inputs$inboundSchema, Inputs$outboundSchema, Inputs$, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$, DeploymentGetConfigPrefixMessagesContent$inboundSchema, DeploymentGetConfigPrefixMessagesContent$outboundSchema, DeploymentGetConfigPrefixMessagesContent$, ToolMessage$inboundSchema, ToolMessage$outboundSchema, ToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$, RefusalContentPart$inboundSchema, RefusalContentPart$outboundSchema, RefusalContentPart$, DeploymentGetConfig2DeploymentsRequestType$inboundSchema, DeploymentGetConfig2DeploymentsRequestType$outboundSchema, DeploymentGetConfig2DeploymentsRequestType$, TextContentPart$inboundSchema, TextContentPart$outboundSchema, TextContentPart$, Content2$inboundSchema, Content2$outboundSchema, Content2$, PrefixMessagesContent$inboundSchema, PrefixMessagesContent$outboundSchema, PrefixMessagesContent$, DeploymentGetConfigPrefixMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$, Audio$inboundSchema, Audio$outboundSchema, Audio$, PrefixMessagesType$inboundSchema, PrefixMessagesType$outboundSchema, PrefixMessagesType$, FunctionT$inboundSchema, FunctionT$outboundSchema, FunctionT$, ToolCalls$inboundSchema, ToolCalls$outboundSchema, ToolCalls$, AssistantMessage$inboundSchema, AssistantMessage$outboundSchema, AssistantMessage$, DeploymentGetConfigPrefixMessagesRole$inboundSchema, DeploymentGetConfigPrefixMessagesRole$outboundSchema, DeploymentGetConfigPrefixMessagesRole$, DeploymentGetConfig2DeploymentsType$inboundSchema, DeploymentGetConfig2DeploymentsType$outboundSchema, DeploymentGetConfig2DeploymentsType$, FileT$inboundSchema, FileT$outboundSchema, FileT$, Four$inboundSchema, Four$outboundSchema, Four$, DeploymentGetConfig2Type$inboundSchema, DeploymentGetConfig2Type$outboundSchema, DeploymentGetConfig2Type$, Format$inboundSchema, Format$outboundSchema, Format$, InputAudio$inboundSchema, InputAudio$outboundSchema, InputAudio$, Three$inboundSchema, Three$outboundSchema, Three$, TwoType$inboundSchema, TwoType$outboundSchema, TwoType$, Detail$inboundSchema, Detail$outboundSchema, Detail$, ImageUrl$inboundSchema, ImageUrl$outboundSchema, ImageUrl$, Two2$inboundSchema, Two2$outboundSchema, Two2$, Type$inboundSchema, Type$outboundSchema, Type$, One$inboundSchema, One$outboundSchema, One$, Two$inboundSchema, Two$outboundSchema, Two$, Content$inboundSchema, Content$outboundSchema, Content$, UserMessage$inboundSchema, UserMessage$outboundSchema, UserMessage$, PrefixMessagesRole$inboundSchema, PrefixMessagesRole$outboundSchema, PrefixMessagesRole$, SystemMessage$inboundSchema, SystemMessage$outboundSchema, SystemMessage$, Role$inboundSchema, Role$outboundSchema, Role$, DeveloperMessage$inboundSchema, DeveloperMessage$outboundSchema, DeveloperMessage$, PrefixMessages$inboundSchema, PrefixMessages$outboundSchema, PrefixMessages$, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$, DeploymentGetConfigMessagesDeploymentsContent$inboundSchema, DeploymentGetConfigMessagesDeploymentsContent$outboundSchema, DeploymentGetConfigMessagesDeploymentsContent$, MessagesToolMessage$inboundSchema, MessagesToolMessage$outboundSchema, MessagesToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$, TwoRefusalContentPart$inboundSchema, TwoRefusalContentPart$outboundSchema, TwoRefusalContentPart$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$, TwoTextContentPart$inboundSchema, TwoTextContentPart$outboundSchema, TwoTextContentPart$, DeploymentGetConfigContentDeployments2$inboundSchema, DeploymentGetConfigContentDeployments2$outboundSchema, DeploymentGetConfigContentDeployments2$, DeploymentGetConfigMessagesContent$inboundSchema, DeploymentGetConfigMessagesContent$outboundSchema, DeploymentGetConfigMessagesContent$, DeploymentGetConfigMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$, MessagesAudio$inboundSchema, MessagesAudio$outboundSchema, MessagesAudio$, MessagesType$inboundSchema, MessagesType$outboundSchema, MessagesType$, MessagesFunction$inboundSchema, MessagesFunction$outboundSchema, MessagesFunction$, MessagesToolCalls$inboundSchema, MessagesToolCalls$outboundSchema, MessagesToolCalls$, MessagesAssistantMessage$inboundSchema, MessagesAssistantMessage$outboundSchema, MessagesAssistantMessage$, DeploymentGetConfigMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRole$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$, TwoFile$inboundSchema, TwoFile$outboundSchema, TwoFile$, Two4$inboundSchema, Two4$outboundSchema, Two4$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$, TwoFormat$inboundSchema, TwoFormat$outboundSchema, TwoFormat$, TwoInputAudio$inboundSchema, TwoInputAudio$outboundSchema, TwoInputAudio$, Two3$inboundSchema, Two3$outboundSchema, Two3$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$, TwoDetail$inboundSchema, TwoDetail$outboundSchema, TwoDetail$, TwoImageUrl$inboundSchema, TwoImageUrl$outboundSchema, TwoImageUrl$, DeploymentGetConfig22$inboundSchema, DeploymentGetConfig22$outboundSchema, DeploymentGetConfig22$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$, Two1$inboundSchema, Two1$outboundSchema, Two1$, DeploymentGetConfigContent2$inboundSchema, DeploymentGetConfigContent2$outboundSchema, DeploymentGetConfigContent2$, MessagesContent$inboundSchema, MessagesContent$outboundSchema, MessagesContent$, MessagesUserMessage$inboundSchema, MessagesUserMessage$outboundSchema, MessagesUserMessage$, DeploymentGetConfigMessagesRole$inboundSchema, DeploymentGetConfigMessagesRole$outboundSchema, DeploymentGetConfigMessagesRole$, MessagesSystemMessage$inboundSchema, MessagesSystemMessage$outboundSchema, MessagesSystemMessage$, MessagesRole$inboundSchema, MessagesRole$outboundSchema, MessagesRole$, MessagesDeveloperMessage$inboundSchema, MessagesDeveloperMessage$outboundSchema, MessagesDeveloperMessage$, Messages$inboundSchema, Messages$outboundSchema, Messages$, Metadata$inboundSchema, Metadata$outboundSchema, Metadata$, Documents$inboundSchema, Documents$outboundSchema, Documents$, InvokeOptions$inboundSchema, InvokeOptions$outboundSchema, InvokeOptions$, Thread$inboundSchema, Thread$outboundSchema, Thread$, OrExists$inboundSchema, OrExists$outboundSchema, OrExists$, DeploymentGetConfigOrNin$inboundSchema, DeploymentGetConfigOrNin$outboundSchema, DeploymentGetConfigOrNin$, OrNin$inboundSchema, OrNin$outboundSchema, OrNin$, DeploymentGetConfigOrIn$inboundSchema, DeploymentGetConfigOrIn$outboundSchema, DeploymentGetConfigOrIn$, OrIn$inboundSchema, OrIn$outboundSchema, OrIn$, OrLte$inboundSchema, OrLte$outboundSchema, OrLte$, OrLt$inboundSchema, OrLt$outboundSchema, OrLt$, OrGte$inboundSchema, OrGte$outboundSchema, OrGte$, Or3$inboundSchema, Or3$outboundSchema, Or3$, DeploymentGetConfigOrNe$inboundSchema, DeploymentGetConfigOrNe$outboundSchema, DeploymentGetConfigOrNe$, OrNe$inboundSchema, OrNe$outboundSchema, OrNe$, DeploymentGetConfigOrEq$inboundSchema, DeploymentGetConfigOrEq$outboundSchema, DeploymentGetConfigOrEq$, OrEq$inboundSchema, OrEq$outboundSchema, OrEq$, KnowledgeFilterOr$inboundSchema, KnowledgeFilterOr$outboundSchema, KnowledgeFilterOr$, Or$inboundSchema, Or$outboundSchema, Or$, AndExists$inboundSchema, AndExists$outboundSchema, AndExists$, DeploymentGetConfigAndNin$inboundSchema, DeploymentGetConfigAndNin$outboundSchema, DeploymentGetConfigAndNin$, AndNin$inboundSchema, AndNin$outboundSchema, AndNin$, DeploymentGetConfigAndIn$inboundSchema, DeploymentGetConfigAndIn$outboundSchema, DeploymentGetConfigAndIn$, AndIn$inboundSchema, AndIn$outboundSchema, AndIn$, AndLte$inboundSchema, AndLte$outboundSchema, AndLte$, AndLt$inboundSchema, AndLt$outboundSchema, AndLt$, AndGte$inboundSchema, AndGte$outboundSchema, AndGte$, And3$inboundSchema, And3$outboundSchema, And3$, DeploymentGetConfigAndNe$inboundSchema, DeploymentGetConfigAndNe$outboundSchema, DeploymentGetConfigAndNe$, AndNe$inboundSchema, AndNe$outboundSchema, AndNe$, DeploymentGetConfigAndEq$inboundSchema, DeploymentGetConfigAndEq$outboundSchema, DeploymentGetConfigAndEq$, AndEq$inboundSchema, AndEq$outboundSchema, AndEq$, KnowledgeFilterAnd$inboundSchema, KnowledgeFilterAnd$outboundSchema, KnowledgeFilterAnd$, And$inboundSchema, And$outboundSchema, And$, Exists$inboundSchema, Exists$outboundSchema, Exists$, OneNin$inboundSchema, OneNin$outboundSchema, OneNin$, Nin$inboundSchema, Nin$outboundSchema, Nin$, OneIn$inboundSchema, OneIn$outboundSchema, OneIn$, In$inboundSchema, In$outboundSchema, In$, Lte$inboundSchema, Lte$outboundSchema, Lte$, Lt$inboundSchema, Lt$outboundSchema, Lt$, Gte$inboundSchema, Gte$outboundSchema, Gte$, One3$inboundSchema, One3$outboundSchema, One3$, OneNe$inboundSchema, OneNe$outboundSchema, OneNe$, Ne$inboundSchema, Ne$outboundSchema, Ne$, OneEq$inboundSchema, OneEq$outboundSchema, OneEq$, Eq$inboundSchema, Eq$outboundSchema, Eq$, KnowledgeFilter1$inboundSchema, KnowledgeFilter1$outboundSchema, KnowledgeFilter1$, KnowledgeFilter$inboundSchema, KnowledgeFilter$outboundSchema, KnowledgeFilter$, DeploymentGetConfigRequestBody$inboundSchema, DeploymentGetConfigRequestBody$outboundSchema, DeploymentGetConfigRequestBody$, DeploymentGetConfigType$inboundSchema, DeploymentGetConfigType$outboundSchema, DeploymentGetConfigType$, DeploymentGetConfigRole$inboundSchema, DeploymentGetConfigRole$outboundSchema, DeploymentGetConfigRole$, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$, DeploymentGetConfig2File$inboundSchema, DeploymentGetConfig2File$outboundSchema, DeploymentGetConfig2File$, DeploymentGetConfig23$inboundSchema, DeploymentGetConfig23$outboundSchema, DeploymentGetConfig23$, DeploymentGetConfig2DeploymentsResponse200Type$inboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$outboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$, DeploymentGetConfig2ImageUrl$inboundSchema, DeploymentGetConfig2ImageUrl$outboundSchema, DeploymentGetConfig2ImageUrl$, DeploymentGetConfig2Deployments2$inboundSchema, DeploymentGetConfig2Deployments2$outboundSchema, DeploymentGetConfig2Deployments2$, DeploymentGetConfig2DeploymentsResponseType$inboundSchema, DeploymentGetConfig2DeploymentsResponseType$outboundSchema, DeploymentGetConfig2DeploymentsResponseType$, DeploymentGetConfig21$inboundSchema, DeploymentGetConfig21$outboundSchema, DeploymentGetConfig21$, DeploymentGetConfigContentDeploymentsResponse2$inboundSchema, DeploymentGetConfigContentDeploymentsResponse2$outboundSchema, DeploymentGetConfigContentDeploymentsResponse2$, DeploymentGetConfigContent$inboundSchema, DeploymentGetConfigContent$outboundSchema, DeploymentGetConfigContent$, DeploymentGetConfigDeploymentsResponseType$inboundSchema, DeploymentGetConfigDeploymentsResponseType$outboundSchema, DeploymentGetConfigDeploymentsResponseType$, DeploymentGetConfigDeploymentsFunction$inboundSchema, DeploymentGetConfigDeploymentsFunction$outboundSchema, DeploymentGetConfigDeploymentsFunction$, DeploymentGetConfigToolCalls$inboundSchema, DeploymentGetConfigToolCalls$outboundSchema, DeploymentGetConfigToolCalls$, DeploymentGetConfigMessages$inboundSchema, DeploymentGetConfigMessages$outboundSchema, DeploymentGetConfigMessages$, DeploymentGetConfigFormat$inboundSchema, DeploymentGetConfigFormat$outboundSchema, DeploymentGetConfigFormat$, DeploymentGetConfigResponseFormatType$inboundSchema, DeploymentGetConfigResponseFormatType$outboundSchema, DeploymentGetConfigResponseFormatType$, DeploymentGetConfigResponseFormat2$inboundSchema, DeploymentGetConfigResponseFormat2$outboundSchema, DeploymentGetConfigResponseFormat2$, DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$, DeploymentGetConfigResponseFormatJsonSchema$inboundSchema, DeploymentGetConfigResponseFormatJsonSchema$outboundSchema, DeploymentGetConfigResponseFormatJsonSchema$, DeploymentGetConfigResponseFormat1$inboundSchema, DeploymentGetConfigResponseFormat1$outboundSchema, DeploymentGetConfigResponseFormat1$, DeploymentGetConfigResponseFormat$inboundSchema, DeploymentGetConfigResponseFormat$outboundSchema, DeploymentGetConfigResponseFormat$, DeploymentGetConfigPhotoRealVersion$inboundSchema, DeploymentGetConfigPhotoRealVersion$outboundSchema, DeploymentGetConfigPhotoRealVersion$, DeploymentGetConfigEncodingFormat$inboundSchema, DeploymentGetConfigEncodingFormat$outboundSchema, DeploymentGetConfigEncodingFormat$, DeploymentGetConfigReasoningEffort$inboundSchema, DeploymentGetConfigReasoningEffort$outboundSchema, DeploymentGetConfigReasoningEffort$, ParametersT$inboundSchema, ParametersT$outboundSchema, ParametersT$, DeploymentGetConfigDeploymentsType$inboundSchema, DeploymentGetConfigDeploymentsType$outboundSchema, DeploymentGetConfigDeploymentsType$, DeploymentGetConfigFunction$inboundSchema, DeploymentGetConfigFunction$outboundSchema, DeploymentGetConfigFunction$, Tools$inboundSchema, Tools$outboundSchema, Tools$, DeploymentGetConfigResponseBody$inboundSchema, DeploymentGetConfigResponseBody$outboundSchema, DeploymentGetConfigResponseBody$;
41318
+ var DeploymentGetConfigPrefixMessagesDeploymentsRequestRole, DeploymentGetConfig2DeploymentsRequestRequestBodyType, DeploymentGetConfig2DeploymentsRequestType, DeploymentGetConfigPrefixMessagesDeploymentsRole, PrefixMessagesType, DeploymentGetConfigPrefixMessagesRole, DeploymentGetConfig2DeploymentsType, DeploymentGetConfig2Type, Format, TwoType, Detail, Type, PrefixMessagesRole, Role, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type, DeploymentGetConfigMessagesDeploymentsRequestRole, MessagesType, DeploymentGetConfigMessagesDeploymentsRole, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType, TwoFormat, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type, TwoDetail, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType, DeploymentGetConfigMessagesRole, MessagesRole, DeploymentGetConfigType, DeploymentGetConfigRole, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType, DeploymentGetConfig2DeploymentsResponse200Type, DeploymentGetConfig2DeploymentsResponseType, DeploymentGetConfigDeploymentsResponseType, DeploymentGetConfigFormat, DeploymentGetConfigResponseFormatType, DeploymentGetConfigResponseFormatDeploymentsType, DeploymentGetConfigPhotoRealVersion, DeploymentGetConfigEncodingFormat, DeploymentGetConfigReasoningEffort, DeploymentGetConfigDeploymentsType, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$, DeploymentGetConfigPrefixMessagesContent$inboundSchema, DeploymentGetConfigPrefixMessagesContent$outboundSchema, DeploymentGetConfigPrefixMessagesContent$, ToolMessage$inboundSchema, ToolMessage$outboundSchema, ToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyType$, RefusalContentPart$inboundSchema, RefusalContentPart$outboundSchema, RefusalContentPart$, DeploymentGetConfig2DeploymentsRequestType$inboundSchema, DeploymentGetConfig2DeploymentsRequestType$outboundSchema, DeploymentGetConfig2DeploymentsRequestType$, TextContentPart$inboundSchema, TextContentPart$outboundSchema, TextContentPart$, Content2$inboundSchema, Content2$outboundSchema, Content2$, PrefixMessagesContent$inboundSchema, PrefixMessagesContent$outboundSchema, PrefixMessagesContent$, DeploymentGetConfigPrefixMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigPrefixMessagesDeploymentsRole$, Audio$inboundSchema, Audio$outboundSchema, Audio$, PrefixMessagesType$inboundSchema, PrefixMessagesType$outboundSchema, PrefixMessagesType$, FunctionT$inboundSchema, FunctionT$outboundSchema, FunctionT$, ToolCalls$inboundSchema, ToolCalls$outboundSchema, ToolCalls$, AssistantMessage$inboundSchema, AssistantMessage$outboundSchema, AssistantMessage$, DeploymentGetConfigPrefixMessagesRole$inboundSchema, DeploymentGetConfigPrefixMessagesRole$outboundSchema, DeploymentGetConfigPrefixMessagesRole$, DeploymentGetConfig2DeploymentsType$inboundSchema, DeploymentGetConfig2DeploymentsType$outboundSchema, DeploymentGetConfig2DeploymentsType$, FileT$inboundSchema, FileT$outboundSchema, FileT$, Four$inboundSchema, Four$outboundSchema, Four$, DeploymentGetConfig2Type$inboundSchema, DeploymentGetConfig2Type$outboundSchema, DeploymentGetConfig2Type$, Format$inboundSchema, Format$outboundSchema, Format$, InputAudio$inboundSchema, InputAudio$outboundSchema, InputAudio$, Three$inboundSchema, Three$outboundSchema, Three$, TwoType$inboundSchema, TwoType$outboundSchema, TwoType$, Detail$inboundSchema, Detail$outboundSchema, Detail$, ImageUrl$inboundSchema, ImageUrl$outboundSchema, ImageUrl$, Two2$inboundSchema, Two2$outboundSchema, Two2$, Type$inboundSchema, Type$outboundSchema, Type$, One$inboundSchema, One$outboundSchema, One$, Two$inboundSchema, Two$outboundSchema, Two$, Content$inboundSchema, Content$outboundSchema, Content$, UserMessage$inboundSchema, UserMessage$outboundSchema, UserMessage$, PrefixMessagesRole$inboundSchema, PrefixMessagesRole$outboundSchema, PrefixMessagesRole$, SystemMessage$inboundSchema, SystemMessage$outboundSchema, SystemMessage$, Role$inboundSchema, Role$outboundSchema, Role$, DeveloperMessage$inboundSchema, DeveloperMessage$outboundSchema, DeveloperMessage$, PrefixMessages$inboundSchema, PrefixMessages$outboundSchema, PrefixMessages$, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRequestBodyRole$, DeploymentGetConfigMessagesDeploymentsContent$inboundSchema, DeploymentGetConfigMessagesDeploymentsContent$outboundSchema, DeploymentGetConfigMessagesDeploymentsContent$, MessagesToolMessage$inboundSchema, MessagesToolMessage$outboundSchema, MessagesToolMessage$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4ContentType$, TwoRefusalContentPart$inboundSchema, TwoRefusalContentPart$outboundSchema, TwoRefusalContentPart$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages4Type$, TwoTextContentPart$inboundSchema, TwoTextContentPart$outboundSchema, TwoTextContentPart$, DeploymentGetConfigContentDeployments2$inboundSchema, DeploymentGetConfigContentDeployments2$outboundSchema, DeploymentGetConfigContentDeployments2$, DeploymentGetConfigMessagesContent$inboundSchema, DeploymentGetConfigMessagesContent$outboundSchema, DeploymentGetConfigMessagesContent$, DeploymentGetConfigMessagesDeploymentsRequestRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRequestRole$, MessagesAudio$inboundSchema, MessagesAudio$outboundSchema, MessagesAudio$, MessagesType$inboundSchema, MessagesType$outboundSchema, MessagesType$, MessagesFunction$inboundSchema, MessagesFunction$outboundSchema, MessagesFunction$, MessagesToolCalls$inboundSchema, MessagesToolCalls$outboundSchema, MessagesToolCalls$, MessagesAssistantMessage$inboundSchema, MessagesAssistantMessage$outboundSchema, MessagesAssistantMessage$, DeploymentGetConfigMessagesDeploymentsRole$inboundSchema, DeploymentGetConfigMessagesDeploymentsRole$outboundSchema, DeploymentGetConfigMessagesDeploymentsRole$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Content4Type$, TwoFile$inboundSchema, TwoFile$outboundSchema, TwoFile$, Two4$inboundSchema, Two4$outboundSchema, Two4$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3ContentType$, TwoFormat$inboundSchema, TwoFormat$outboundSchema, TwoFormat$, TwoInputAudio$inboundSchema, TwoInputAudio$outboundSchema, TwoInputAudio$, Two3$inboundSchema, Two3$outboundSchema, Two3$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessages3Type$, TwoDetail$inboundSchema, TwoDetail$outboundSchema, TwoDetail$, TwoImageUrl$inboundSchema, TwoImageUrl$outboundSchema, TwoImageUrl$, DeploymentGetConfig22$inboundSchema, DeploymentGetConfig22$outboundSchema, DeploymentGetConfig22$, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$inboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$outboundSchema, DeploymentGetConfig2DeploymentsRequestRequestBodyMessagesType$, Two1$inboundSchema, Two1$outboundSchema, Two1$, DeploymentGetConfigContent2$inboundSchema, DeploymentGetConfigContent2$outboundSchema, DeploymentGetConfigContent2$, MessagesContent$inboundSchema, MessagesContent$outboundSchema, MessagesContent$, MessagesUserMessage$inboundSchema, MessagesUserMessage$outboundSchema, MessagesUserMessage$, DeploymentGetConfigMessagesRole$inboundSchema, DeploymentGetConfigMessagesRole$outboundSchema, DeploymentGetConfigMessagesRole$, MessagesSystemMessage$inboundSchema, MessagesSystemMessage$outboundSchema, MessagesSystemMessage$, MessagesRole$inboundSchema, MessagesRole$outboundSchema, MessagesRole$, MessagesDeveloperMessage$inboundSchema, MessagesDeveloperMessage$outboundSchema, MessagesDeveloperMessage$, Messages$inboundSchema, Messages$outboundSchema, Messages$, Metadata$inboundSchema, Metadata$outboundSchema, Metadata$, Documents$inboundSchema, Documents$outboundSchema, Documents$, InvokeOptions$inboundSchema, InvokeOptions$outboundSchema, InvokeOptions$, Thread$inboundSchema, Thread$outboundSchema, Thread$, OrExists$inboundSchema, OrExists$outboundSchema, OrExists$, DeploymentGetConfigOrNin$inboundSchema, DeploymentGetConfigOrNin$outboundSchema, DeploymentGetConfigOrNin$, OrNin$inboundSchema, OrNin$outboundSchema, OrNin$, DeploymentGetConfigOrIn$inboundSchema, DeploymentGetConfigOrIn$outboundSchema, DeploymentGetConfigOrIn$, OrIn$inboundSchema, OrIn$outboundSchema, OrIn$, OrLte$inboundSchema, OrLte$outboundSchema, OrLte$, OrLt$inboundSchema, OrLt$outboundSchema, OrLt$, OrGte$inboundSchema, OrGte$outboundSchema, OrGte$, Or3$inboundSchema, Or3$outboundSchema, Or3$, DeploymentGetConfigOrNe$inboundSchema, DeploymentGetConfigOrNe$outboundSchema, DeploymentGetConfigOrNe$, OrNe$inboundSchema, OrNe$outboundSchema, OrNe$, DeploymentGetConfigOrEq$inboundSchema, DeploymentGetConfigOrEq$outboundSchema, DeploymentGetConfigOrEq$, OrEq$inboundSchema, OrEq$outboundSchema, OrEq$, KnowledgeFilterOr$inboundSchema, KnowledgeFilterOr$outboundSchema, KnowledgeFilterOr$, Or$inboundSchema, Or$outboundSchema, Or$, AndExists$inboundSchema, AndExists$outboundSchema, AndExists$, DeploymentGetConfigAndNin$inboundSchema, DeploymentGetConfigAndNin$outboundSchema, DeploymentGetConfigAndNin$, AndNin$inboundSchema, AndNin$outboundSchema, AndNin$, DeploymentGetConfigAndIn$inboundSchema, DeploymentGetConfigAndIn$outboundSchema, DeploymentGetConfigAndIn$, AndIn$inboundSchema, AndIn$outboundSchema, AndIn$, AndLte$inboundSchema, AndLte$outboundSchema, AndLte$, AndLt$inboundSchema, AndLt$outboundSchema, AndLt$, AndGte$inboundSchema, AndGte$outboundSchema, AndGte$, And3$inboundSchema, And3$outboundSchema, And3$, DeploymentGetConfigAndNe$inboundSchema, DeploymentGetConfigAndNe$outboundSchema, DeploymentGetConfigAndNe$, AndNe$inboundSchema, AndNe$outboundSchema, AndNe$, DeploymentGetConfigAndEq$inboundSchema, DeploymentGetConfigAndEq$outboundSchema, DeploymentGetConfigAndEq$, AndEq$inboundSchema, AndEq$outboundSchema, AndEq$, KnowledgeFilterAnd$inboundSchema, KnowledgeFilterAnd$outboundSchema, KnowledgeFilterAnd$, And$inboundSchema, And$outboundSchema, And$, Exists$inboundSchema, Exists$outboundSchema, Exists$, OneNin$inboundSchema, OneNin$outboundSchema, OneNin$, Nin$inboundSchema, Nin$outboundSchema, Nin$, OneIn$inboundSchema, OneIn$outboundSchema, OneIn$, In$inboundSchema, In$outboundSchema, In$, Lte$inboundSchema, Lte$outboundSchema, Lte$, Lt$inboundSchema, Lt$outboundSchema, Lt$, Gte$inboundSchema, Gte$outboundSchema, Gte$, One3$inboundSchema, One3$outboundSchema, One3$, OneNe$inboundSchema, OneNe$outboundSchema, OneNe$, Ne$inboundSchema, Ne$outboundSchema, Ne$, OneEq$inboundSchema, OneEq$outboundSchema, OneEq$, Eq$inboundSchema, Eq$outboundSchema, Eq$, KnowledgeFilter1$inboundSchema, KnowledgeFilter1$outboundSchema, KnowledgeFilter1$, KnowledgeFilter$inboundSchema, KnowledgeFilter$outboundSchema, KnowledgeFilter$, DeploymentGetConfigRequestBody$inboundSchema, DeploymentGetConfigRequestBody$outboundSchema, DeploymentGetConfigRequestBody$, DeploymentGetConfigType$inboundSchema, DeploymentGetConfigType$outboundSchema, DeploymentGetConfigType$, DeploymentGetConfigRole$inboundSchema, DeploymentGetConfigRole$outboundSchema, DeploymentGetConfigRole$, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$inboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$outboundSchema, DeploymentGetConfig2DeploymentsResponse200ApplicationJSONType$, DeploymentGetConfig2File$inboundSchema, DeploymentGetConfig2File$outboundSchema, DeploymentGetConfig2File$, DeploymentGetConfig23$inboundSchema, DeploymentGetConfig23$outboundSchema, DeploymentGetConfig23$, DeploymentGetConfig2DeploymentsResponse200Type$inboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$outboundSchema, DeploymentGetConfig2DeploymentsResponse200Type$, DeploymentGetConfig2ImageUrl$inboundSchema, DeploymentGetConfig2ImageUrl$outboundSchema, DeploymentGetConfig2ImageUrl$, DeploymentGetConfig2Deployments2$inboundSchema, DeploymentGetConfig2Deployments2$outboundSchema, DeploymentGetConfig2Deployments2$, DeploymentGetConfig2DeploymentsResponseType$inboundSchema, DeploymentGetConfig2DeploymentsResponseType$outboundSchema, DeploymentGetConfig2DeploymentsResponseType$, DeploymentGetConfig21$inboundSchema, DeploymentGetConfig21$outboundSchema, DeploymentGetConfig21$, DeploymentGetConfigContentDeploymentsResponse2$inboundSchema, DeploymentGetConfigContentDeploymentsResponse2$outboundSchema, DeploymentGetConfigContentDeploymentsResponse2$, DeploymentGetConfigContent$inboundSchema, DeploymentGetConfigContent$outboundSchema, DeploymentGetConfigContent$, DeploymentGetConfigDeploymentsResponseType$inboundSchema, DeploymentGetConfigDeploymentsResponseType$outboundSchema, DeploymentGetConfigDeploymentsResponseType$, DeploymentGetConfigDeploymentsFunction$inboundSchema, DeploymentGetConfigDeploymentsFunction$outboundSchema, DeploymentGetConfigDeploymentsFunction$, DeploymentGetConfigToolCalls$inboundSchema, DeploymentGetConfigToolCalls$outboundSchema, DeploymentGetConfigToolCalls$, DeploymentGetConfigMessages$inboundSchema, DeploymentGetConfigMessages$outboundSchema, DeploymentGetConfigMessages$, DeploymentGetConfigFormat$inboundSchema, DeploymentGetConfigFormat$outboundSchema, DeploymentGetConfigFormat$, DeploymentGetConfigResponseFormatType$inboundSchema, DeploymentGetConfigResponseFormatType$outboundSchema, DeploymentGetConfigResponseFormatType$, DeploymentGetConfigResponseFormat2$inboundSchema, DeploymentGetConfigResponseFormat2$outboundSchema, DeploymentGetConfigResponseFormat2$, DeploymentGetConfigResponseFormatDeploymentsType$inboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$outboundSchema, DeploymentGetConfigResponseFormatDeploymentsType$, DeploymentGetConfigResponseFormatJsonSchema$inboundSchema, DeploymentGetConfigResponseFormatJsonSchema$outboundSchema, DeploymentGetConfigResponseFormatJsonSchema$, DeploymentGetConfigResponseFormat1$inboundSchema, DeploymentGetConfigResponseFormat1$outboundSchema, DeploymentGetConfigResponseFormat1$, DeploymentGetConfigResponseFormat$inboundSchema, DeploymentGetConfigResponseFormat$outboundSchema, DeploymentGetConfigResponseFormat$, DeploymentGetConfigPhotoRealVersion$inboundSchema, DeploymentGetConfigPhotoRealVersion$outboundSchema, DeploymentGetConfigPhotoRealVersion$, DeploymentGetConfigEncodingFormat$inboundSchema, DeploymentGetConfigEncodingFormat$outboundSchema, DeploymentGetConfigEncodingFormat$, DeploymentGetConfigReasoningEffort$inboundSchema, DeploymentGetConfigReasoningEffort$outboundSchema, DeploymentGetConfigReasoningEffort$, ParametersT$inboundSchema, ParametersT$outboundSchema, ParametersT$, DeploymentGetConfigDeploymentsType$inboundSchema, DeploymentGetConfigDeploymentsType$outboundSchema, DeploymentGetConfigDeploymentsType$, DeploymentGetConfigFunction$inboundSchema, DeploymentGetConfigFunction$outboundSchema, DeploymentGetConfigFunction$, Tools$inboundSchema, Tools$outboundSchema, Tools$, DeploymentGetConfigResponseBody$inboundSchema, DeploymentGetConfigResponseBody$outboundSchema, DeploymentGetConfigResponseBody$;
41319
41319
  var init_deploymentgetconfig = __esm(() => {
41320
41320
  init_esm();
41321
41321
  init_primitives();
@@ -41471,12 +41471,6 @@ var init_deploymentgetconfig = __esm(() => {
41471
41471
  DeploymentGetConfigDeploymentsType = {
41472
41472
  Function: "function"
41473
41473
  };
41474
- Inputs$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
41475
- Inputs$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
41476
- ((Inputs$) => {
41477
- Inputs$.inboundSchema = Inputs$inboundSchema;
41478
- Inputs$.outboundSchema = Inputs$outboundSchema;
41479
- })(Inputs$ ||= {});
41480
41474
  DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$inboundSchema = nativeEnumType(DeploymentGetConfigPrefixMessagesDeploymentsRequestRole);
41481
41475
  DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$outboundSchema = DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$inboundSchema;
41482
41476
  ((DeploymentGetConfigPrefixMessagesDeploymentsRequestRole$) => {
@@ -43013,7 +43007,7 @@ var init_deploymentgetconfig = __esm(() => {
43013
43007
  })(KnowledgeFilter$ ||= {});
43014
43008
  DeploymentGetConfigRequestBody$inboundSchema = objectType({
43015
43009
  key: stringType(),
43016
- inputs: recordType(unionType([stringType(), numberType(), booleanType()])).optional(),
43010
+ inputs: recordType(anyType()).optional(),
43017
43011
  context: recordType(anyType()).optional(),
43018
43012
  prefix_messages: arrayType(unionType([
43019
43013
  lazyType(() => ToolMessage$inboundSchema),
@@ -43061,7 +43055,7 @@ var init_deploymentgetconfig = __esm(() => {
43061
43055
  });
43062
43056
  DeploymentGetConfigRequestBody$outboundSchema = objectType({
43063
43057
  key: stringType(),
43064
- inputs: recordType(unionType([stringType(), numberType(), booleanType()])).optional(),
43058
+ inputs: recordType(anyType()).optional(),
43065
43059
  context: recordType(anyType()).optional(),
43066
43060
  prefixMessages: arrayType(unionType([
43067
43061
  lazyType(() => ToolMessage$outboundSchema),
@@ -44556,7 +44550,7 @@ var init_deployments = __esm(() => {
44556
44550
  });
44557
44551
 
44558
44552
  // src/models/operations/deploymentstream.ts
44559
- var DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessages4Type, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessagesType, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole, DeploymentStreamPrefixMessagesType, DeploymentStreamPrefixMessagesDeploymentsRequestRole, DeploymentStream2DeploymentsRequestRequestBodyType, DeploymentStream2DeploymentsRequestType, DeploymentStream2Format, DeploymentStream2DeploymentsType, DeploymentStream2Detail, DeploymentStream2Type, DeploymentStreamPrefixMessagesDeploymentsRole, DeploymentStreamPrefixMessagesRole, DeploymentStreamMessagesDeploymentsRequestRequestBody5Role, DeploymentStream2DeploymentsRequestRequestBodyMessages4ContentType, DeploymentStream2DeploymentsRequestRequestBodyMessages4Type, DeploymentStreamMessagesDeploymentsRequestRequestBodyRole, DeploymentStreamMessagesType, DeploymentStreamMessagesDeploymentsRequestRole, DeploymentStream2DeploymentsRequestRequestBodyMessages3Content4Type, DeploymentStream2DeploymentsRequestRequestBodyMessages3ContentType, DeploymentStream2DeploymentsFormat, DeploymentStream2DeploymentsRequestRequestBodyMessages3Type, DeploymentStream2DeploymentsDetail, DeploymentStream2DeploymentsRequestRequestBodyMessagesType, DeploymentStreamMessagesDeploymentsRole, DeploymentStreamMessagesRole, DeploymentStreamObject, DeploymentStreamProvider, DeploymentStreamMessageDeploymentsResponseRole, DeploymentStreamMessageDeploymentsRole, DeploymentStreamMessageRole, DeploymentStreamMessageType, DeploymentStreamGlobals$inboundSchema, DeploymentStreamGlobals$outboundSchema, DeploymentStreamGlobals$, DeploymentStreamInputs$inboundSchema, DeploymentStreamInputs$outboundSchema, DeploymentStreamInputs$, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$, DeploymentStreamPrefixMessagesDeploymentsRequestContent$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestContent$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestContent$, PrefixMessagesToolMessage$inboundSchema, PrefixMessagesToolMessage$outboundSchema, PrefixMessagesToolMessage$, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessages4Type$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessages4Type$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessages4Type$, DeploymentStream2RefusalContentPart$inboundSchema, DeploymentStream2RefusalContentPart$outboundSchema, DeploymentStream2RefusalContentPart$, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessagesType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessagesType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessagesType$, DeploymentStream2TextContentPart$inboundSchema, DeploymentStream2TextContentPart$outboundSchema, DeploymentStream2TextContentPart$, DeploymentStreamContentDeployments2$inboundSchema, DeploymentStreamContentDeployments2$outboundSchema, DeploymentStreamContentDeployments2$, DeploymentStreamPrefixMessagesDeploymentsContent$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsContent$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsContent$, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole$, PrefixMessagesAudio$inboundSchema, PrefixMessagesAudio$outboundSchema, PrefixMessagesAudio$, DeploymentStreamPrefixMessagesType$inboundSchema, DeploymentStreamPrefixMessagesType$outboundSchema, DeploymentStreamPrefixMessagesType$, PrefixMessagesFunction$inboundSchema, PrefixMessagesFunction$outboundSchema, PrefixMessagesFunction$, PrefixMessagesToolCalls$inboundSchema, PrefixMessagesToolCalls$outboundSchema, PrefixMessagesToolCalls$, PrefixMessagesAssistantMessage$inboundSchema, PrefixMessagesAssistantMessage$outboundSchema, PrefixMessagesAssistantMessage$, DeploymentStreamPrefixMessagesDeploymentsRequestRole$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRole$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRole$, DeploymentStream2DeploymentsRequestRequestBodyType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyType$, DeploymentStream2File$inboundSchema, DeploymentStream2File$outboundSchema, DeploymentStream2File$, DeploymentStream24$inboundSchema, DeploymentStream24$outboundSchema, DeploymentStream24$, DeploymentStream2DeploymentsRequestType$inboundSchema, DeploymentStream2DeploymentsRequestType$outboundSchema, DeploymentStream2DeploymentsRequestType$, DeploymentStream2Format$inboundSchema, DeploymentStream2Format$outboundSchema, DeploymentStream2Format$, DeploymentStream2InputAudio$inboundSchema, DeploymentStream2InputAudio$outboundSchema, DeploymentStream2InputAudio$, DeploymentStream23$inboundSchema, DeploymentStream23$outboundSchema, DeploymentStream23$, DeploymentStream2DeploymentsType$inboundSchema, DeploymentStream2DeploymentsType$outboundSchema, DeploymentStream2DeploymentsType$, DeploymentStream2Detail$inboundSchema, DeploymentStream2Detail$outboundSchema, DeploymentStream2Detail$, DeploymentStream2ImageUrl$inboundSchema, DeploymentStream2ImageUrl$outboundSchema, DeploymentStream2ImageUrl$, DeploymentStream22$inboundSchema, DeploymentStream22$outboundSchema, DeploymentStream22$, DeploymentStream2Type$inboundSchema, DeploymentStream2Type$outboundSchema, DeploymentStream2Type$, DeploymentStream21$inboundSchema, DeploymentStream21$outboundSchema, DeploymentStream21$, DeploymentStreamContent2$inboundSchema, DeploymentStreamContent2$outboundSchema, DeploymentStreamContent2$, DeploymentStreamPrefixMessagesContent$inboundSchema, DeploymentStreamPrefixMessagesContent$outboundSchema, DeploymentStreamPrefixMessagesContent$, PrefixMessagesUserMessage$inboundSchema, PrefixMessagesUserMessage$outboundSchema, PrefixMessagesUserMessage$, DeploymentStreamPrefixMessagesDeploymentsRole$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRole$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRole$, PrefixMessagesSystemMessage$inboundSchema, PrefixMessagesSystemMessage$outboundSchema, PrefixMessagesSystemMessage$, DeploymentStreamPrefixMessagesRole$inboundSchema, DeploymentStreamPrefixMessagesRole$outboundSchema, DeploymentStreamPrefixMessagesRole$, PrefixMessagesDeveloperMessage$inboundSchema, PrefixMessagesDeveloperMessage$outboundSchema, PrefixMessagesDeveloperMessage$, DeploymentStreamPrefixMessages$inboundSchema, DeploymentStreamPrefixMessages$outboundSchema, DeploymentStreamPrefixMessages$, DeploymentStreamMessagesDeploymentsRequestRequestBody5Role$inboundSchema, DeploymentStreamMessagesDeploymentsRequestRequestBody5Role$outboundSchema, DeploymentStreamMessagesDeploymentsRequestRequestBody5Role$, DeploymentStreamMessagesDeploymentsRequestContent$inboundSchema, DeploymentStreamMessagesDeploymentsRequestContent$outboundSchema, DeploymentStreamMessagesDeploymentsRequestContent$, DeploymentStreamMessagesToolMessage$inboundSchema, DeploymentStreamMessagesToolMessage$outboundSchema, DeploymentStreamMessagesToolMessage$, DeploymentStream2DeploymentsRequestRequestBodyMessages4ContentType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages4ContentType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages4ContentType$, DeploymentStream2DeploymentsRefusalContentPart$inboundSchema, DeploymentStream2DeploymentsRefusalContentPart$outboundSchema, DeploymentStream2DeploymentsRefusalContentPart$, DeploymentStream2DeploymentsRequestRequestBodyMessages4Type$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages4Type$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages4Type$, DeploymentStream2DeploymentsTextContentPart$inboundSchema, DeploymentStream2DeploymentsTextContentPart$outboundSchema, DeploymentStream2DeploymentsTextContentPart$, DeploymentStreamContentDeploymentsRequestRequestBody2$inboundSchema, DeploymentStreamContentDeploymentsRequestRequestBody2$outboundSchema, DeploymentStreamContentDeploymentsRequestRequestBody2$, DeploymentStreamMessagesDeploymentsContent$inboundSchema, DeploymentStreamMessagesDeploymentsContent$outboundSchema, DeploymentStreamMessagesDeploymentsContent$, DeploymentStreamMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentStreamMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentStreamMessagesDeploymentsRequestRequestBodyRole$, DeploymentStreamMessagesAudio$inboundSchema, DeploymentStreamMessagesAudio$outboundSchema, DeploymentStreamMessagesAudio$, DeploymentStreamMessagesType$inboundSchema, DeploymentStreamMessagesType$outboundSchema, DeploymentStreamMessagesType$, DeploymentStreamMessagesFunction$inboundSchema, DeploymentStreamMessagesFunction$outboundSchema, DeploymentStreamMessagesFunction$, DeploymentStreamMessagesToolCalls$inboundSchema, DeploymentStreamMessagesToolCalls$outboundSchema, DeploymentStreamMessagesToolCalls$, DeploymentStreamMessagesAssistantMessage$inboundSchema, DeploymentStreamMessagesAssistantMessage$outboundSchema, DeploymentStreamMessagesAssistantMessage$, DeploymentStreamMessagesDeploymentsRequestRole$inboundSchema, DeploymentStreamMessagesDeploymentsRequestRole$outboundSchema, DeploymentStreamMessagesDeploymentsRequestRole$, DeploymentStream2DeploymentsRequestRequestBodyMessages3Content4Type$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3Content4Type$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3Content4Type$, DeploymentStream2DeploymentsFile$inboundSchema, DeploymentStream2DeploymentsFile$outboundSchema, DeploymentStream2DeploymentsFile$, DeploymentStream2Deployments4$inboundSchema, DeploymentStream2Deployments4$outboundSchema, DeploymentStream2Deployments4$, DeploymentStream2DeploymentsRequestRequestBodyMessages3ContentType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3ContentType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3ContentType$, DeploymentStream2DeploymentsFormat$inboundSchema, DeploymentStream2DeploymentsFormat$outboundSchema, DeploymentStream2DeploymentsFormat$, DeploymentStream2DeploymentsInputAudio$inboundSchema, DeploymentStream2DeploymentsInputAudio$outboundSchema, DeploymentStream2DeploymentsInputAudio$, DeploymentStream2Deployments3$inboundSchema, DeploymentStream2Deployments3$outboundSchema, DeploymentStream2Deployments3$, DeploymentStream2DeploymentsRequestRequestBodyMessages3Type$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3Type$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3Type$, DeploymentStream2DeploymentsDetail$inboundSchema, DeploymentStream2DeploymentsDetail$outboundSchema, DeploymentStream2DeploymentsDetail$, DeploymentStream2DeploymentsImageUrl$inboundSchema, DeploymentStream2DeploymentsImageUrl$outboundSchema, DeploymentStream2DeploymentsImageUrl$, DeploymentStream2Deployments2$inboundSchema, DeploymentStream2Deployments2$outboundSchema, DeploymentStream2Deployments2$, DeploymentStream2DeploymentsRequestRequestBodyMessagesType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessagesType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessagesType$, DeploymentStream2Deployments1$inboundSchema, DeploymentStream2Deployments1$outboundSchema, DeploymentStream2Deployments1$, DeploymentStreamContentDeploymentsRequest2$inboundSchema, DeploymentStreamContentDeploymentsRequest2$outboundSchema, DeploymentStreamContentDeploymentsRequest2$, DeploymentStreamMessagesContent$inboundSchema, DeploymentStreamMessagesContent$outboundSchema, DeploymentStreamMessagesContent$, DeploymentStreamMessagesUserMessage$inboundSchema, DeploymentStreamMessagesUserMessage$outboundSchema, DeploymentStreamMessagesUserMessage$, DeploymentStreamMessagesDeploymentsRole$inboundSchema, DeploymentStreamMessagesDeploymentsRole$outboundSchema, DeploymentStreamMessagesDeploymentsRole$, DeploymentStreamMessagesSystemMessage$inboundSchema, DeploymentStreamMessagesSystemMessage$outboundSchema, DeploymentStreamMessagesSystemMessage$, DeploymentStreamMessagesRole$inboundSchema, DeploymentStreamMessagesRole$outboundSchema, DeploymentStreamMessagesRole$, DeploymentStreamMessagesDeveloperMessage$inboundSchema, DeploymentStreamMessagesDeveloperMessage$outboundSchema, DeploymentStreamMessagesDeveloperMessage$, DeploymentStreamMessages$inboundSchema, DeploymentStreamMessages$outboundSchema, DeploymentStreamMessages$, DeploymentStreamMetadata$inboundSchema, DeploymentStreamMetadata$outboundSchema, DeploymentStreamMetadata$, DeploymentStreamDocuments$inboundSchema, DeploymentStreamDocuments$outboundSchema, DeploymentStreamDocuments$, DeploymentStreamInvokeOptions$inboundSchema, DeploymentStreamInvokeOptions$outboundSchema, DeploymentStreamInvokeOptions$, DeploymentStreamThread$inboundSchema, DeploymentStreamThread$outboundSchema, DeploymentStreamThread$, DeploymentStreamOrExists$inboundSchema, DeploymentStreamOrExists$outboundSchema, DeploymentStreamOrExists$, DeploymentStreamOrDeploymentsNin$inboundSchema, DeploymentStreamOrDeploymentsNin$outboundSchema, DeploymentStreamOrDeploymentsNin$, DeploymentStreamOrNin$inboundSchema, DeploymentStreamOrNin$outboundSchema, DeploymentStreamOrNin$, DeploymentStreamOrDeploymentsIn$inboundSchema, DeploymentStreamOrDeploymentsIn$outboundSchema, DeploymentStreamOrDeploymentsIn$, DeploymentStreamOrIn$inboundSchema, DeploymentStreamOrIn$outboundSchema, DeploymentStreamOrIn$, DeploymentStreamOrLte$inboundSchema, DeploymentStreamOrLte$outboundSchema, DeploymentStreamOrLte$, DeploymentStreamOrLt$inboundSchema, DeploymentStreamOrLt$outboundSchema, DeploymentStreamOrLt$, DeploymentStreamOrGte$inboundSchema, DeploymentStreamOrGte$outboundSchema, DeploymentStreamOrGte$, DeploymentStreamOr3$inboundSchema, DeploymentStreamOr3$outboundSchema, DeploymentStreamOr3$, DeploymentStreamOrDeploymentsNe$inboundSchema, DeploymentStreamOrDeploymentsNe$outboundSchema, DeploymentStreamOrDeploymentsNe$, DeploymentStreamOrNe$inboundSchema, DeploymentStreamOrNe$outboundSchema, DeploymentStreamOrNe$, DeploymentStreamOrDeploymentsEq$inboundSchema, DeploymentStreamOrDeploymentsEq$outboundSchema, DeploymentStreamOrDeploymentsEq$, DeploymentStreamOrEq$inboundSchema, DeploymentStreamOrEq$outboundSchema, DeploymentStreamOrEq$, DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema, DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema, DeploymentStreamKnowledgeFilterDeploymentsOr$, DeploymentStreamKnowledgeFilterOr$inboundSchema, DeploymentStreamKnowledgeFilterOr$outboundSchema, DeploymentStreamKnowledgeFilterOr$, DeploymentStreamAndExists$inboundSchema, DeploymentStreamAndExists$outboundSchema, DeploymentStreamAndExists$, DeploymentStreamAndDeploymentsNin$inboundSchema, DeploymentStreamAndDeploymentsNin$outboundSchema, DeploymentStreamAndDeploymentsNin$, DeploymentStreamAndNin$inboundSchema, DeploymentStreamAndNin$outboundSchema, DeploymentStreamAndNin$, DeploymentStreamAndDeploymentsIn$inboundSchema, DeploymentStreamAndDeploymentsIn$outboundSchema, DeploymentStreamAndDeploymentsIn$, DeploymentStreamAndIn$inboundSchema, DeploymentStreamAndIn$outboundSchema, DeploymentStreamAndIn$, DeploymentStreamAndLte$inboundSchema, DeploymentStreamAndLte$outboundSchema, DeploymentStreamAndLte$, DeploymentStreamAndLt$inboundSchema, DeploymentStreamAndLt$outboundSchema, DeploymentStreamAndLt$, DeploymentStreamAndGte$inboundSchema, DeploymentStreamAndGte$outboundSchema, DeploymentStreamAndGte$, DeploymentStreamAnd3$inboundSchema, DeploymentStreamAnd3$outboundSchema, DeploymentStreamAnd3$, DeploymentStreamAndDeploymentsNe$inboundSchema, DeploymentStreamAndDeploymentsNe$outboundSchema, DeploymentStreamAndDeploymentsNe$, DeploymentStreamAndNe$inboundSchema, DeploymentStreamAndNe$outboundSchema, DeploymentStreamAndNe$, DeploymentStreamAndDeploymentsEq$inboundSchema, DeploymentStreamAndDeploymentsEq$outboundSchema, DeploymentStreamAndDeploymentsEq$, DeploymentStreamAndEq$inboundSchema, DeploymentStreamAndEq$outboundSchema, DeploymentStreamAndEq$, DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema, DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema, DeploymentStreamKnowledgeFilterDeploymentsAnd$, DeploymentStreamKnowledgeFilterAnd$inboundSchema, DeploymentStreamKnowledgeFilterAnd$outboundSchema, DeploymentStreamKnowledgeFilterAnd$, OneExists$inboundSchema, OneExists$outboundSchema, OneExists$, DeploymentStream1DeploymentsNin$inboundSchema, DeploymentStream1DeploymentsNin$outboundSchema, DeploymentStream1DeploymentsNin$, DeploymentStream1Nin$inboundSchema, DeploymentStream1Nin$outboundSchema, DeploymentStream1Nin$, DeploymentStream1DeploymentsIn$inboundSchema, DeploymentStream1DeploymentsIn$outboundSchema, DeploymentStream1DeploymentsIn$, DeploymentStream1In$inboundSchema, DeploymentStream1In$outboundSchema, DeploymentStream1In$, OneLte$inboundSchema, OneLte$outboundSchema, OneLte$, OneLt$inboundSchema, OneLt$outboundSchema, OneLt$, OneGte$inboundSchema, OneGte$outboundSchema, OneGte$, DeploymentStream13$inboundSchema, DeploymentStream13$outboundSchema, DeploymentStream13$, DeploymentStream1DeploymentsNe$inboundSchema, DeploymentStream1DeploymentsNe$outboundSchema, DeploymentStream1DeploymentsNe$, DeploymentStream1Ne$inboundSchema, DeploymentStream1Ne$outboundSchema, DeploymentStream1Ne$, DeploymentStream1DeploymentsEq$inboundSchema, DeploymentStream1DeploymentsEq$outboundSchema, DeploymentStream1DeploymentsEq$, DeploymentStream1Eq$inboundSchema, DeploymentStream1Eq$outboundSchema, DeploymentStream1Eq$, DeploymentStreamKnowledgeFilter1$inboundSchema, DeploymentStreamKnowledgeFilter1$outboundSchema, DeploymentStreamKnowledgeFilter1$, DeploymentStreamKnowledgeFilter$inboundSchema, DeploymentStreamKnowledgeFilter$outboundSchema, DeploymentStreamKnowledgeFilter$, DeploymentStreamRequestBody$inboundSchema, DeploymentStreamRequestBody$outboundSchema, DeploymentStreamRequestBody$, DeploymentStreamObject$inboundSchema, DeploymentStreamObject$outboundSchema, DeploymentStreamObject$, DeploymentStreamProvider$inboundSchema, DeploymentStreamProvider$outboundSchema, DeploymentStreamProvider$, DeploymentStreamMessageDeploymentsResponseRole$inboundSchema, DeploymentStreamMessageDeploymentsResponseRole$outboundSchema, DeploymentStreamMessageDeploymentsResponseRole$, DeploymentStreamMessage3$inboundSchema, DeploymentStreamMessage3$outboundSchema, DeploymentStreamMessage3$, DeploymentStreamMessageDeploymentsRole$inboundSchema, DeploymentStreamMessageDeploymentsRole$outboundSchema, DeploymentStreamMessageDeploymentsRole$, DeploymentStreamMessage2$inboundSchema, DeploymentStreamMessage2$outboundSchema, DeploymentStreamMessage2$, DeploymentStreamMessageRole$inboundSchema, DeploymentStreamMessageRole$outboundSchema, DeploymentStreamMessageRole$, DeploymentStreamMessageType$inboundSchema, DeploymentStreamMessageType$outboundSchema, DeploymentStreamMessageType$, DeploymentStreamMessageFunction$inboundSchema, DeploymentStreamMessageFunction$outboundSchema, DeploymentStreamMessageFunction$, DeploymentStreamMessageToolCalls$inboundSchema, DeploymentStreamMessageToolCalls$outboundSchema, DeploymentStreamMessageToolCalls$, DeploymentStreamMessage1$inboundSchema, DeploymentStreamMessage1$outboundSchema, DeploymentStreamMessage1$, DeploymentStreamMessage$inboundSchema, DeploymentStreamMessage$outboundSchema, DeploymentStreamMessage$, DeploymentStreamChoices$inboundSchema, DeploymentStreamChoices$outboundSchema, DeploymentStreamChoices$, DeploymentStreamDeploymentsMetadata$inboundSchema, DeploymentStreamDeploymentsMetadata$outboundSchema, DeploymentStreamDeploymentsMetadata$, DeploymentStreamRetrievals$inboundSchema, DeploymentStreamRetrievals$outboundSchema, DeploymentStreamRetrievals$, DeploymentStreamData$inboundSchema, DeploymentStreamData$outboundSchema, DeploymentStreamData$, DeploymentStreamResponseBody$inboundSchema, DeploymentStreamResponseBody$outboundSchema, DeploymentStreamResponseBody$;
44553
+ var DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessages4Type, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessagesType, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole, DeploymentStreamPrefixMessagesType, DeploymentStreamPrefixMessagesDeploymentsRequestRole, DeploymentStream2DeploymentsRequestRequestBodyType, DeploymentStream2DeploymentsRequestType, DeploymentStream2Format, DeploymentStream2DeploymentsType, DeploymentStream2Detail, DeploymentStream2Type, DeploymentStreamPrefixMessagesDeploymentsRole, DeploymentStreamPrefixMessagesRole, DeploymentStreamMessagesDeploymentsRequestRequestBody5Role, DeploymentStream2DeploymentsRequestRequestBodyMessages4ContentType, DeploymentStream2DeploymentsRequestRequestBodyMessages4Type, DeploymentStreamMessagesDeploymentsRequestRequestBodyRole, DeploymentStreamMessagesType, DeploymentStreamMessagesDeploymentsRequestRole, DeploymentStream2DeploymentsRequestRequestBodyMessages3Content4Type, DeploymentStream2DeploymentsRequestRequestBodyMessages3ContentType, DeploymentStream2DeploymentsFormat, DeploymentStream2DeploymentsRequestRequestBodyMessages3Type, DeploymentStream2DeploymentsDetail, DeploymentStream2DeploymentsRequestRequestBodyMessagesType, DeploymentStreamMessagesDeploymentsRole, DeploymentStreamMessagesRole, DeploymentStreamObject, DeploymentStreamProvider, DeploymentStreamMessageDeploymentsResponseRole, DeploymentStreamMessageDeploymentsRole, DeploymentStreamMessageRole, DeploymentStreamMessageType, DeploymentStreamGlobals$inboundSchema, DeploymentStreamGlobals$outboundSchema, DeploymentStreamGlobals$, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$, DeploymentStreamPrefixMessagesDeploymentsRequestContent$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestContent$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestContent$, PrefixMessagesToolMessage$inboundSchema, PrefixMessagesToolMessage$outboundSchema, PrefixMessagesToolMessage$, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessages4Type$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessages4Type$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessages4Type$, DeploymentStream2RefusalContentPart$inboundSchema, DeploymentStream2RefusalContentPart$outboundSchema, DeploymentStream2RefusalContentPart$, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessagesType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessagesType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyPrefixMessagesType$, DeploymentStream2TextContentPart$inboundSchema, DeploymentStream2TextContentPart$outboundSchema, DeploymentStream2TextContentPart$, DeploymentStreamContentDeployments2$inboundSchema, DeploymentStreamContentDeployments2$outboundSchema, DeploymentStreamContentDeployments2$, DeploymentStreamPrefixMessagesDeploymentsContent$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsContent$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsContent$, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRequestBodyRole$, PrefixMessagesAudio$inboundSchema, PrefixMessagesAudio$outboundSchema, PrefixMessagesAudio$, DeploymentStreamPrefixMessagesType$inboundSchema, DeploymentStreamPrefixMessagesType$outboundSchema, DeploymentStreamPrefixMessagesType$, PrefixMessagesFunction$inboundSchema, PrefixMessagesFunction$outboundSchema, PrefixMessagesFunction$, PrefixMessagesToolCalls$inboundSchema, PrefixMessagesToolCalls$outboundSchema, PrefixMessagesToolCalls$, PrefixMessagesAssistantMessage$inboundSchema, PrefixMessagesAssistantMessage$outboundSchema, PrefixMessagesAssistantMessage$, DeploymentStreamPrefixMessagesDeploymentsRequestRole$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRole$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRequestRole$, DeploymentStream2DeploymentsRequestRequestBodyType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyType$, DeploymentStream2File$inboundSchema, DeploymentStream2File$outboundSchema, DeploymentStream2File$, DeploymentStream24$inboundSchema, DeploymentStream24$outboundSchema, DeploymentStream24$, DeploymentStream2DeploymentsRequestType$inboundSchema, DeploymentStream2DeploymentsRequestType$outboundSchema, DeploymentStream2DeploymentsRequestType$, DeploymentStream2Format$inboundSchema, DeploymentStream2Format$outboundSchema, DeploymentStream2Format$, DeploymentStream2InputAudio$inboundSchema, DeploymentStream2InputAudio$outboundSchema, DeploymentStream2InputAudio$, DeploymentStream23$inboundSchema, DeploymentStream23$outboundSchema, DeploymentStream23$, DeploymentStream2DeploymentsType$inboundSchema, DeploymentStream2DeploymentsType$outboundSchema, DeploymentStream2DeploymentsType$, DeploymentStream2Detail$inboundSchema, DeploymentStream2Detail$outboundSchema, DeploymentStream2Detail$, DeploymentStream2ImageUrl$inboundSchema, DeploymentStream2ImageUrl$outboundSchema, DeploymentStream2ImageUrl$, DeploymentStream22$inboundSchema, DeploymentStream22$outboundSchema, DeploymentStream22$, DeploymentStream2Type$inboundSchema, DeploymentStream2Type$outboundSchema, DeploymentStream2Type$, DeploymentStream21$inboundSchema, DeploymentStream21$outboundSchema, DeploymentStream21$, DeploymentStreamContent2$inboundSchema, DeploymentStreamContent2$outboundSchema, DeploymentStreamContent2$, DeploymentStreamPrefixMessagesContent$inboundSchema, DeploymentStreamPrefixMessagesContent$outboundSchema, DeploymentStreamPrefixMessagesContent$, PrefixMessagesUserMessage$inboundSchema, PrefixMessagesUserMessage$outboundSchema, PrefixMessagesUserMessage$, DeploymentStreamPrefixMessagesDeploymentsRole$inboundSchema, DeploymentStreamPrefixMessagesDeploymentsRole$outboundSchema, DeploymentStreamPrefixMessagesDeploymentsRole$, PrefixMessagesSystemMessage$inboundSchema, PrefixMessagesSystemMessage$outboundSchema, PrefixMessagesSystemMessage$, DeploymentStreamPrefixMessagesRole$inboundSchema, DeploymentStreamPrefixMessagesRole$outboundSchema, DeploymentStreamPrefixMessagesRole$, PrefixMessagesDeveloperMessage$inboundSchema, PrefixMessagesDeveloperMessage$outboundSchema, PrefixMessagesDeveloperMessage$, DeploymentStreamPrefixMessages$inboundSchema, DeploymentStreamPrefixMessages$outboundSchema, DeploymentStreamPrefixMessages$, DeploymentStreamMessagesDeploymentsRequestRequestBody5Role$inboundSchema, DeploymentStreamMessagesDeploymentsRequestRequestBody5Role$outboundSchema, DeploymentStreamMessagesDeploymentsRequestRequestBody5Role$, DeploymentStreamMessagesDeploymentsRequestContent$inboundSchema, DeploymentStreamMessagesDeploymentsRequestContent$outboundSchema, DeploymentStreamMessagesDeploymentsRequestContent$, DeploymentStreamMessagesToolMessage$inboundSchema, DeploymentStreamMessagesToolMessage$outboundSchema, DeploymentStreamMessagesToolMessage$, DeploymentStream2DeploymentsRequestRequestBodyMessages4ContentType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages4ContentType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages4ContentType$, DeploymentStream2DeploymentsRefusalContentPart$inboundSchema, DeploymentStream2DeploymentsRefusalContentPart$outboundSchema, DeploymentStream2DeploymentsRefusalContentPart$, DeploymentStream2DeploymentsRequestRequestBodyMessages4Type$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages4Type$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages4Type$, DeploymentStream2DeploymentsTextContentPart$inboundSchema, DeploymentStream2DeploymentsTextContentPart$outboundSchema, DeploymentStream2DeploymentsTextContentPart$, DeploymentStreamContentDeploymentsRequestRequestBody2$inboundSchema, DeploymentStreamContentDeploymentsRequestRequestBody2$outboundSchema, DeploymentStreamContentDeploymentsRequestRequestBody2$, DeploymentStreamMessagesDeploymentsContent$inboundSchema, DeploymentStreamMessagesDeploymentsContent$outboundSchema, DeploymentStreamMessagesDeploymentsContent$, DeploymentStreamMessagesDeploymentsRequestRequestBodyRole$inboundSchema, DeploymentStreamMessagesDeploymentsRequestRequestBodyRole$outboundSchema, DeploymentStreamMessagesDeploymentsRequestRequestBodyRole$, DeploymentStreamMessagesAudio$inboundSchema, DeploymentStreamMessagesAudio$outboundSchema, DeploymentStreamMessagesAudio$, DeploymentStreamMessagesType$inboundSchema, DeploymentStreamMessagesType$outboundSchema, DeploymentStreamMessagesType$, DeploymentStreamMessagesFunction$inboundSchema, DeploymentStreamMessagesFunction$outboundSchema, DeploymentStreamMessagesFunction$, DeploymentStreamMessagesToolCalls$inboundSchema, DeploymentStreamMessagesToolCalls$outboundSchema, DeploymentStreamMessagesToolCalls$, DeploymentStreamMessagesAssistantMessage$inboundSchema, DeploymentStreamMessagesAssistantMessage$outboundSchema, DeploymentStreamMessagesAssistantMessage$, DeploymentStreamMessagesDeploymentsRequestRole$inboundSchema, DeploymentStreamMessagesDeploymentsRequestRole$outboundSchema, DeploymentStreamMessagesDeploymentsRequestRole$, DeploymentStream2DeploymentsRequestRequestBodyMessages3Content4Type$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3Content4Type$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3Content4Type$, DeploymentStream2DeploymentsFile$inboundSchema, DeploymentStream2DeploymentsFile$outboundSchema, DeploymentStream2DeploymentsFile$, DeploymentStream2Deployments4$inboundSchema, DeploymentStream2Deployments4$outboundSchema, DeploymentStream2Deployments4$, DeploymentStream2DeploymentsRequestRequestBodyMessages3ContentType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3ContentType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3ContentType$, DeploymentStream2DeploymentsFormat$inboundSchema, DeploymentStream2DeploymentsFormat$outboundSchema, DeploymentStream2DeploymentsFormat$, DeploymentStream2DeploymentsInputAudio$inboundSchema, DeploymentStream2DeploymentsInputAudio$outboundSchema, DeploymentStream2DeploymentsInputAudio$, DeploymentStream2Deployments3$inboundSchema, DeploymentStream2Deployments3$outboundSchema, DeploymentStream2Deployments3$, DeploymentStream2DeploymentsRequestRequestBodyMessages3Type$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3Type$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessages3Type$, DeploymentStream2DeploymentsDetail$inboundSchema, DeploymentStream2DeploymentsDetail$outboundSchema, DeploymentStream2DeploymentsDetail$, DeploymentStream2DeploymentsImageUrl$inboundSchema, DeploymentStream2DeploymentsImageUrl$outboundSchema, DeploymentStream2DeploymentsImageUrl$, DeploymentStream2Deployments2$inboundSchema, DeploymentStream2Deployments2$outboundSchema, DeploymentStream2Deployments2$, DeploymentStream2DeploymentsRequestRequestBodyMessagesType$inboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessagesType$outboundSchema, DeploymentStream2DeploymentsRequestRequestBodyMessagesType$, DeploymentStream2Deployments1$inboundSchema, DeploymentStream2Deployments1$outboundSchema, DeploymentStream2Deployments1$, DeploymentStreamContentDeploymentsRequest2$inboundSchema, DeploymentStreamContentDeploymentsRequest2$outboundSchema, DeploymentStreamContentDeploymentsRequest2$, DeploymentStreamMessagesContent$inboundSchema, DeploymentStreamMessagesContent$outboundSchema, DeploymentStreamMessagesContent$, DeploymentStreamMessagesUserMessage$inboundSchema, DeploymentStreamMessagesUserMessage$outboundSchema, DeploymentStreamMessagesUserMessage$, DeploymentStreamMessagesDeploymentsRole$inboundSchema, DeploymentStreamMessagesDeploymentsRole$outboundSchema, DeploymentStreamMessagesDeploymentsRole$, DeploymentStreamMessagesSystemMessage$inboundSchema, DeploymentStreamMessagesSystemMessage$outboundSchema, DeploymentStreamMessagesSystemMessage$, DeploymentStreamMessagesRole$inboundSchema, DeploymentStreamMessagesRole$outboundSchema, DeploymentStreamMessagesRole$, DeploymentStreamMessagesDeveloperMessage$inboundSchema, DeploymentStreamMessagesDeveloperMessage$outboundSchema, DeploymentStreamMessagesDeveloperMessage$, DeploymentStreamMessages$inboundSchema, DeploymentStreamMessages$outboundSchema, DeploymentStreamMessages$, DeploymentStreamMetadata$inboundSchema, DeploymentStreamMetadata$outboundSchema, DeploymentStreamMetadata$, DeploymentStreamDocuments$inboundSchema, DeploymentStreamDocuments$outboundSchema, DeploymentStreamDocuments$, DeploymentStreamInvokeOptions$inboundSchema, DeploymentStreamInvokeOptions$outboundSchema, DeploymentStreamInvokeOptions$, DeploymentStreamThread$inboundSchema, DeploymentStreamThread$outboundSchema, DeploymentStreamThread$, DeploymentStreamOrExists$inboundSchema, DeploymentStreamOrExists$outboundSchema, DeploymentStreamOrExists$, DeploymentStreamOrDeploymentsNin$inboundSchema, DeploymentStreamOrDeploymentsNin$outboundSchema, DeploymentStreamOrDeploymentsNin$, DeploymentStreamOrNin$inboundSchema, DeploymentStreamOrNin$outboundSchema, DeploymentStreamOrNin$, DeploymentStreamOrDeploymentsIn$inboundSchema, DeploymentStreamOrDeploymentsIn$outboundSchema, DeploymentStreamOrDeploymentsIn$, DeploymentStreamOrIn$inboundSchema, DeploymentStreamOrIn$outboundSchema, DeploymentStreamOrIn$, DeploymentStreamOrLte$inboundSchema, DeploymentStreamOrLte$outboundSchema, DeploymentStreamOrLte$, DeploymentStreamOrLt$inboundSchema, DeploymentStreamOrLt$outboundSchema, DeploymentStreamOrLt$, DeploymentStreamOrGte$inboundSchema, DeploymentStreamOrGte$outboundSchema, DeploymentStreamOrGte$, DeploymentStreamOr3$inboundSchema, DeploymentStreamOr3$outboundSchema, DeploymentStreamOr3$, DeploymentStreamOrDeploymentsNe$inboundSchema, DeploymentStreamOrDeploymentsNe$outboundSchema, DeploymentStreamOrDeploymentsNe$, DeploymentStreamOrNe$inboundSchema, DeploymentStreamOrNe$outboundSchema, DeploymentStreamOrNe$, DeploymentStreamOrDeploymentsEq$inboundSchema, DeploymentStreamOrDeploymentsEq$outboundSchema, DeploymentStreamOrDeploymentsEq$, DeploymentStreamOrEq$inboundSchema, DeploymentStreamOrEq$outboundSchema, DeploymentStreamOrEq$, DeploymentStreamKnowledgeFilterDeploymentsOr$inboundSchema, DeploymentStreamKnowledgeFilterDeploymentsOr$outboundSchema, DeploymentStreamKnowledgeFilterDeploymentsOr$, DeploymentStreamKnowledgeFilterOr$inboundSchema, DeploymentStreamKnowledgeFilterOr$outboundSchema, DeploymentStreamKnowledgeFilterOr$, DeploymentStreamAndExists$inboundSchema, DeploymentStreamAndExists$outboundSchema, DeploymentStreamAndExists$, DeploymentStreamAndDeploymentsNin$inboundSchema, DeploymentStreamAndDeploymentsNin$outboundSchema, DeploymentStreamAndDeploymentsNin$, DeploymentStreamAndNin$inboundSchema, DeploymentStreamAndNin$outboundSchema, DeploymentStreamAndNin$, DeploymentStreamAndDeploymentsIn$inboundSchema, DeploymentStreamAndDeploymentsIn$outboundSchema, DeploymentStreamAndDeploymentsIn$, DeploymentStreamAndIn$inboundSchema, DeploymentStreamAndIn$outboundSchema, DeploymentStreamAndIn$, DeploymentStreamAndLte$inboundSchema, DeploymentStreamAndLte$outboundSchema, DeploymentStreamAndLte$, DeploymentStreamAndLt$inboundSchema, DeploymentStreamAndLt$outboundSchema, DeploymentStreamAndLt$, DeploymentStreamAndGte$inboundSchema, DeploymentStreamAndGte$outboundSchema, DeploymentStreamAndGte$, DeploymentStreamAnd3$inboundSchema, DeploymentStreamAnd3$outboundSchema, DeploymentStreamAnd3$, DeploymentStreamAndDeploymentsNe$inboundSchema, DeploymentStreamAndDeploymentsNe$outboundSchema, DeploymentStreamAndDeploymentsNe$, DeploymentStreamAndNe$inboundSchema, DeploymentStreamAndNe$outboundSchema, DeploymentStreamAndNe$, DeploymentStreamAndDeploymentsEq$inboundSchema, DeploymentStreamAndDeploymentsEq$outboundSchema, DeploymentStreamAndDeploymentsEq$, DeploymentStreamAndEq$inboundSchema, DeploymentStreamAndEq$outboundSchema, DeploymentStreamAndEq$, DeploymentStreamKnowledgeFilterDeploymentsAnd$inboundSchema, DeploymentStreamKnowledgeFilterDeploymentsAnd$outboundSchema, DeploymentStreamKnowledgeFilterDeploymentsAnd$, DeploymentStreamKnowledgeFilterAnd$inboundSchema, DeploymentStreamKnowledgeFilterAnd$outboundSchema, DeploymentStreamKnowledgeFilterAnd$, OneExists$inboundSchema, OneExists$outboundSchema, OneExists$, DeploymentStream1DeploymentsNin$inboundSchema, DeploymentStream1DeploymentsNin$outboundSchema, DeploymentStream1DeploymentsNin$, DeploymentStream1Nin$inboundSchema, DeploymentStream1Nin$outboundSchema, DeploymentStream1Nin$, DeploymentStream1DeploymentsIn$inboundSchema, DeploymentStream1DeploymentsIn$outboundSchema, DeploymentStream1DeploymentsIn$, DeploymentStream1In$inboundSchema, DeploymentStream1In$outboundSchema, DeploymentStream1In$, OneLte$inboundSchema, OneLte$outboundSchema, OneLte$, OneLt$inboundSchema, OneLt$outboundSchema, OneLt$, OneGte$inboundSchema, OneGte$outboundSchema, OneGte$, DeploymentStream13$inboundSchema, DeploymentStream13$outboundSchema, DeploymentStream13$, DeploymentStream1DeploymentsNe$inboundSchema, DeploymentStream1DeploymentsNe$outboundSchema, DeploymentStream1DeploymentsNe$, DeploymentStream1Ne$inboundSchema, DeploymentStream1Ne$outboundSchema, DeploymentStream1Ne$, DeploymentStream1DeploymentsEq$inboundSchema, DeploymentStream1DeploymentsEq$outboundSchema, DeploymentStream1DeploymentsEq$, DeploymentStream1Eq$inboundSchema, DeploymentStream1Eq$outboundSchema, DeploymentStream1Eq$, DeploymentStreamKnowledgeFilter1$inboundSchema, DeploymentStreamKnowledgeFilter1$outboundSchema, DeploymentStreamKnowledgeFilter1$, DeploymentStreamKnowledgeFilter$inboundSchema, DeploymentStreamKnowledgeFilter$outboundSchema, DeploymentStreamKnowledgeFilter$, DeploymentStreamRequestBody$inboundSchema, DeploymentStreamRequestBody$outboundSchema, DeploymentStreamRequestBody$, DeploymentStreamObject$inboundSchema, DeploymentStreamObject$outboundSchema, DeploymentStreamObject$, DeploymentStreamProvider$inboundSchema, DeploymentStreamProvider$outboundSchema, DeploymentStreamProvider$, DeploymentStreamMessageDeploymentsResponseRole$inboundSchema, DeploymentStreamMessageDeploymentsResponseRole$outboundSchema, DeploymentStreamMessageDeploymentsResponseRole$, DeploymentStreamMessage3$inboundSchema, DeploymentStreamMessage3$outboundSchema, DeploymentStreamMessage3$, DeploymentStreamMessageDeploymentsRole$inboundSchema, DeploymentStreamMessageDeploymentsRole$outboundSchema, DeploymentStreamMessageDeploymentsRole$, DeploymentStreamMessage2$inboundSchema, DeploymentStreamMessage2$outboundSchema, DeploymentStreamMessage2$, DeploymentStreamMessageRole$inboundSchema, DeploymentStreamMessageRole$outboundSchema, DeploymentStreamMessageRole$, DeploymentStreamMessageType$inboundSchema, DeploymentStreamMessageType$outboundSchema, DeploymentStreamMessageType$, DeploymentStreamMessageFunction$inboundSchema, DeploymentStreamMessageFunction$outboundSchema, DeploymentStreamMessageFunction$, DeploymentStreamMessageToolCalls$inboundSchema, DeploymentStreamMessageToolCalls$outboundSchema, DeploymentStreamMessageToolCalls$, DeploymentStreamMessage1$inboundSchema, DeploymentStreamMessage1$outboundSchema, DeploymentStreamMessage1$, DeploymentStreamMessage$inboundSchema, DeploymentStreamMessage$outboundSchema, DeploymentStreamMessage$, DeploymentStreamChoices$inboundSchema, DeploymentStreamChoices$outboundSchema, DeploymentStreamChoices$, DeploymentStreamDeploymentsMetadata$inboundSchema, DeploymentStreamDeploymentsMetadata$outboundSchema, DeploymentStreamDeploymentsMetadata$, DeploymentStreamRetrievals$inboundSchema, DeploymentStreamRetrievals$outboundSchema, DeploymentStreamRetrievals$, DeploymentStreamData$inboundSchema, DeploymentStreamData$outboundSchema, DeploymentStreamData$, DeploymentStreamResponseBody$inboundSchema, DeploymentStreamResponseBody$outboundSchema, DeploymentStreamResponseBody$;
44560
44554
  var init_deploymentstream = __esm(() => {
44561
44555
  init_esm();
44562
44556
  init_primitives();
@@ -44721,12 +44715,6 @@ var init_deploymentstream = __esm(() => {
44721
44715
  DeploymentStreamGlobals$.inboundSchema = DeploymentStreamGlobals$inboundSchema;
44722
44716
  DeploymentStreamGlobals$.outboundSchema = DeploymentStreamGlobals$outboundSchema;
44723
44717
  })(DeploymentStreamGlobals$ ||= {});
44724
- DeploymentStreamInputs$inboundSchema = unionType([stringType(), numberType(), booleanType()]);
44725
- DeploymentStreamInputs$outboundSchema = unionType([stringType(), numberType(), booleanType()]);
44726
- ((DeploymentStreamInputs$) => {
44727
- DeploymentStreamInputs$.inboundSchema = DeploymentStreamInputs$inboundSchema;
44728
- DeploymentStreamInputs$.outboundSchema = DeploymentStreamInputs$outboundSchema;
44729
- })(DeploymentStreamInputs$ ||= {});
44730
44718
  DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$inboundSchema = nativeEnumType(DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role);
44731
44719
  DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$outboundSchema = DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$inboundSchema;
44732
44720
  ((DeploymentStreamPrefixMessagesDeploymentsRequestRequestBody5Role$) => {
@@ -46263,7 +46251,7 @@ var init_deploymentstream = __esm(() => {
46263
46251
  })(DeploymentStreamKnowledgeFilter$ ||= {});
46264
46252
  DeploymentStreamRequestBody$inboundSchema = objectType({
46265
46253
  key: stringType(),
46266
- inputs: recordType(unionType([stringType(), numberType(), booleanType()])).optional(),
46254
+ inputs: recordType(anyType()).optional(),
46267
46255
  context: recordType(anyType()).optional(),
46268
46256
  prefix_messages: arrayType(unionType([
46269
46257
  lazyType(() => PrefixMessagesToolMessage$inboundSchema),
@@ -46311,7 +46299,7 @@ var init_deploymentstream = __esm(() => {
46311
46299
  });
46312
46300
  DeploymentStreamRequestBody$outboundSchema = objectType({
46313
46301
  key: stringType(),
46314
- inputs: recordType(unionType([stringType(), numberType(), booleanType()])).optional(),
46302
+ inputs: recordType(anyType()).optional(),
46315
46303
  context: recordType(anyType()).optional(),
46316
46304
  prefixMessages: arrayType(unionType([
46317
46305
  lazyType(() => PrefixMessagesToolMessage$outboundSchema),
@@ -48225,7 +48213,7 @@ var init_fileget = __esm(() => {
48225
48213
  bytes: numberType(),
48226
48214
  file_name: stringType(),
48227
48215
  workspace_id: stringType(),
48228
- created: stringType().datetime({ offset: true }).default("2025-07-24T20:00:13.137Z").transform((v2) => new Date(v2))
48216
+ created: stringType().datetime({ offset: true }).default("2025-07-25T10:00:03.611Z").transform((v2) => new Date(v2))
48229
48217
  }).transform((v2) => {
48230
48218
  return remap(v2, {
48231
48219
  _id: "id",
@@ -48241,7 +48229,7 @@ var init_fileget = __esm(() => {
48241
48229
  bytes: numberType(),
48242
48230
  fileName: stringType(),
48243
48231
  workspaceId: stringType(),
48244
- created: dateType().default(() => new Date("2025-07-24T20:00:13.137Z")).transform((v2) => v2.toISOString())
48232
+ created: dateType().default(() => new Date("2025-07-25T10:00:03.611Z")).transform((v2) => v2.toISOString())
48245
48233
  }).transform((v2) => {
48246
48234
  return remap(v2, {
48247
48235
  id: "_id",
@@ -48312,7 +48300,7 @@ var init_filelist = __esm(() => {
48312
48300
  bytes: numberType(),
48313
48301
  file_name: stringType(),
48314
48302
  workspace_id: stringType(),
48315
- created: stringType().datetime({ offset: true }).default("2025-07-24T20:00:13.137Z").transform((v2) => new Date(v2))
48303
+ created: stringType().datetime({ offset: true }).default("2025-07-25T10:00:03.611Z").transform((v2) => new Date(v2))
48316
48304
  }).transform((v2) => {
48317
48305
  return remap(v2, {
48318
48306
  _id: "id",
@@ -48328,7 +48316,7 @@ var init_filelist = __esm(() => {
48328
48316
  bytes: numberType(),
48329
48317
  fileName: stringType(),
48330
48318
  workspaceId: stringType(),
48331
- created: dateType().default(() => new Date("2025-07-24T20:00:13.137Z")).transform((v2) => v2.toISOString())
48319
+ created: dateType().default(() => new Date("2025-07-25T10:00:03.611Z")).transform((v2) => v2.toISOString())
48332
48320
  }).transform((v2) => {
48333
48321
  return remap(v2, {
48334
48322
  id: "_id",
@@ -48460,7 +48448,7 @@ var init_fileupload = __esm(() => {
48460
48448
  bytes: numberType(),
48461
48449
  file_name: stringType(),
48462
48450
  workspace_id: stringType(),
48463
- created: stringType().datetime({ offset: true }).default("2025-07-24T20:00:13.137Z").transform((v2) => new Date(v2))
48451
+ created: stringType().datetime({ offset: true }).default("2025-07-25T10:00:03.611Z").transform((v2) => new Date(v2))
48464
48452
  }).transform((v2) => {
48465
48453
  return remap(v2, {
48466
48454
  _id: "id",
@@ -48476,7 +48464,7 @@ var init_fileupload = __esm(() => {
48476
48464
  bytes: numberType(),
48477
48465
  fileName: stringType(),
48478
48466
  workspaceId: stringType(),
48479
- created: dateType().default(() => new Date("2025-07-24T20:00:13.137Z")).transform((v2) => v2.toISOString())
48467
+ created: dateType().default(() => new Date("2025-07-25T10:00:03.611Z")).transform((v2) => v2.toISOString())
48480
48468
  }).transform((v2) => {
48481
48469
  return remap(v2, {
48482
48470
  id: "_id",
@@ -49482,8 +49470,8 @@ var init_getevals = __esm(() => {
49482
49470
  Typescript$inboundSchema = objectType({
49483
49471
  _id: stringType(),
49484
49472
  description: stringType(),
49485
- created: stringType().default("2025-07-24T20:00:12.253Z"),
49486
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
49473
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
49474
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
49487
49475
  guardrail_config: unionType([
49488
49476
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
49489
49477
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -49500,8 +49488,8 @@ var init_getevals = __esm(() => {
49500
49488
  Typescript$outboundSchema = objectType({
49501
49489
  id: stringType(),
49502
49490
  description: stringType(),
49503
- created: stringType().default("2025-07-24T20:00:12.253Z"),
49504
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
49491
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
49492
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
49505
49493
  guardrailConfig: unionType([
49506
49494
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
49507
49495
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -49594,8 +49582,8 @@ var init_getevals = __esm(() => {
49594
49582
  Ragas$inboundSchema = objectType({
49595
49583
  _id: stringType(),
49596
49584
  description: stringType(),
49597
- created: stringType().default("2025-07-24T20:00:12.253Z"),
49598
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
49585
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
49586
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
49599
49587
  guardrail_config: unionType([
49600
49588
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
49601
49589
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -49614,8 +49602,8 @@ var init_getevals = __esm(() => {
49614
49602
  Ragas$outboundSchema = objectType({
49615
49603
  id: stringType(),
49616
49604
  description: stringType(),
49617
- created: stringType().default("2025-07-24T20:00:12.253Z"),
49618
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
49605
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
49606
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
49619
49607
  guardrailConfig: unionType([
49620
49608
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
49621
49609
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -50166,8 +50154,8 @@ var init_getevals = __esm(() => {
50166
50154
  DataFunction$inboundSchema = objectType({
50167
50155
  _id: stringType(),
50168
50156
  description: stringType(),
50169
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50170
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50157
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50158
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50171
50159
  guardrail_config: unionType([
50172
50160
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
50173
50161
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -50210,8 +50198,8 @@ var init_getevals = __esm(() => {
50210
50198
  DataFunction$outboundSchema = objectType({
50211
50199
  id: stringType(),
50212
50200
  description: stringType(),
50213
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50214
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50201
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50202
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50215
50203
  guardrailConfig: unionType([
50216
50204
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
50217
50205
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -50324,8 +50312,8 @@ var init_getevals = __esm(() => {
50324
50312
  DataPython$inboundSchema = objectType({
50325
50313
  _id: stringType(),
50326
50314
  description: stringType(),
50327
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50328
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50315
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50316
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50329
50317
  guardrail_config: unionType([
50330
50318
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
50331
50319
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
@@ -50342,8 +50330,8 @@ var init_getevals = __esm(() => {
50342
50330
  DataPython$outboundSchema = objectType({
50343
50331
  id: stringType(),
50344
50332
  description: stringType(),
50345
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50346
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50333
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50334
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50347
50335
  guardrailConfig: unionType([
50348
50336
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
50349
50337
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
@@ -50436,8 +50424,8 @@ var init_getevals = __esm(() => {
50436
50424
  DataHTTP$inboundSchema = objectType({
50437
50425
  _id: stringType(),
50438
50426
  description: stringType(),
50439
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50440
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50427
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50428
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50441
50429
  guardrail_config: unionType([
50442
50430
  lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
50443
50431
  lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
@@ -50457,8 +50445,8 @@ var init_getevals = __esm(() => {
50457
50445
  DataHTTP$outboundSchema = objectType({
50458
50446
  id: stringType(),
50459
50447
  description: stringType(),
50460
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50461
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50448
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50449
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50462
50450
  guardrailConfig: unionType([
50463
50451
  lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
50464
50452
  lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
@@ -50548,8 +50536,8 @@ var init_getevals = __esm(() => {
50548
50536
  DataJSON$inboundSchema = objectType({
50549
50537
  _id: stringType(),
50550
50538
  description: stringType(),
50551
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50552
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50539
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50540
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50553
50541
  guardrail_config: unionType([
50554
50542
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
50555
50543
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
@@ -50566,8 +50554,8 @@ var init_getevals = __esm(() => {
50566
50554
  DataJSON$outboundSchema = objectType({
50567
50555
  id: stringType(),
50568
50556
  description: stringType(),
50569
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50570
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50557
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50558
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50571
50559
  guardrailConfig: unionType([
50572
50560
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
50573
50561
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
@@ -50654,8 +50642,8 @@ var init_getevals = __esm(() => {
50654
50642
  DataLLM$inboundSchema = objectType({
50655
50643
  _id: stringType(),
50656
50644
  description: stringType(),
50657
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50658
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50645
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50646
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50659
50647
  guardrail_config: unionType([
50660
50648
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
50661
50649
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -50673,8 +50661,8 @@ var init_getevals = __esm(() => {
50673
50661
  DataLLM$outboundSchema = objectType({
50674
50662
  id: stringType(),
50675
50663
  description: stringType(),
50676
- created: stringType().default("2025-07-24T20:00:12.253Z"),
50677
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
50664
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
50665
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
50678
50666
  guardrailConfig: unionType([
50679
50667
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
50680
50668
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -53073,7 +53061,7 @@ var init_listcontacts = __esm(() => {
53073
53061
  tags: arrayType(stringType()).optional(),
53074
53062
  metadata: recordType(anyType()).optional(),
53075
53063
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53076
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2)),
53064
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2)),
53077
53065
  metrics: lazyType(() => Metrics$inboundSchema)
53078
53066
  }).transform((v2) => {
53079
53067
  return remap(v2, {
@@ -53092,7 +53080,7 @@ var init_listcontacts = __esm(() => {
53092
53080
  tags: arrayType(stringType()).optional(),
53093
53081
  metadata: recordType(anyType()).optional(),
53094
53082
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53095
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString()),
53083
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString()),
53096
53084
  metrics: lazyType(() => Metrics$outboundSchema)
53097
53085
  }).transform((v2) => {
53098
53086
  return remap(v2, {
@@ -53707,7 +53695,7 @@ var init_listdatasetdatapoints = __esm(() => {
53707
53695
  created_by_id: stringType().optional(),
53708
53696
  updated_by_id: stringType().optional(),
53709
53697
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53710
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
53698
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
53711
53699
  }).transform((v2) => {
53712
53700
  return remap(v2, {
53713
53701
  _id: "id",
@@ -53734,7 +53722,7 @@ var init_listdatasetdatapoints = __esm(() => {
53734
53722
  createdById: stringType().optional(),
53735
53723
  updatedById: stringType().optional(),
53736
53724
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53737
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
53725
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
53738
53726
  }).transform((v2) => {
53739
53727
  return remap(v2, {
53740
53728
  id: "_id",
@@ -53842,7 +53830,7 @@ var init_listdatasets = __esm(() => {
53842
53830
  updated_by_id: stringType().optional(),
53843
53831
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
53844
53832
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53845
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
53833
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
53846
53834
  }).transform((v2) => {
53847
53835
  return remap(v2, {
53848
53836
  _id: "id",
@@ -53862,7 +53850,7 @@ var init_listdatasets = __esm(() => {
53862
53850
  updatedById: stringType().optional(),
53863
53851
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
53864
53852
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53865
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
53853
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
53866
53854
  }).transform((v2) => {
53867
53855
  return remap(v2, {
53868
53856
  id: "_id",
@@ -53967,7 +53955,7 @@ var init_listdatasources = __esm(() => {
53967
53955
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
53968
53956
  })(ListDatasourcesStatus$ ||= {});
53969
53957
  ListDatasourcesData$inboundSchema = objectType({
53970
- _id: stringType().default("01K0Z0BD13PZKX5N7249EFFCTP"),
53958
+ _id: stringType().default("01K10GD6X54SNAWNKB32E48EC8"),
53971
53959
  display_name: stringType(),
53972
53960
  description: stringType().optional(),
53973
53961
  status: ListDatasourcesStatus$inboundSchema,
@@ -53990,7 +53978,7 @@ var init_listdatasources = __esm(() => {
53990
53978
  });
53991
53979
  });
53992
53980
  ListDatasourcesData$outboundSchema = objectType({
53993
- id: stringType().default("01K0Z0BD13PZKX5N7249EFFCTP"),
53981
+ id: stringType().default("01K10GD6X54SNAWNKB32E48EC8"),
53994
53982
  displayName: stringType(),
53995
53983
  description: stringType().optional(),
53996
53984
  status: ListDatasourcesStatus$outboundSchema,
@@ -55500,7 +55488,7 @@ var init_retrievecontact = __esm(() => {
55500
55488
  tags: arrayType(stringType()).optional(),
55501
55489
  metadata: recordType(anyType()).optional(),
55502
55490
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55503
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
55491
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
55504
55492
  }).transform((v2) => {
55505
55493
  return remap(v2, {
55506
55494
  _id: "id",
@@ -55518,7 +55506,7 @@ var init_retrievecontact = __esm(() => {
55518
55506
  tags: arrayType(stringType()).optional(),
55519
55507
  metadata: recordType(anyType()).optional(),
55520
55508
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55521
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
55509
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
55522
55510
  }).transform((v2) => {
55523
55511
  return remap(v2, {
55524
55512
  id: "_id",
@@ -56095,7 +56083,7 @@ var init_retrievedatapoint = __esm(() => {
56095
56083
  created_by_id: stringType().optional(),
56096
56084
  updated_by_id: stringType().optional(),
56097
56085
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56098
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
56086
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
56099
56087
  }).transform((v2) => {
56100
56088
  return remap(v2, {
56101
56089
  _id: "id",
@@ -56122,7 +56110,7 @@ var init_retrievedatapoint = __esm(() => {
56122
56110
  createdById: stringType().optional(),
56123
56111
  updatedById: stringType().optional(),
56124
56112
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56125
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
56113
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
56126
56114
  }).transform((v2) => {
56127
56115
  return remap(v2, {
56128
56116
  id: "_id",
@@ -56193,7 +56181,7 @@ var init_retrievedataset = __esm(() => {
56193
56181
  updated_by_id: stringType().optional(),
56194
56182
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
56195
56183
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56196
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
56184
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
56197
56185
  }).transform((v2) => {
56198
56186
  return remap(v2, {
56199
56187
  _id: "id",
@@ -56213,7 +56201,7 @@ var init_retrievedataset = __esm(() => {
56213
56201
  updatedById: stringType().optional(),
56214
56202
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
56215
56203
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56216
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
56204
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
56217
56205
  }).transform((v2) => {
56218
56206
  return remap(v2, {
56219
56207
  id: "_id",
@@ -56271,7 +56259,7 @@ var init_retrievedatasource = __esm(() => {
56271
56259
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
56272
56260
  })(RetrieveDatasourceStatus$ ||= {});
56273
56261
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
56274
- _id: stringType().default("01K0Z0BD14ZWKZJW6NTADMJ57K"),
56262
+ _id: stringType().default("01K10GD6X6Y4G4CZ6P0CCN3WT9"),
56275
56263
  display_name: stringType(),
56276
56264
  description: stringType().optional(),
56277
56265
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -56294,7 +56282,7 @@ var init_retrievedatasource = __esm(() => {
56294
56282
  });
56295
56283
  });
56296
56284
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
56297
- id: stringType().default("01K0Z0BD14ZWKZJW6NTADMJ57K"),
56285
+ id: stringType().default("01K10GD6X6Y4G4CZ6P0CCN3WT9"),
56298
56286
  displayName: stringType(),
56299
56287
  description: stringType().optional(),
56300
56288
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -57175,7 +57163,7 @@ var init_updatecontact = __esm(() => {
57175
57163
  tags: arrayType(stringType()).optional(),
57176
57164
  metadata: recordType(anyType()).optional(),
57177
57165
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
57178
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
57166
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
57179
57167
  }).transform((v2) => {
57180
57168
  return remap(v2, {
57181
57169
  _id: "id",
@@ -57193,7 +57181,7 @@ var init_updatecontact = __esm(() => {
57193
57181
  tags: arrayType(stringType()).optional(),
57194
57182
  metadata: recordType(anyType()).optional(),
57195
57183
  created: dateType().transform((v2) => v2.toISOString()).optional(),
57196
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
57184
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
57197
57185
  }).transform((v2) => {
57198
57186
  return remap(v2, {
57199
57187
  id: "_id",
@@ -58327,7 +58315,7 @@ var init_updatedatapoint = __esm(() => {
58327
58315
  created_by_id: stringType().optional(),
58328
58316
  updated_by_id: stringType().optional(),
58329
58317
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58330
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
58318
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
58331
58319
  }).transform((v2) => {
58332
58320
  return remap(v2, {
58333
58321
  _id: "id",
@@ -58354,7 +58342,7 @@ var init_updatedatapoint = __esm(() => {
58354
58342
  createdById: stringType().optional(),
58355
58343
  updatedById: stringType().optional(),
58356
58344
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58357
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
58345
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
58358
58346
  }).transform((v2) => {
58359
58347
  return remap(v2, {
58360
58348
  id: "_id",
@@ -58455,7 +58443,7 @@ var init_updatedataset = __esm(() => {
58455
58443
  parent_id: stringType().optional(),
58456
58444
  version: stringType().optional(),
58457
58445
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58458
- updated: stringType().datetime({ offset: true }).default("2025-07-24T20:00:10.116Z").transform((v2) => new Date(v2))
58446
+ updated: stringType().datetime({ offset: true }).default("2025-07-25T10:00:00.471Z").transform((v2) => new Date(v2))
58459
58447
  }).transform((v2) => {
58460
58448
  return remap(v2, {
58461
58449
  _id: "id",
@@ -58478,7 +58466,7 @@ var init_updatedataset = __esm(() => {
58478
58466
  parentId: stringType().optional(),
58479
58467
  version: stringType().optional(),
58480
58468
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58481
- updated: dateType().default(() => new Date("2025-07-24T20:00:10.116Z")).transform((v2) => v2.toISOString())
58469
+ updated: dateType().default(() => new Date("2025-07-25T10:00:00.471Z")).transform((v2) => v2.toISOString())
58482
58470
  }).transform((v2) => {
58483
58471
  return remap(v2, {
58484
58472
  id: "_id",
@@ -58559,7 +58547,7 @@ var init_updatedatasource = __esm(() => {
58559
58547
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
58560
58548
  })(UpdateDatasourceStatus$ ||= {});
58561
58549
  UpdateDatasourceResponseBody$inboundSchema = objectType({
58562
- _id: stringType().default("01K0Z0BD16ZRZBNST7EZ5TCVN2"),
58550
+ _id: stringType().default("01K10GD6X8208VBGN1H6RNAHSY"),
58563
58551
  display_name: stringType(),
58564
58552
  description: stringType().optional(),
58565
58553
  status: UpdateDatasourceStatus$inboundSchema,
@@ -58582,7 +58570,7 @@ var init_updatedatasource = __esm(() => {
58582
58570
  });
58583
58571
  });
58584
58572
  UpdateDatasourceResponseBody$outboundSchema = objectType({
58585
- id: stringType().default("01K0Z0BD16ZRZBNST7EZ5TCVN2"),
58573
+ id: stringType().default("01K10GD6X8208VBGN1H6RNAHSY"),
58586
58574
  displayName: stringType(),
58587
58575
  description: stringType().optional(),
58588
58576
  status: UpdateDatasourceStatus$outboundSchema,
@@ -59288,8 +59276,8 @@ var init_updateeval = __esm(() => {
59288
59276
  UpdateEvalResponseBodyPython$inboundSchema = objectType({
59289
59277
  _id: stringType(),
59290
59278
  description: stringType(),
59291
- created: stringType().default("2025-07-24T20:00:12.253Z"),
59292
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
59279
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
59280
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
59293
59281
  guardrail_config: unionType([
59294
59282
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
59295
59283
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -59306,8 +59294,8 @@ var init_updateeval = __esm(() => {
59306
59294
  UpdateEvalResponseBodyPython$outboundSchema = objectType({
59307
59295
  id: stringType(),
59308
59296
  description: stringType(),
59309
- created: stringType().default("2025-07-24T20:00:12.253Z"),
59310
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
59297
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
59298
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
59311
59299
  guardrailConfig: unionType([
59312
59300
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
59313
59301
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -59400,8 +59388,8 @@ var init_updateeval = __esm(() => {
59400
59388
  UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
59401
59389
  _id: stringType(),
59402
59390
  description: stringType(),
59403
- created: stringType().default("2025-07-24T20:00:12.253Z"),
59404
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
59391
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
59392
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
59405
59393
  guardrail_config: unionType([
59406
59394
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
59407
59395
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -59421,8 +59409,8 @@ var init_updateeval = __esm(() => {
59421
59409
  UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
59422
59410
  id: stringType(),
59423
59411
  description: stringType(),
59424
- created: stringType().default("2025-07-24T20:00:12.253Z"),
59425
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
59412
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
59413
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
59426
59414
  guardrailConfig: unionType([
59427
59415
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
59428
59416
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -59512,8 +59500,8 @@ var init_updateeval = __esm(() => {
59512
59500
  UpdateEvalResponseBodyJSON$inboundSchema = objectType({
59513
59501
  _id: stringType(),
59514
59502
  description: stringType(),
59515
- created: stringType().default("2025-07-24T20:00:12.253Z"),
59516
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
59503
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
59504
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
59517
59505
  guardrail_config: unionType([
59518
59506
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
59519
59507
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -59530,8 +59518,8 @@ var init_updateeval = __esm(() => {
59530
59518
  UpdateEvalResponseBodyJSON$outboundSchema = objectType({
59531
59519
  id: stringType(),
59532
59520
  description: stringType(),
59533
- created: stringType().default("2025-07-24T20:00:12.253Z"),
59534
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
59521
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
59522
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
59535
59523
  guardrailConfig: unionType([
59536
59524
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
59537
59525
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -59618,8 +59606,8 @@ var init_updateeval = __esm(() => {
59618
59606
  UpdateEvalResponseBodyLLM$inboundSchema = objectType({
59619
59607
  _id: stringType(),
59620
59608
  description: stringType(),
59621
- created: stringType().default("2025-07-24T20:00:12.253Z"),
59622
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
59609
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
59610
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
59623
59611
  guardrail_config: unionType([
59624
59612
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
59625
59613
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -59637,8 +59625,8 @@ var init_updateeval = __esm(() => {
59637
59625
  UpdateEvalResponseBodyLLM$outboundSchema = objectType({
59638
59626
  id: stringType(),
59639
59627
  description: stringType(),
59640
- created: stringType().default("2025-07-24T20:00:12.253Z"),
59641
- updated: stringType().default("2025-07-24T20:00:12.253Z"),
59628
+ created: stringType().default("2025-07-25T10:00:02.717Z"),
59629
+ updated: stringType().default("2025-07-25T10:00:02.717Z"),
59642
59630
  guardrailConfig: unionType([
59643
59631
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
59644
59632
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -65983,7 +65971,7 @@ Retrieve the deployment configuration`,
65983
65971
  });
65984
65972
 
65985
65973
  // src/models/components/deployments.ts
65986
- var DeploymentsPrefixMessages5Role, Deployments2PrefixMessages4ContentType, Deployments2PrefixMessages4Type, DeploymentsPrefixMessages4Role, Type2, DeploymentsPrefixMessagesRole, Deployments2PrefixMessagesType, Deployments2Type2, Format2, TwoType2, Detail2, Deployments2PrefixMessages3Type, PrefixMessagesRole2, Role2, DeploymentsMessages5Role, Deployments2Messages4ContentType, Deployments2Messages4Type, DeploymentsMessages4Role, MessagesType2, DeploymentsMessages3Role, Deployments2Messages3Content4Type, Deployments2Messages3ContentType, TwoFormat2, Deployments2Messages3Type, TwoDetail2, Deployments2MessagesType, DeploymentsMessagesRole, MessagesRole2, Inputs$inboundSchema2, Inputs$outboundSchema2, Inputs$2, DeploymentsPrefixMessages5Role$inboundSchema, DeploymentsPrefixMessages5Role$outboundSchema, DeploymentsPrefixMessages5Role$, DeploymentsPrefixMessagesContent$inboundSchema, DeploymentsPrefixMessagesContent$outboundSchema, DeploymentsPrefixMessagesContent$, ToolMessage$inboundSchema2, ToolMessage$outboundSchema2, ToolMessage$2, Deployments2PrefixMessages4ContentType$inboundSchema, Deployments2PrefixMessages4ContentType$outboundSchema, Deployments2PrefixMessages4ContentType$, RefusalContentPart$inboundSchema2, RefusalContentPart$outboundSchema2, RefusalContentPart$2, Deployments2PrefixMessages4Type$inboundSchema, Deployments2PrefixMessages4Type$outboundSchema, Deployments2PrefixMessages4Type$, TextContentPart$inboundSchema2, TextContentPart$outboundSchema2, TextContentPart$2, Content2$inboundSchema2, Content2$outboundSchema2, Content2$2, PrefixMessagesContent$inboundSchema2, PrefixMessagesContent$outboundSchema2, PrefixMessagesContent$2, DeploymentsPrefixMessages4Role$inboundSchema, DeploymentsPrefixMessages4Role$outboundSchema, DeploymentsPrefixMessages4Role$, Audio$inboundSchema2, Audio$outboundSchema2, Audio$2, Type$inboundSchema2, Type$outboundSchema2, Type$2, FunctionT$inboundSchema2, FunctionT$outboundSchema2, FunctionT$2, ToolCalls$inboundSchema2, ToolCalls$outboundSchema2, ToolCalls$2, AssistantMessage$inboundSchema2, AssistantMessage$outboundSchema2, AssistantMessage$2, DeploymentsPrefixMessagesRole$inboundSchema, DeploymentsPrefixMessagesRole$outboundSchema, DeploymentsPrefixMessagesRole$, Deployments2PrefixMessagesType$inboundSchema, Deployments2PrefixMessagesType$outboundSchema, Deployments2PrefixMessagesType$, FileT$inboundSchema2, FileT$outboundSchema2, FileT$2, Four$inboundSchema2, Four$outboundSchema2, Four$2, Deployments2Type$inboundSchema2, Deployments2Type$outboundSchema2, Deployments2Type$2, Format$inboundSchema2, Format$outboundSchema2, Format$2, InputAudio$inboundSchema2, InputAudio$outboundSchema2, InputAudio$2, Deployments23$inboundSchema2, Deployments23$outboundSchema2, Deployments23$2, TwoType$inboundSchema2, TwoType$outboundSchema2, TwoType$2, Detail$inboundSchema2, Detail$outboundSchema2, Detail$2, ImageUrl$inboundSchema2, ImageUrl$outboundSchema2, ImageUrl$2, Two2$inboundSchema2, Two2$outboundSchema2, Two2$2, Deployments2PrefixMessages3Type$inboundSchema, Deployments2PrefixMessages3Type$outboundSchema, Deployments2PrefixMessages3Type$, Deployments21$inboundSchema2, Deployments21$outboundSchema2, Deployments21$2, Two$inboundSchema2, Two$outboundSchema2, Two$2, Content$inboundSchema2, Content$outboundSchema2, Content$2, UserMessage$inboundSchema2, UserMessage$outboundSchema2, UserMessage$2, PrefixMessagesRole$inboundSchema2, PrefixMessagesRole$outboundSchema2, PrefixMessagesRole$2, SystemMessage$inboundSchema2, SystemMessage$outboundSchema2, SystemMessage$2, Role$inboundSchema2, Role$outboundSchema2, Role$2, DeveloperMessage$inboundSchema2, DeveloperMessage$outboundSchema2, DeveloperMessage$2, PrefixMessages$inboundSchema2, PrefixMessages$outboundSchema2, PrefixMessages$2, DeploymentsMessages5Role$inboundSchema, DeploymentsMessages5Role$outboundSchema, DeploymentsMessages5Role$, DeploymentsMessages5Content$inboundSchema, DeploymentsMessages5Content$outboundSchema, DeploymentsMessages5Content$, MessagesToolMessage$inboundSchema2, MessagesToolMessage$outboundSchema2, MessagesToolMessage$2, Deployments2Messages4ContentType$inboundSchema, Deployments2Messages4ContentType$outboundSchema, Deployments2Messages4ContentType$, TwoRefusalContentPart$inboundSchema2, TwoRefusalContentPart$outboundSchema2, TwoRefusalContentPart$2, Deployments2Messages4Type$inboundSchema, Deployments2Messages4Type$outboundSchema, Deployments2Messages4Type$, TwoTextContentPart$inboundSchema2, TwoTextContentPart$outboundSchema2, TwoTextContentPart$2, DeploymentsContentMessages2$inboundSchema, DeploymentsContentMessages2$outboundSchema, DeploymentsContentMessages2$, DeploymentsMessagesContent$inboundSchema, DeploymentsMessagesContent$outboundSchema, DeploymentsMessagesContent$, DeploymentsMessages4Role$inboundSchema, DeploymentsMessages4Role$outboundSchema, DeploymentsMessages4Role$, MessagesAudio$inboundSchema2, MessagesAudio$outboundSchema2, MessagesAudio$2, MessagesType$inboundSchema2, MessagesType$outboundSchema2, MessagesType$2, MessagesFunction$inboundSchema2, MessagesFunction$outboundSchema2, MessagesFunction$2, MessagesToolCalls$inboundSchema2, MessagesToolCalls$outboundSchema2, MessagesToolCalls$2, MessagesAssistantMessage$inboundSchema2, MessagesAssistantMessage$outboundSchema2, MessagesAssistantMessage$2, DeploymentsMessages3Role$inboundSchema, DeploymentsMessages3Role$outboundSchema, DeploymentsMessages3Role$, Deployments2Messages3Content4Type$inboundSchema, Deployments2Messages3Content4Type$outboundSchema, Deployments2Messages3Content4Type$, TwoFile$inboundSchema2, TwoFile$outboundSchema2, TwoFile$2, Two4$inboundSchema2, Two4$outboundSchema2, Two4$2, Deployments2Messages3ContentType$inboundSchema, Deployments2Messages3ContentType$outboundSchema, Deployments2Messages3ContentType$, TwoFormat$inboundSchema2, TwoFormat$outboundSchema2, TwoFormat$2, TwoInputAudio$inboundSchema2, TwoInputAudio$outboundSchema2, TwoInputAudio$2, Two3$inboundSchema2, Two3$outboundSchema2, Two3$2, Deployments2Messages3Type$inboundSchema, Deployments2Messages3Type$outboundSchema, Deployments2Messages3Type$, TwoDetail$inboundSchema2, TwoDetail$outboundSchema2, TwoDetail$2, TwoImageUrl$inboundSchema2, TwoImageUrl$outboundSchema2, TwoImageUrl$2, Deployments22$inboundSchema2, Deployments22$outboundSchema2, Deployments22$2, Deployments2MessagesType$inboundSchema, Deployments2MessagesType$outboundSchema, Deployments2MessagesType$, Two1$inboundSchema2, Two1$outboundSchema2, Two1$2, DeploymentsContent2$inboundSchema2, DeploymentsContent2$outboundSchema2, DeploymentsContent2$2, MessagesContent$inboundSchema2, MessagesContent$outboundSchema2, MessagesContent$2, MessagesUserMessage$inboundSchema2, MessagesUserMessage$outboundSchema2, MessagesUserMessage$2, DeploymentsMessagesRole$inboundSchema, DeploymentsMessagesRole$outboundSchema, DeploymentsMessagesRole$, MessagesSystemMessage$inboundSchema2, MessagesSystemMessage$outboundSchema2, MessagesSystemMessage$2, MessagesRole$inboundSchema2, MessagesRole$outboundSchema2, MessagesRole$2, MessagesDeveloperMessage$inboundSchema2, MessagesDeveloperMessage$outboundSchema2, MessagesDeveloperMessage$2, Messages$inboundSchema2, Messages$outboundSchema2, Messages$2, Metadata$inboundSchema2, Metadata$outboundSchema2, Metadata$2, Documents$inboundSchema2, Documents$outboundSchema2, Documents$2, InvokeOptions$inboundSchema2, InvokeOptions$outboundSchema2, InvokeOptions$2, Thread$inboundSchema2, Thread$outboundSchema2, Thread$2, OrExists$inboundSchema2, OrExists$outboundSchema2, OrExists$2, OrNin$inboundSchema2, OrNin$outboundSchema2, OrNin$2, DeploymentsOrNin$inboundSchema, DeploymentsOrNin$outboundSchema, DeploymentsOrNin$, OrIn$inboundSchema2, OrIn$outboundSchema2, OrIn$2, DeploymentsOrIn$inboundSchema, DeploymentsOrIn$outboundSchema, DeploymentsOrIn$, OrLte$inboundSchema2, OrLte$outboundSchema2, OrLte$2, OrLt$inboundSchema2, OrLt$outboundSchema2, OrLt$2, OrGte$inboundSchema2, OrGte$outboundSchema2, OrGte$2, Or3$inboundSchema2, Or3$outboundSchema2, Or3$2, OrNe$inboundSchema2, OrNe$outboundSchema2, OrNe$2, DeploymentsOrNe$inboundSchema, DeploymentsOrNe$outboundSchema, DeploymentsOrNe$, OrEq$inboundSchema2, OrEq$outboundSchema2, OrEq$2, DeploymentsOrEq$inboundSchema, DeploymentsOrEq$outboundSchema, DeploymentsOrEq$, Or$inboundSchema2, Or$outboundSchema2, Or$2, KnowledgeFilterOr$inboundSchema2, KnowledgeFilterOr$outboundSchema2, KnowledgeFilterOr$2, AndExists$inboundSchema2, AndExists$outboundSchema2, AndExists$2, AndNin$inboundSchema2, AndNin$outboundSchema2, AndNin$2, DeploymentsAndNin$inboundSchema, DeploymentsAndNin$outboundSchema, DeploymentsAndNin$, AndIn$inboundSchema2, AndIn$outboundSchema2, AndIn$2, DeploymentsAndIn$inboundSchema, DeploymentsAndIn$outboundSchema, DeploymentsAndIn$, AndLte$inboundSchema2, AndLte$outboundSchema2, AndLte$2, AndLt$inboundSchema2, AndLt$outboundSchema2, AndLt$2, AndGte$inboundSchema2, AndGte$outboundSchema2, AndGte$2, And3$inboundSchema2, And3$outboundSchema2, And3$2, AndNe$inboundSchema2, AndNe$outboundSchema2, AndNe$2, DeploymentsAndNe$inboundSchema, DeploymentsAndNe$outboundSchema, DeploymentsAndNe$, AndEq$inboundSchema2, AndEq$outboundSchema2, AndEq$2, DeploymentsAndEq$inboundSchema, DeploymentsAndEq$outboundSchema, DeploymentsAndEq$, And$inboundSchema2, And$outboundSchema2, And$2, KnowledgeFilterAnd$inboundSchema2, KnowledgeFilterAnd$outboundSchema2, KnowledgeFilterAnd$2, Exists$inboundSchema2, Exists$outboundSchema2, Exists$2, Nin$inboundSchema2, Nin$outboundSchema2, Nin$2, OneNin$inboundSchema2, OneNin$outboundSchema2, OneNin$2, In$inboundSchema2, In$outboundSchema2, In$2, OneIn$inboundSchema2, OneIn$outboundSchema2, OneIn$2, Lte$inboundSchema2, Lte$outboundSchema2, Lte$2, Lt$inboundSchema2, Lt$outboundSchema2, Lt$2, Gte$inboundSchema2, Gte$outboundSchema2, Gte$2, Three$inboundSchema2, Three$outboundSchema2, Three$2, Ne$inboundSchema2, Ne$outboundSchema2, Ne$2, OneNe$inboundSchema2, OneNe$outboundSchema2, OneNe$2, Eq$inboundSchema2, Eq$outboundSchema2, Eq$2, OneEq$inboundSchema2, OneEq$outboundSchema2, OneEq$2, One$inboundSchema2, One$outboundSchema2, One$2, KnowledgeFilter$inboundSchema2, KnowledgeFilter$outboundSchema2, KnowledgeFilter$2, Deployments$inboundSchema, Deployments$outboundSchema, Deployments$;
65974
+ var DeploymentsPrefixMessages5Role, Deployments2PrefixMessages4ContentType, Deployments2PrefixMessages4Type, DeploymentsPrefixMessages4Role, Type2, DeploymentsPrefixMessagesRole, Deployments2PrefixMessagesType, Deployments2Type2, Format2, TwoType2, Detail2, Deployments2PrefixMessages3Type, PrefixMessagesRole2, Role2, DeploymentsMessages5Role, Deployments2Messages4ContentType, Deployments2Messages4Type, DeploymentsMessages4Role, MessagesType2, DeploymentsMessages3Role, Deployments2Messages3Content4Type, Deployments2Messages3ContentType, TwoFormat2, Deployments2Messages3Type, TwoDetail2, Deployments2MessagesType, DeploymentsMessagesRole, MessagesRole2, DeploymentsPrefixMessages5Role$inboundSchema, DeploymentsPrefixMessages5Role$outboundSchema, DeploymentsPrefixMessages5Role$, DeploymentsPrefixMessagesContent$inboundSchema, DeploymentsPrefixMessagesContent$outboundSchema, DeploymentsPrefixMessagesContent$, ToolMessage$inboundSchema2, ToolMessage$outboundSchema2, ToolMessage$2, Deployments2PrefixMessages4ContentType$inboundSchema, Deployments2PrefixMessages4ContentType$outboundSchema, Deployments2PrefixMessages4ContentType$, RefusalContentPart$inboundSchema2, RefusalContentPart$outboundSchema2, RefusalContentPart$2, Deployments2PrefixMessages4Type$inboundSchema, Deployments2PrefixMessages4Type$outboundSchema, Deployments2PrefixMessages4Type$, TextContentPart$inboundSchema2, TextContentPart$outboundSchema2, TextContentPart$2, Content2$inboundSchema2, Content2$outboundSchema2, Content2$2, PrefixMessagesContent$inboundSchema2, PrefixMessagesContent$outboundSchema2, PrefixMessagesContent$2, DeploymentsPrefixMessages4Role$inboundSchema, DeploymentsPrefixMessages4Role$outboundSchema, DeploymentsPrefixMessages4Role$, Audio$inboundSchema2, Audio$outboundSchema2, Audio$2, Type$inboundSchema2, Type$outboundSchema2, Type$2, FunctionT$inboundSchema2, FunctionT$outboundSchema2, FunctionT$2, ToolCalls$inboundSchema2, ToolCalls$outboundSchema2, ToolCalls$2, AssistantMessage$inboundSchema2, AssistantMessage$outboundSchema2, AssistantMessage$2, DeploymentsPrefixMessagesRole$inboundSchema, DeploymentsPrefixMessagesRole$outboundSchema, DeploymentsPrefixMessagesRole$, Deployments2PrefixMessagesType$inboundSchema, Deployments2PrefixMessagesType$outboundSchema, Deployments2PrefixMessagesType$, FileT$inboundSchema2, FileT$outboundSchema2, FileT$2, Four$inboundSchema2, Four$outboundSchema2, Four$2, Deployments2Type$inboundSchema2, Deployments2Type$outboundSchema2, Deployments2Type$2, Format$inboundSchema2, Format$outboundSchema2, Format$2, InputAudio$inboundSchema2, InputAudio$outboundSchema2, InputAudio$2, Deployments23$inboundSchema2, Deployments23$outboundSchema2, Deployments23$2, TwoType$inboundSchema2, TwoType$outboundSchema2, TwoType$2, Detail$inboundSchema2, Detail$outboundSchema2, Detail$2, ImageUrl$inboundSchema2, ImageUrl$outboundSchema2, ImageUrl$2, Two2$inboundSchema2, Two2$outboundSchema2, Two2$2, Deployments2PrefixMessages3Type$inboundSchema, Deployments2PrefixMessages3Type$outboundSchema, Deployments2PrefixMessages3Type$, Deployments21$inboundSchema2, Deployments21$outboundSchema2, Deployments21$2, Two$inboundSchema2, Two$outboundSchema2, Two$2, Content$inboundSchema2, Content$outboundSchema2, Content$2, UserMessage$inboundSchema2, UserMessage$outboundSchema2, UserMessage$2, PrefixMessagesRole$inboundSchema2, PrefixMessagesRole$outboundSchema2, PrefixMessagesRole$2, SystemMessage$inboundSchema2, SystemMessage$outboundSchema2, SystemMessage$2, Role$inboundSchema2, Role$outboundSchema2, Role$2, DeveloperMessage$inboundSchema2, DeveloperMessage$outboundSchema2, DeveloperMessage$2, PrefixMessages$inboundSchema2, PrefixMessages$outboundSchema2, PrefixMessages$2, DeploymentsMessages5Role$inboundSchema, DeploymentsMessages5Role$outboundSchema, DeploymentsMessages5Role$, DeploymentsMessages5Content$inboundSchema, DeploymentsMessages5Content$outboundSchema, DeploymentsMessages5Content$, MessagesToolMessage$inboundSchema2, MessagesToolMessage$outboundSchema2, MessagesToolMessage$2, Deployments2Messages4ContentType$inboundSchema, Deployments2Messages4ContentType$outboundSchema, Deployments2Messages4ContentType$, TwoRefusalContentPart$inboundSchema2, TwoRefusalContentPart$outboundSchema2, TwoRefusalContentPart$2, Deployments2Messages4Type$inboundSchema, Deployments2Messages4Type$outboundSchema, Deployments2Messages4Type$, TwoTextContentPart$inboundSchema2, TwoTextContentPart$outboundSchema2, TwoTextContentPart$2, DeploymentsContentMessages2$inboundSchema, DeploymentsContentMessages2$outboundSchema, DeploymentsContentMessages2$, DeploymentsMessagesContent$inboundSchema, DeploymentsMessagesContent$outboundSchema, DeploymentsMessagesContent$, DeploymentsMessages4Role$inboundSchema, DeploymentsMessages4Role$outboundSchema, DeploymentsMessages4Role$, MessagesAudio$inboundSchema2, MessagesAudio$outboundSchema2, MessagesAudio$2, MessagesType$inboundSchema2, MessagesType$outboundSchema2, MessagesType$2, MessagesFunction$inboundSchema2, MessagesFunction$outboundSchema2, MessagesFunction$2, MessagesToolCalls$inboundSchema2, MessagesToolCalls$outboundSchema2, MessagesToolCalls$2, MessagesAssistantMessage$inboundSchema2, MessagesAssistantMessage$outboundSchema2, MessagesAssistantMessage$2, DeploymentsMessages3Role$inboundSchema, DeploymentsMessages3Role$outboundSchema, DeploymentsMessages3Role$, Deployments2Messages3Content4Type$inboundSchema, Deployments2Messages3Content4Type$outboundSchema, Deployments2Messages3Content4Type$, TwoFile$inboundSchema2, TwoFile$outboundSchema2, TwoFile$2, Two4$inboundSchema2, Two4$outboundSchema2, Two4$2, Deployments2Messages3ContentType$inboundSchema, Deployments2Messages3ContentType$outboundSchema, Deployments2Messages3ContentType$, TwoFormat$inboundSchema2, TwoFormat$outboundSchema2, TwoFormat$2, TwoInputAudio$inboundSchema2, TwoInputAudio$outboundSchema2, TwoInputAudio$2, Two3$inboundSchema2, Two3$outboundSchema2, Two3$2, Deployments2Messages3Type$inboundSchema, Deployments2Messages3Type$outboundSchema, Deployments2Messages3Type$, TwoDetail$inboundSchema2, TwoDetail$outboundSchema2, TwoDetail$2, TwoImageUrl$inboundSchema2, TwoImageUrl$outboundSchema2, TwoImageUrl$2, Deployments22$inboundSchema2, Deployments22$outboundSchema2, Deployments22$2, Deployments2MessagesType$inboundSchema, Deployments2MessagesType$outboundSchema, Deployments2MessagesType$, Two1$inboundSchema2, Two1$outboundSchema2, Two1$2, DeploymentsContent2$inboundSchema2, DeploymentsContent2$outboundSchema2, DeploymentsContent2$2, MessagesContent$inboundSchema2, MessagesContent$outboundSchema2, MessagesContent$2, MessagesUserMessage$inboundSchema2, MessagesUserMessage$outboundSchema2, MessagesUserMessage$2, DeploymentsMessagesRole$inboundSchema, DeploymentsMessagesRole$outboundSchema, DeploymentsMessagesRole$, MessagesSystemMessage$inboundSchema2, MessagesSystemMessage$outboundSchema2, MessagesSystemMessage$2, MessagesRole$inboundSchema2, MessagesRole$outboundSchema2, MessagesRole$2, MessagesDeveloperMessage$inboundSchema2, MessagesDeveloperMessage$outboundSchema2, MessagesDeveloperMessage$2, Messages$inboundSchema2, Messages$outboundSchema2, Messages$2, Metadata$inboundSchema2, Metadata$outboundSchema2, Metadata$2, Documents$inboundSchema2, Documents$outboundSchema2, Documents$2, InvokeOptions$inboundSchema2, InvokeOptions$outboundSchema2, InvokeOptions$2, Thread$inboundSchema2, Thread$outboundSchema2, Thread$2, OrExists$inboundSchema2, OrExists$outboundSchema2, OrExists$2, OrNin$inboundSchema2, OrNin$outboundSchema2, OrNin$2, DeploymentsOrNin$inboundSchema, DeploymentsOrNin$outboundSchema, DeploymentsOrNin$, OrIn$inboundSchema2, OrIn$outboundSchema2, OrIn$2, DeploymentsOrIn$inboundSchema, DeploymentsOrIn$outboundSchema, DeploymentsOrIn$, OrLte$inboundSchema2, OrLte$outboundSchema2, OrLte$2, OrLt$inboundSchema2, OrLt$outboundSchema2, OrLt$2, OrGte$inboundSchema2, OrGte$outboundSchema2, OrGte$2, Or3$inboundSchema2, Or3$outboundSchema2, Or3$2, OrNe$inboundSchema2, OrNe$outboundSchema2, OrNe$2, DeploymentsOrNe$inboundSchema, DeploymentsOrNe$outboundSchema, DeploymentsOrNe$, OrEq$inboundSchema2, OrEq$outboundSchema2, OrEq$2, DeploymentsOrEq$inboundSchema, DeploymentsOrEq$outboundSchema, DeploymentsOrEq$, Or$inboundSchema2, Or$outboundSchema2, Or$2, KnowledgeFilterOr$inboundSchema2, KnowledgeFilterOr$outboundSchema2, KnowledgeFilterOr$2, AndExists$inboundSchema2, AndExists$outboundSchema2, AndExists$2, AndNin$inboundSchema2, AndNin$outboundSchema2, AndNin$2, DeploymentsAndNin$inboundSchema, DeploymentsAndNin$outboundSchema, DeploymentsAndNin$, AndIn$inboundSchema2, AndIn$outboundSchema2, AndIn$2, DeploymentsAndIn$inboundSchema, DeploymentsAndIn$outboundSchema, DeploymentsAndIn$, AndLte$inboundSchema2, AndLte$outboundSchema2, AndLte$2, AndLt$inboundSchema2, AndLt$outboundSchema2, AndLt$2, AndGte$inboundSchema2, AndGte$outboundSchema2, AndGte$2, And3$inboundSchema2, And3$outboundSchema2, And3$2, AndNe$inboundSchema2, AndNe$outboundSchema2, AndNe$2, DeploymentsAndNe$inboundSchema, DeploymentsAndNe$outboundSchema, DeploymentsAndNe$, AndEq$inboundSchema2, AndEq$outboundSchema2, AndEq$2, DeploymentsAndEq$inboundSchema, DeploymentsAndEq$outboundSchema, DeploymentsAndEq$, And$inboundSchema2, And$outboundSchema2, And$2, KnowledgeFilterAnd$inboundSchema2, KnowledgeFilterAnd$outboundSchema2, KnowledgeFilterAnd$2, Exists$inboundSchema2, Exists$outboundSchema2, Exists$2, Nin$inboundSchema2, Nin$outboundSchema2, Nin$2, OneNin$inboundSchema2, OneNin$outboundSchema2, OneNin$2, In$inboundSchema2, In$outboundSchema2, In$2, OneIn$inboundSchema2, OneIn$outboundSchema2, OneIn$2, Lte$inboundSchema2, Lte$outboundSchema2, Lte$2, Lt$inboundSchema2, Lt$outboundSchema2, Lt$2, Gte$inboundSchema2, Gte$outboundSchema2, Gte$2, Three$inboundSchema2, Three$outboundSchema2, Three$2, Ne$inboundSchema2, Ne$outboundSchema2, Ne$2, OneNe$inboundSchema2, OneNe$outboundSchema2, OneNe$2, Eq$inboundSchema2, Eq$outboundSchema2, Eq$2, OneEq$inboundSchema2, OneEq$outboundSchema2, OneEq$2, One$inboundSchema2, One$outboundSchema2, One$2, KnowledgeFilter$inboundSchema2, KnowledgeFilter$outboundSchema2, KnowledgeFilter$2, Deployments$inboundSchema, Deployments$outboundSchema, Deployments$;
65987
65975
  var init_deployments2 = __esm(() => {
65988
65976
  init_esm();
65989
65977
  init_primitives();
@@ -66077,12 +66065,6 @@ var init_deployments2 = __esm(() => {
66077
66065
  MessagesRole2 = {
66078
66066
  Developer: "developer"
66079
66067
  };
66080
- Inputs$inboundSchema2 = unionType([stringType(), numberType(), booleanType()]);
66081
- Inputs$outboundSchema2 = unionType([stringType(), numberType(), booleanType()]);
66082
- ((Inputs$) => {
66083
- Inputs$.inboundSchema = Inputs$inboundSchema2;
66084
- Inputs$.outboundSchema = Inputs$outboundSchema2;
66085
- })(Inputs$2 ||= {});
66086
66068
  DeploymentsPrefixMessages5Role$inboundSchema = nativeEnumType(DeploymentsPrefixMessages5Role);
66087
66069
  DeploymentsPrefixMessages5Role$outboundSchema = DeploymentsPrefixMessages5Role$inboundSchema;
66088
66070
  ((DeploymentsPrefixMessages5Role$) => {
@@ -67631,7 +67613,7 @@ var init_deployments2 = __esm(() => {
67631
67613
  })(KnowledgeFilter$2 ||= {});
67632
67614
  Deployments$inboundSchema = objectType({
67633
67615
  key: stringType(),
67634
- inputs: recordType(unionType([stringType(), numberType(), booleanType()])).optional(),
67616
+ inputs: recordType(anyType()).optional(),
67635
67617
  context: recordType(anyType()).optional(),
67636
67618
  prefix_messages: arrayType(unionType([
67637
67619
  lazyType(() => ToolMessage$inboundSchema2),
@@ -67679,7 +67661,7 @@ var init_deployments2 = __esm(() => {
67679
67661
  });
67680
67662
  Deployments$outboundSchema = objectType({
67681
67663
  key: stringType(),
67682
- inputs: recordType(unionType([stringType(), numberType(), booleanType()])).optional(),
67664
+ inputs: recordType(anyType()).optional(),
67683
67665
  context: recordType(anyType()).optional(),
67684
67666
  prefixMessages: arrayType(unionType([
67685
67667
  lazyType(() => ToolMessage$outboundSchema2),
@@ -75809,7 +75791,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
75809
75791
  function createMCPServer(deps) {
75810
75792
  const server = new McpServer({
75811
75793
  name: "Orq",
75812
- version: "3.9.20"
75794
+ version: "3.9.22"
75813
75795
  });
75814
75796
  const client = new OrqCore({
75815
75797
  apiKey: deps.apiKey,
@@ -77217,7 +77199,7 @@ var routes = rn({
77217
77199
  var app = Ve(routes, {
77218
77200
  name: "mcp",
77219
77201
  versionInfo: {
77220
- currentVersion: "3.9.20"
77202
+ currentVersion: "3.9.22"
77221
77203
  }
77222
77204
  });
77223
77205
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -77225,5 +77207,5 @@ export {
77225
77207
  app
77226
77208
  };
77227
77209
 
77228
- //# debugId=BFD0C049DE97049164756E2164756E21
77210
+ //# debugId=4BB50EED12A582FE64756E2164756E21
77229
77211
  //# sourceMappingURL=mcp-server.js.map