@orq-ai/node 3.11.0-rc.2 → 3.11.0-rc.3

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 (96) hide show
  1. package/bin/mcp-server.js +261 -131
  2. package/bin/mcp-server.js.map +35 -35
  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/operations/createcontact.js +2 -2
  10. package/models/operations/createdataset.js +2 -2
  11. package/models/operations/createdatasetitem.js +2 -2
  12. package/models/operations/createdatasource.js +2 -2
  13. package/models/operations/createeval.js +16 -16
  14. package/models/operations/createprompt.d.ts +78 -0
  15. package/models/operations/createprompt.d.ts.map +1 -1
  16. package/models/operations/createprompt.js +56 -5
  17. package/models/operations/createprompt.js.map +1 -1
  18. package/models/operations/deploymentgetconfig.d.ts +39 -0
  19. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  20. package/models/operations/deploymentgetconfig.js +36 -11
  21. package/models/operations/deploymentgetconfig.js.map +1 -1
  22. package/models/operations/deployments.d.ts +39 -0
  23. package/models/operations/deployments.d.ts.map +1 -1
  24. package/models/operations/deployments.js +28 -3
  25. package/models/operations/deployments.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/getallprompts.d.ts +39 -0
  30. package/models/operations/getallprompts.d.ts.map +1 -1
  31. package/models/operations/getallprompts.js +28 -3
  32. package/models/operations/getallprompts.js.map +1 -1
  33. package/models/operations/getevals.js +28 -28
  34. package/models/operations/getoneprompt.d.ts +39 -0
  35. package/models/operations/getoneprompt.d.ts.map +1 -1
  36. package/models/operations/getoneprompt.js +28 -3
  37. package/models/operations/getoneprompt.js.map +1 -1
  38. package/models/operations/getpromptversion.d.ts +39 -0
  39. package/models/operations/getpromptversion.d.ts.map +1 -1
  40. package/models/operations/getpromptversion.js +28 -3
  41. package/models/operations/getpromptversion.js.map +1 -1
  42. package/models/operations/listcontacts.js +2 -2
  43. package/models/operations/listdatasetdatapoints.js +2 -2
  44. package/models/operations/listdatasets.js +2 -2
  45. package/models/operations/listdatasources.js +2 -2
  46. package/models/operations/listpromptversions.d.ts +39 -0
  47. package/models/operations/listpromptversions.d.ts.map +1 -1
  48. package/models/operations/listpromptversions.js +28 -3
  49. package/models/operations/listpromptversions.js.map +1 -1
  50. package/models/operations/retrievecontact.js +2 -2
  51. package/models/operations/retrievedatapoint.js +2 -2
  52. package/models/operations/retrievedataset.js +2 -2
  53. package/models/operations/retrievedatasource.js +2 -2
  54. package/models/operations/updatecontact.js +2 -2
  55. package/models/operations/updatedatapoint.js +2 -2
  56. package/models/operations/updatedataset.js +2 -2
  57. package/models/operations/updatedatasource.js +2 -2
  58. package/models/operations/updateeval.js +16 -16
  59. package/models/operations/updateprompt.d.ts +78 -0
  60. package/models/operations/updateprompt.d.ts.map +1 -1
  61. package/models/operations/updateprompt.js +55 -5
  62. package/models/operations/updateprompt.js.map +1 -1
  63. package/package.json +1 -1
  64. package/src/lib/config.ts +2 -2
  65. package/src/mcp-server/mcp-server.ts +1 -1
  66. package/src/mcp-server/server.ts +1 -1
  67. package/src/models/operations/createcontact.ts +2 -2
  68. package/src/models/operations/createdataset.ts +2 -2
  69. package/src/models/operations/createdatasetitem.ts +2 -2
  70. package/src/models/operations/createdatasource.ts +2 -2
  71. package/src/models/operations/createeval.ts +16 -16
  72. package/src/models/operations/createprompt.ts +80 -0
  73. package/src/models/operations/deploymentgetconfig.ts +43 -0
  74. package/src/models/operations/deployments.ts +41 -0
  75. package/src/models/operations/fileget.ts +2 -2
  76. package/src/models/operations/filelist.ts +2 -2
  77. package/src/models/operations/fileupload.ts +2 -2
  78. package/src/models/operations/getallprompts.ts +41 -0
  79. package/src/models/operations/getevals.ts +28 -28
  80. package/src/models/operations/getoneprompt.ts +41 -0
  81. package/src/models/operations/getpromptversion.ts +43 -0
  82. package/src/models/operations/listcontacts.ts +2 -2
  83. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  84. package/src/models/operations/listdatasets.ts +2 -2
  85. package/src/models/operations/listdatasources.ts +2 -2
  86. package/src/models/operations/listpromptversions.ts +43 -0
  87. package/src/models/operations/retrievecontact.ts +2 -2
  88. package/src/models/operations/retrievedatapoint.ts +2 -2
  89. package/src/models/operations/retrievedataset.ts +2 -2
  90. package/src/models/operations/retrievedatasource.ts +2 -2
  91. package/src/models/operations/updatecontact.ts +2 -2
  92. package/src/models/operations/updatedatapoint.ts +2 -2
  93. package/src/models/operations/updatedataset.ts +2 -2
  94. package/src/models/operations/updatedatasource.ts +2 -2
  95. package/src/models/operations/updateeval.ts +16 -16
  96. package/src/models/operations/updateprompt.ts +84 -0
package/bin/mcp-server.js CHANGED
@@ -34203,9 +34203,9 @@ var init_config = __esm(() => {
34203
34203
  SDK_METADATA = {
34204
34204
  language: "typescript",
34205
34205
  openapiDocVersion: "2.0",
34206
- sdkVersion: "3.11.0-rc.2",
34206
+ sdkVersion: "3.11.0-rc.3",
34207
34207
  genVersion: "2.675.0",
34208
- userAgent: "speakeasy-sdk/typescript 3.11.0-rc.2 2.675.0 2.0 @orq-ai/node"
34208
+ userAgent: "speakeasy-sdk/typescript 3.11.0-rc.3 2.675.0 2.0 @orq-ai/node"
34209
34209
  };
34210
34210
  });
34211
34211
 
@@ -35878,7 +35878,7 @@ var init_createcontact = __esm(() => {
35878
35878
  tags: arrayType(stringType()).optional(),
35879
35879
  metadata: recordType(anyType()).optional(),
35880
35880
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
35881
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
35881
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
35882
35882
  }).transform((v2) => {
35883
35883
  return remap(v2, {
35884
35884
  _id: "id",
@@ -35898,7 +35898,7 @@ var init_createcontact = __esm(() => {
35898
35898
  tags: arrayType(stringType()).optional(),
35899
35899
  metadata: recordType(anyType()).optional(),
35900
35900
  created: dateType().transform((v2) => v2.toISOString()).optional(),
35901
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
35901
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
35902
35902
  }).transform((v2) => {
35903
35903
  return remap(v2, {
35904
35904
  id: "_id",
@@ -35970,7 +35970,7 @@ var init_createdataset = __esm(() => {
35970
35970
  updated_by_id: stringType().optional(),
35971
35971
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
35972
35972
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
35973
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
35973
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
35974
35974
  }).transform((v2) => {
35975
35975
  return remap(v2, {
35976
35976
  _id: "id",
@@ -35990,7 +35990,7 @@ var init_createdataset = __esm(() => {
35990
35990
  updatedById: stringType().optional(),
35991
35991
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
35992
35992
  created: dateType().transform((v2) => v2.toISOString()).optional(),
35993
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
35993
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
35994
35994
  }).transform((v2) => {
35995
35995
  return remap(v2, {
35996
35996
  id: "_id",
@@ -37122,7 +37122,7 @@ var init_createdatasetitem = __esm(() => {
37122
37122
  created_by_id: stringType().optional(),
37123
37123
  updated_by_id: stringType().optional(),
37124
37124
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37125
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
37125
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
37126
37126
  }).transform((v2) => {
37127
37127
  return remap(v2, {
37128
37128
  _id: "id",
@@ -37149,7 +37149,7 @@ var init_createdatasetitem = __esm(() => {
37149
37149
  createdById: stringType().optional(),
37150
37150
  updatedById: stringType().optional(),
37151
37151
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37152
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
37152
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
37153
37153
  }).transform((v2) => {
37154
37154
  return remap(v2, {
37155
37155
  id: "_id",
@@ -37371,7 +37371,7 @@ var init_createdatasource = __esm(() => {
37371
37371
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37372
37372
  })(CreateDatasourceStatus$ ||= {});
37373
37373
  CreateDatasourceResponseBody$inboundSchema = objectType({
37374
- _id: stringType().default("01K22FHKDCF071RWH7J5925ZXH"),
37374
+ _id: stringType().default("01K24B9ZRVEFQT1QC9XPNX91JM"),
37375
37375
  display_name: stringType(),
37376
37376
  description: stringType().optional(),
37377
37377
  status: CreateDatasourceStatus$inboundSchema,
@@ -37394,7 +37394,7 @@ var init_createdatasource = __esm(() => {
37394
37394
  });
37395
37395
  });
37396
37396
  CreateDatasourceResponseBody$outboundSchema = objectType({
37397
- id: stringType().default("01K22FHKDCF071RWH7J5925ZXH"),
37397
+ id: stringType().default("01K24B9ZRVEFQT1QC9XPNX91JM"),
37398
37398
  displayName: stringType(),
37399
37399
  description: stringType().optional(),
37400
37400
  status: CreateDatasourceStatus$outboundSchema,
@@ -38070,8 +38070,8 @@ var init_createeval = __esm(() => {
38070
38070
  ResponseBodyPython$inboundSchema = objectType({
38071
38071
  _id: stringType(),
38072
38072
  description: stringType(),
38073
- created: stringType().default("2025-08-07T14:39:08.644Z"),
38074
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
38073
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
38074
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
38075
38075
  guardrail_config: unionType([
38076
38076
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
38077
38077
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -38088,8 +38088,8 @@ var init_createeval = __esm(() => {
38088
38088
  ResponseBodyPython$outboundSchema = objectType({
38089
38089
  id: stringType(),
38090
38090
  description: stringType(),
38091
- created: stringType().default("2025-08-07T14:39:08.644Z"),
38092
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
38091
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
38092
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
38093
38093
  guardrailConfig: unionType([
38094
38094
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
38095
38095
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -38182,8 +38182,8 @@ var init_createeval = __esm(() => {
38182
38182
  ResponseBodyHTTP$inboundSchema = objectType({
38183
38183
  _id: stringType(),
38184
38184
  description: stringType(),
38185
- created: stringType().default("2025-08-07T14:39:08.644Z"),
38186
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
38185
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
38186
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
38187
38187
  guardrail_config: unionType([
38188
38188
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
38189
38189
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -38203,8 +38203,8 @@ var init_createeval = __esm(() => {
38203
38203
  ResponseBodyHTTP$outboundSchema = objectType({
38204
38204
  id: stringType(),
38205
38205
  description: stringType(),
38206
- created: stringType().default("2025-08-07T14:39:08.644Z"),
38207
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
38206
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
38207
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
38208
38208
  guardrailConfig: unionType([
38209
38209
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
38210
38210
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -38294,8 +38294,8 @@ var init_createeval = __esm(() => {
38294
38294
  ResponseBodyJSON$inboundSchema = objectType({
38295
38295
  _id: stringType(),
38296
38296
  description: stringType(),
38297
- created: stringType().default("2025-08-07T14:39:08.644Z"),
38298
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
38297
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
38298
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
38299
38299
  guardrail_config: unionType([
38300
38300
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
38301
38301
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -38312,8 +38312,8 @@ var init_createeval = __esm(() => {
38312
38312
  ResponseBodyJSON$outboundSchema = objectType({
38313
38313
  id: stringType(),
38314
38314
  description: stringType(),
38315
- created: stringType().default("2025-08-07T14:39:08.644Z"),
38316
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
38315
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
38316
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
38317
38317
  guardrailConfig: unionType([
38318
38318
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
38319
38319
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -38400,8 +38400,8 @@ var init_createeval = __esm(() => {
38400
38400
  ResponseBodyLLM$inboundSchema = objectType({
38401
38401
  _id: stringType(),
38402
38402
  description: stringType(),
38403
- created: stringType().default("2025-08-07T14:39:08.644Z"),
38404
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
38403
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
38404
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
38405
38405
  guardrail_config: unionType([
38406
38406
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
38407
38407
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -38419,8 +38419,8 @@ var init_createeval = __esm(() => {
38419
38419
  ResponseBodyLLM$outboundSchema = objectType({
38420
38420
  id: stringType(),
38421
38421
  description: stringType(),
38422
- created: stringType().default("2025-08-07T14:39:08.644Z"),
38423
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
38422
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
38423
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
38424
38424
  guardrailConfig: unionType([
38425
38425
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
38426
38426
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -38756,7 +38756,7 @@ var init_createknowledge = __esm(() => {
38756
38756
  });
38757
38757
 
38758
38758
  // src/models/operations/createprompt.ts
38759
- var ModelType, CreatePromptFormat, CreatePromptResponseFormatType, ResponseFormatType, PhotoRealVersion, EncodingFormat, ReasoningEffort, Provider, CreatePromptRole, CreatePrompt2PromptsRequestType, CreatePrompt2PromptsType, CreatePrompt2Type, CreatePromptType, UseCases, Language, CreatePromptPromptsType, CreatePromptModelType, CreatePromptPromptsFormat, CreatePromptResponseFormatPromptsResponseType, CreatePromptResponseFormatPromptsType, CreatePromptPhotoRealVersion, CreatePromptEncodingFormat, CreatePromptReasoningEffort, CreatePromptProvider, CreatePromptPromptsRole, CreatePrompt2PromptsResponse200ApplicationJSONType, CreatePrompt2PromptsResponse200Type, CreatePrompt2PromptsResponseType, CreatePromptPromptsResponseType, CreatePromptUseCases, CreatePromptLanguage, ModelType$inboundSchema, ModelType$outboundSchema, ModelType$, CreatePromptFormat$inboundSchema, CreatePromptFormat$outboundSchema, CreatePromptFormat$, CreatePromptResponseFormatType$inboundSchema, CreatePromptResponseFormatType$outboundSchema, CreatePromptResponseFormatType$, ResponseFormat2$inboundSchema, ResponseFormat2$outboundSchema, ResponseFormat2$, ResponseFormatType$inboundSchema, ResponseFormatType$outboundSchema, ResponseFormatType$, JsonSchema$inboundSchema, JsonSchema$outboundSchema, JsonSchema$, ResponseFormat1$inboundSchema, ResponseFormat1$outboundSchema, ResponseFormat1$, ResponseFormat$inboundSchema, ResponseFormat$outboundSchema, ResponseFormat$, PhotoRealVersion$inboundSchema, PhotoRealVersion$outboundSchema, PhotoRealVersion$, EncodingFormat$inboundSchema, EncodingFormat$outboundSchema, EncodingFormat$, ReasoningEffort$inboundSchema, ReasoningEffort$outboundSchema, ReasoningEffort$, ModelParameters$inboundSchema, ModelParameters$outboundSchema, ModelParameters$, Provider$inboundSchema, Provider$outboundSchema, Provider$, CreatePromptRole$inboundSchema, CreatePromptRole$outboundSchema, CreatePromptRole$, CreatePrompt2PromptsRequestType$inboundSchema, CreatePrompt2PromptsRequestType$outboundSchema, CreatePrompt2PromptsRequestType$, CreatePrompt2File$inboundSchema, CreatePrompt2File$outboundSchema, CreatePrompt2File$, CreatePrompt23$inboundSchema, CreatePrompt23$outboundSchema, CreatePrompt23$, CreatePrompt2PromptsType$inboundSchema, CreatePrompt2PromptsType$outboundSchema, CreatePrompt2PromptsType$, CreatePrompt2ImageUrl$inboundSchema, CreatePrompt2ImageUrl$outboundSchema, CreatePrompt2ImageUrl$, CreatePrompt22$inboundSchema, CreatePrompt22$outboundSchema, CreatePrompt22$, CreatePrompt2Type$inboundSchema, CreatePrompt2Type$outboundSchema, CreatePrompt2Type$, CreatePrompt21$inboundSchema, CreatePrompt21$outboundSchema, CreatePrompt21$, CreatePromptContent2$inboundSchema, CreatePromptContent2$outboundSchema, CreatePromptContent2$, CreatePromptContent$inboundSchema, CreatePromptContent$outboundSchema, CreatePromptContent$, CreatePromptType$inboundSchema, CreatePromptType$outboundSchema, CreatePromptType$, CreatePromptFunction$inboundSchema, CreatePromptFunction$outboundSchema, CreatePromptFunction$, CreatePromptToolCalls$inboundSchema, CreatePromptToolCalls$outboundSchema, CreatePromptToolCalls$, CreatePromptMessages$inboundSchema, CreatePromptMessages$outboundSchema, CreatePromptMessages$, PromptConfig$inboundSchema, PromptConfig$outboundSchema, PromptConfig$, UseCases$inboundSchema, UseCases$outboundSchema, UseCases$, Language$inboundSchema, Language$outboundSchema, Language$, CreatePromptMetadata$inboundSchema, CreatePromptMetadata$outboundSchema, CreatePromptMetadata$, CreatePromptRequestBody$inboundSchema, CreatePromptRequestBody$outboundSchema, CreatePromptRequestBody$, CreatePromptPromptsType$inboundSchema, CreatePromptPromptsType$outboundSchema, CreatePromptPromptsType$, CreatePromptModelType$inboundSchema, CreatePromptModelType$outboundSchema, CreatePromptModelType$, CreatePromptPromptsFormat$inboundSchema, CreatePromptPromptsFormat$outboundSchema, CreatePromptPromptsFormat$, CreatePromptResponseFormatPromptsResponseType$inboundSchema, CreatePromptResponseFormatPromptsResponseType$outboundSchema, CreatePromptResponseFormatPromptsResponseType$, CreatePromptResponseFormat2$inboundSchema, CreatePromptResponseFormat2$outboundSchema, CreatePromptResponseFormat2$, CreatePromptResponseFormatPromptsType$inboundSchema, CreatePromptResponseFormatPromptsType$outboundSchema, CreatePromptResponseFormatPromptsType$, CreatePromptResponseFormatJsonSchema$inboundSchema, CreatePromptResponseFormatJsonSchema$outboundSchema, CreatePromptResponseFormatJsonSchema$, CreatePromptResponseFormat1$inboundSchema, CreatePromptResponseFormat1$outboundSchema, CreatePromptResponseFormat1$, CreatePromptResponseFormat$inboundSchema, CreatePromptResponseFormat$outboundSchema, CreatePromptResponseFormat$, CreatePromptPhotoRealVersion$inboundSchema, CreatePromptPhotoRealVersion$outboundSchema, CreatePromptPhotoRealVersion$, CreatePromptEncodingFormat$inboundSchema, CreatePromptEncodingFormat$outboundSchema, CreatePromptEncodingFormat$, CreatePromptReasoningEffort$inboundSchema, CreatePromptReasoningEffort$outboundSchema, CreatePromptReasoningEffort$, CreatePromptModelParameters$inboundSchema, CreatePromptModelParameters$outboundSchema, CreatePromptModelParameters$, CreatePromptProvider$inboundSchema, CreatePromptProvider$outboundSchema, CreatePromptProvider$, CreatePromptPromptsRole$inboundSchema, CreatePromptPromptsRole$outboundSchema, CreatePromptPromptsRole$, CreatePrompt2PromptsResponse200ApplicationJSONType$inboundSchema, CreatePrompt2PromptsResponse200ApplicationJSONType$outboundSchema, CreatePrompt2PromptsResponse200ApplicationJSONType$, CreatePrompt2PromptsFile$inboundSchema, CreatePrompt2PromptsFile$outboundSchema, CreatePrompt2PromptsFile$, CreatePrompt2Prompts3$inboundSchema, CreatePrompt2Prompts3$outboundSchema, CreatePrompt2Prompts3$, CreatePrompt2PromptsResponse200Type$inboundSchema, CreatePrompt2PromptsResponse200Type$outboundSchema, CreatePrompt2PromptsResponse200Type$, CreatePrompt2PromptsImageUrl$inboundSchema, CreatePrompt2PromptsImageUrl$outboundSchema, CreatePrompt2PromptsImageUrl$, CreatePrompt2Prompts2$inboundSchema, CreatePrompt2Prompts2$outboundSchema, CreatePrompt2Prompts2$, CreatePrompt2PromptsResponseType$inboundSchema, CreatePrompt2PromptsResponseType$outboundSchema, CreatePrompt2PromptsResponseType$, CreatePrompt2Prompts1$inboundSchema, CreatePrompt2Prompts1$outboundSchema, CreatePrompt2Prompts1$, CreatePromptContentPrompts2$inboundSchema, CreatePromptContentPrompts2$outboundSchema, CreatePromptContentPrompts2$, CreatePromptPromptsContent$inboundSchema, CreatePromptPromptsContent$outboundSchema, CreatePromptPromptsContent$, CreatePromptPromptsResponseType$inboundSchema, CreatePromptPromptsResponseType$outboundSchema, CreatePromptPromptsResponseType$, CreatePromptPromptsFunction$inboundSchema, CreatePromptPromptsFunction$outboundSchema, CreatePromptPromptsFunction$, CreatePromptPromptsToolCalls$inboundSchema, CreatePromptPromptsToolCalls$outboundSchema, CreatePromptPromptsToolCalls$, CreatePromptPromptsMessages$inboundSchema, CreatePromptPromptsMessages$outboundSchema, CreatePromptPromptsMessages$, CreatePromptPromptConfig$inboundSchema, CreatePromptPromptConfig$outboundSchema, CreatePromptPromptConfig$, CreatePromptUseCases$inboundSchema, CreatePromptUseCases$outboundSchema, CreatePromptUseCases$, CreatePromptLanguage$inboundSchema, CreatePromptLanguage$outboundSchema, CreatePromptLanguage$, CreatePromptPromptsMetadata$inboundSchema, CreatePromptPromptsMetadata$outboundSchema, CreatePromptPromptsMetadata$, CreatePromptResponseBody$inboundSchema, CreatePromptResponseBody$outboundSchema, CreatePromptResponseBody$;
38759
+ var ModelType, CreatePromptFormat, CreatePromptResponseFormatType, ResponseFormatType, PhotoRealVersion, EncodingFormat, ReasoningEffort, Verbosity, Provider, CreatePromptRole, CreatePrompt2PromptsRequestType, CreatePrompt2PromptsType, CreatePrompt2Type, CreatePromptType, UseCases, Language, CreatePromptPromptsType, CreatePromptModelType, CreatePromptPromptsFormat, CreatePromptResponseFormatPromptsResponseType, CreatePromptResponseFormatPromptsType, CreatePromptPhotoRealVersion, CreatePromptEncodingFormat, CreatePromptReasoningEffort, CreatePromptVerbosity, CreatePromptProvider, CreatePromptPromptsRole, CreatePrompt2PromptsResponse200ApplicationJSONType, CreatePrompt2PromptsResponse200Type, CreatePrompt2PromptsResponseType, CreatePromptPromptsResponseType, CreatePromptUseCases, CreatePromptLanguage, ModelType$inboundSchema, ModelType$outboundSchema, ModelType$, CreatePromptFormat$inboundSchema, CreatePromptFormat$outboundSchema, CreatePromptFormat$, CreatePromptResponseFormatType$inboundSchema, CreatePromptResponseFormatType$outboundSchema, CreatePromptResponseFormatType$, ResponseFormat2$inboundSchema, ResponseFormat2$outboundSchema, ResponseFormat2$, ResponseFormatType$inboundSchema, ResponseFormatType$outboundSchema, ResponseFormatType$, JsonSchema$inboundSchema, JsonSchema$outboundSchema, JsonSchema$, ResponseFormat1$inboundSchema, ResponseFormat1$outboundSchema, ResponseFormat1$, ResponseFormat$inboundSchema, ResponseFormat$outboundSchema, ResponseFormat$, PhotoRealVersion$inboundSchema, PhotoRealVersion$outboundSchema, PhotoRealVersion$, EncodingFormat$inboundSchema, EncodingFormat$outboundSchema, EncodingFormat$, ReasoningEffort$inboundSchema, ReasoningEffort$outboundSchema, ReasoningEffort$, Verbosity$inboundSchema, Verbosity$outboundSchema, Verbosity$, ModelParameters$inboundSchema, ModelParameters$outboundSchema, ModelParameters$, Provider$inboundSchema, Provider$outboundSchema, Provider$, CreatePromptRole$inboundSchema, CreatePromptRole$outboundSchema, CreatePromptRole$, CreatePrompt2PromptsRequestType$inboundSchema, CreatePrompt2PromptsRequestType$outboundSchema, CreatePrompt2PromptsRequestType$, CreatePrompt2File$inboundSchema, CreatePrompt2File$outboundSchema, CreatePrompt2File$, CreatePrompt23$inboundSchema, CreatePrompt23$outboundSchema, CreatePrompt23$, CreatePrompt2PromptsType$inboundSchema, CreatePrompt2PromptsType$outboundSchema, CreatePrompt2PromptsType$, CreatePrompt2ImageUrl$inboundSchema, CreatePrompt2ImageUrl$outboundSchema, CreatePrompt2ImageUrl$, CreatePrompt22$inboundSchema, CreatePrompt22$outboundSchema, CreatePrompt22$, CreatePrompt2Type$inboundSchema, CreatePrompt2Type$outboundSchema, CreatePrompt2Type$, CreatePrompt21$inboundSchema, CreatePrompt21$outboundSchema, CreatePrompt21$, CreatePromptContent2$inboundSchema, CreatePromptContent2$outboundSchema, CreatePromptContent2$, CreatePromptContent$inboundSchema, CreatePromptContent$outboundSchema, CreatePromptContent$, CreatePromptType$inboundSchema, CreatePromptType$outboundSchema, CreatePromptType$, CreatePromptFunction$inboundSchema, CreatePromptFunction$outboundSchema, CreatePromptFunction$, CreatePromptToolCalls$inboundSchema, CreatePromptToolCalls$outboundSchema, CreatePromptToolCalls$, CreatePromptMessages$inboundSchema, CreatePromptMessages$outboundSchema, CreatePromptMessages$, PromptConfig$inboundSchema, PromptConfig$outboundSchema, PromptConfig$, UseCases$inboundSchema, UseCases$outboundSchema, UseCases$, Language$inboundSchema, Language$outboundSchema, Language$, CreatePromptMetadata$inboundSchema, CreatePromptMetadata$outboundSchema, CreatePromptMetadata$, CreatePromptRequestBody$inboundSchema, CreatePromptRequestBody$outboundSchema, CreatePromptRequestBody$, CreatePromptPromptsType$inboundSchema, CreatePromptPromptsType$outboundSchema, CreatePromptPromptsType$, CreatePromptModelType$inboundSchema, CreatePromptModelType$outboundSchema, CreatePromptModelType$, CreatePromptPromptsFormat$inboundSchema, CreatePromptPromptsFormat$outboundSchema, CreatePromptPromptsFormat$, CreatePromptResponseFormatPromptsResponseType$inboundSchema, CreatePromptResponseFormatPromptsResponseType$outboundSchema, CreatePromptResponseFormatPromptsResponseType$, CreatePromptResponseFormat2$inboundSchema, CreatePromptResponseFormat2$outboundSchema, CreatePromptResponseFormat2$, CreatePromptResponseFormatPromptsType$inboundSchema, CreatePromptResponseFormatPromptsType$outboundSchema, CreatePromptResponseFormatPromptsType$, CreatePromptResponseFormatJsonSchema$inboundSchema, CreatePromptResponseFormatJsonSchema$outboundSchema, CreatePromptResponseFormatJsonSchema$, CreatePromptResponseFormat1$inboundSchema, CreatePromptResponseFormat1$outboundSchema, CreatePromptResponseFormat1$, CreatePromptResponseFormat$inboundSchema, CreatePromptResponseFormat$outboundSchema, CreatePromptResponseFormat$, CreatePromptPhotoRealVersion$inboundSchema, CreatePromptPhotoRealVersion$outboundSchema, CreatePromptPhotoRealVersion$, CreatePromptEncodingFormat$inboundSchema, CreatePromptEncodingFormat$outboundSchema, CreatePromptEncodingFormat$, CreatePromptReasoningEffort$inboundSchema, CreatePromptReasoningEffort$outboundSchema, CreatePromptReasoningEffort$, CreatePromptVerbosity$inboundSchema, CreatePromptVerbosity$outboundSchema, CreatePromptVerbosity$, CreatePromptModelParameters$inboundSchema, CreatePromptModelParameters$outboundSchema, CreatePromptModelParameters$, CreatePromptProvider$inboundSchema, CreatePromptProvider$outboundSchema, CreatePromptProvider$, CreatePromptPromptsRole$inboundSchema, CreatePromptPromptsRole$outboundSchema, CreatePromptPromptsRole$, CreatePrompt2PromptsResponse200ApplicationJSONType$inboundSchema, CreatePrompt2PromptsResponse200ApplicationJSONType$outboundSchema, CreatePrompt2PromptsResponse200ApplicationJSONType$, CreatePrompt2PromptsFile$inboundSchema, CreatePrompt2PromptsFile$outboundSchema, CreatePrompt2PromptsFile$, CreatePrompt2Prompts3$inboundSchema, CreatePrompt2Prompts3$outboundSchema, CreatePrompt2Prompts3$, CreatePrompt2PromptsResponse200Type$inboundSchema, CreatePrompt2PromptsResponse200Type$outboundSchema, CreatePrompt2PromptsResponse200Type$, CreatePrompt2PromptsImageUrl$inboundSchema, CreatePrompt2PromptsImageUrl$outboundSchema, CreatePrompt2PromptsImageUrl$, CreatePrompt2Prompts2$inboundSchema, CreatePrompt2Prompts2$outboundSchema, CreatePrompt2Prompts2$, CreatePrompt2PromptsResponseType$inboundSchema, CreatePrompt2PromptsResponseType$outboundSchema, CreatePrompt2PromptsResponseType$, CreatePrompt2Prompts1$inboundSchema, CreatePrompt2Prompts1$outboundSchema, CreatePrompt2Prompts1$, CreatePromptContentPrompts2$inboundSchema, CreatePromptContentPrompts2$outboundSchema, CreatePromptContentPrompts2$, CreatePromptPromptsContent$inboundSchema, CreatePromptPromptsContent$outboundSchema, CreatePromptPromptsContent$, CreatePromptPromptsResponseType$inboundSchema, CreatePromptPromptsResponseType$outboundSchema, CreatePromptPromptsResponseType$, CreatePromptPromptsFunction$inboundSchema, CreatePromptPromptsFunction$outboundSchema, CreatePromptPromptsFunction$, CreatePromptPromptsToolCalls$inboundSchema, CreatePromptPromptsToolCalls$outboundSchema, CreatePromptPromptsToolCalls$, CreatePromptPromptsMessages$inboundSchema, CreatePromptPromptsMessages$outboundSchema, CreatePromptPromptsMessages$, CreatePromptPromptConfig$inboundSchema, CreatePromptPromptConfig$outboundSchema, CreatePromptPromptConfig$, CreatePromptUseCases$inboundSchema, CreatePromptUseCases$outboundSchema, CreatePromptUseCases$, CreatePromptLanguage$inboundSchema, CreatePromptLanguage$outboundSchema, CreatePromptLanguage$, CreatePromptPromptsMetadata$inboundSchema, CreatePromptPromptsMetadata$outboundSchema, CreatePromptPromptsMetadata$, CreatePromptResponseBody$inboundSchema, CreatePromptResponseBody$outboundSchema, CreatePromptResponseBody$;
38760
38760
  var init_createprompt = __esm(() => {
38761
38761
  init_esm();
38762
38762
  init_primitives();
@@ -38797,6 +38797,11 @@ var init_createprompt = __esm(() => {
38797
38797
  Medium: "medium",
38798
38798
  High: "high"
38799
38799
  };
38800
+ Verbosity = {
38801
+ Low: "low",
38802
+ Medium: "medium",
38803
+ High: "high"
38804
+ };
38800
38805
  Provider = {
38801
38806
  Cohere: "cohere",
38802
38807
  Openai: "openai",
@@ -38913,6 +38918,11 @@ var init_createprompt = __esm(() => {
38913
38918
  Medium: "medium",
38914
38919
  High: "high"
38915
38920
  };
38921
+ CreatePromptVerbosity = {
38922
+ Low: "low",
38923
+ Medium: "medium",
38924
+ High: "high"
38925
+ };
38916
38926
  CreatePromptProvider = {
38917
38927
  Cohere: "cohere",
38918
38928
  Openai: "openai",
@@ -39087,6 +39097,12 @@ var init_createprompt = __esm(() => {
39087
39097
  ReasoningEffort$.inboundSchema = ReasoningEffort$inboundSchema;
39088
39098
  ReasoningEffort$.outboundSchema = ReasoningEffort$outboundSchema;
39089
39099
  })(ReasoningEffort$ ||= {});
39100
+ Verbosity$inboundSchema = nativeEnumType(Verbosity);
39101
+ Verbosity$outboundSchema = Verbosity$inboundSchema;
39102
+ ((Verbosity$) => {
39103
+ Verbosity$.inboundSchema = Verbosity$inboundSchema;
39104
+ Verbosity$.outboundSchema = Verbosity$outboundSchema;
39105
+ })(Verbosity$ ||= {});
39090
39106
  ModelParameters$inboundSchema = objectType({
39091
39107
  temperature: numberType().optional(),
39092
39108
  maxTokens: numberType().optional(),
@@ -39107,7 +39123,8 @@ var init_createprompt = __esm(() => {
39107
39123
  photoRealVersion: PhotoRealVersion$inboundSchema.optional(),
39108
39124
  encoding_format: EncodingFormat$inboundSchema.optional(),
39109
39125
  reasoningEffort: ReasoningEffort$inboundSchema.optional(),
39110
- budgetTokens: numberType().optional()
39126
+ budgetTokens: numberType().optional(),
39127
+ verbosity: Verbosity$inboundSchema.optional()
39111
39128
  }).transform((v2) => {
39112
39129
  return remap(v2, {
39113
39130
  encoding_format: "encodingFormat"
@@ -39133,7 +39150,8 @@ var init_createprompt = __esm(() => {
39133
39150
  photoRealVersion: PhotoRealVersion$outboundSchema.optional(),
39134
39151
  encodingFormat: EncodingFormat$outboundSchema.optional(),
39135
39152
  reasoningEffort: ReasoningEffort$outboundSchema.optional(),
39136
- budgetTokens: numberType().optional()
39153
+ budgetTokens: numberType().optional(),
39154
+ verbosity: Verbosity$outboundSchema.optional()
39137
39155
  }).transform((v2) => {
39138
39156
  return remap(v2, {
39139
39157
  encodingFormat: "encoding_format"
@@ -39553,6 +39571,12 @@ var init_createprompt = __esm(() => {
39553
39571
  CreatePromptReasoningEffort$.inboundSchema = CreatePromptReasoningEffort$inboundSchema;
39554
39572
  CreatePromptReasoningEffort$.outboundSchema = CreatePromptReasoningEffort$outboundSchema;
39555
39573
  })(CreatePromptReasoningEffort$ ||= {});
39574
+ CreatePromptVerbosity$inboundSchema = nativeEnumType(CreatePromptVerbosity);
39575
+ CreatePromptVerbosity$outboundSchema = CreatePromptVerbosity$inboundSchema;
39576
+ ((CreatePromptVerbosity$) => {
39577
+ CreatePromptVerbosity$.inboundSchema = CreatePromptVerbosity$inboundSchema;
39578
+ CreatePromptVerbosity$.outboundSchema = CreatePromptVerbosity$outboundSchema;
39579
+ })(CreatePromptVerbosity$ ||= {});
39556
39580
  CreatePromptModelParameters$inboundSchema = objectType({
39557
39581
  temperature: numberType().optional(),
39558
39582
  maxTokens: numberType().optional(),
@@ -39573,7 +39597,8 @@ var init_createprompt = __esm(() => {
39573
39597
  photoRealVersion: CreatePromptPhotoRealVersion$inboundSchema.optional(),
39574
39598
  encoding_format: CreatePromptEncodingFormat$inboundSchema.optional(),
39575
39599
  reasoningEffort: CreatePromptReasoningEffort$inboundSchema.optional(),
39576
- budgetTokens: numberType().optional()
39600
+ budgetTokens: numberType().optional(),
39601
+ verbosity: CreatePromptVerbosity$inboundSchema.optional()
39577
39602
  }).transform((v2) => {
39578
39603
  return remap(v2, {
39579
39604
  encoding_format: "encodingFormat"
@@ -39599,7 +39624,8 @@ var init_createprompt = __esm(() => {
39599
39624
  photoRealVersion: CreatePromptPhotoRealVersion$outboundSchema.optional(),
39600
39625
  encodingFormat: CreatePromptEncodingFormat$outboundSchema.optional(),
39601
39626
  reasoningEffort: CreatePromptReasoningEffort$outboundSchema.optional(),
39602
- budgetTokens: numberType().optional()
39627
+ budgetTokens: numberType().optional(),
39628
+ verbosity: CreatePromptVerbosity$outboundSchema.optional()
39603
39629
  }).transform((v2) => {
39604
39630
  return remap(v2, {
39605
39631
  encodingFormat: "encoding_format"
@@ -41314,7 +41340,7 @@ var init_deploymentcreatemetric = __esm(() => {
41314
41340
  });
41315
41341
 
41316
41342
  // src/models/operations/deploymentgetconfig.ts
41317
- 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$;
41343
+ 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, DeploymentGetConfigVerbosity, 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$, DeploymentGetConfigVerbosity$inboundSchema, DeploymentGetConfigVerbosity$outboundSchema, DeploymentGetConfigVerbosity$, 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
41344
  var init_deploymentgetconfig = __esm(() => {
41319
41345
  init_esm();
41320
41346
  init_primitives();
@@ -41467,6 +41493,11 @@ var init_deploymentgetconfig = __esm(() => {
41467
41493
  Medium: "medium",
41468
41494
  High: "high"
41469
41495
  };
41496
+ DeploymentGetConfigVerbosity = {
41497
+ Low: "low",
41498
+ Medium: "medium",
41499
+ High: "high"
41500
+ };
41470
41501
  DeploymentGetConfigDeploymentsType = {
41471
41502
  Function: "function"
41472
41503
  };
@@ -43412,6 +43443,12 @@ var init_deploymentgetconfig = __esm(() => {
43412
43443
  DeploymentGetConfigReasoningEffort$.inboundSchema = DeploymentGetConfigReasoningEffort$inboundSchema;
43413
43444
  DeploymentGetConfigReasoningEffort$.outboundSchema = DeploymentGetConfigReasoningEffort$outboundSchema;
43414
43445
  })(DeploymentGetConfigReasoningEffort$ ||= {});
43446
+ DeploymentGetConfigVerbosity$inboundSchema = nativeEnumType(DeploymentGetConfigVerbosity);
43447
+ DeploymentGetConfigVerbosity$outboundSchema = DeploymentGetConfigVerbosity$inboundSchema;
43448
+ ((DeploymentGetConfigVerbosity$) => {
43449
+ DeploymentGetConfigVerbosity$.inboundSchema = DeploymentGetConfigVerbosity$inboundSchema;
43450
+ DeploymentGetConfigVerbosity$.outboundSchema = DeploymentGetConfigVerbosity$outboundSchema;
43451
+ })(DeploymentGetConfigVerbosity$ ||= {});
43415
43452
  ParametersT$inboundSchema = objectType({
43416
43453
  temperature: numberType().optional(),
43417
43454
  maxTokens: numberType().optional(),
@@ -43432,7 +43469,8 @@ var init_deploymentgetconfig = __esm(() => {
43432
43469
  photoRealVersion: DeploymentGetConfigPhotoRealVersion$inboundSchema.optional(),
43433
43470
  encoding_format: DeploymentGetConfigEncodingFormat$inboundSchema.optional(),
43434
43471
  reasoningEffort: DeploymentGetConfigReasoningEffort$inboundSchema.optional(),
43435
- budgetTokens: numberType().optional()
43472
+ budgetTokens: numberType().optional(),
43473
+ verbosity: DeploymentGetConfigVerbosity$inboundSchema.optional()
43436
43474
  }).transform((v2) => {
43437
43475
  return remap(v2, {
43438
43476
  encoding_format: "encodingFormat"
@@ -43458,7 +43496,8 @@ var init_deploymentgetconfig = __esm(() => {
43458
43496
  photoRealVersion: DeploymentGetConfigPhotoRealVersion$outboundSchema.optional(),
43459
43497
  encodingFormat: DeploymentGetConfigEncodingFormat$outboundSchema.optional(),
43460
43498
  reasoningEffort: DeploymentGetConfigReasoningEffort$outboundSchema.optional(),
43461
- budgetTokens: numberType().optional()
43499
+ budgetTokens: numberType().optional(),
43500
+ verbosity: DeploymentGetConfigVerbosity$outboundSchema.optional()
43462
43501
  }).transform((v2) => {
43463
43502
  return remap(v2, {
43464
43503
  encodingFormat: "encoding_format"
@@ -43913,7 +43952,7 @@ var init_deploymentinvoke = __esm(() => {
43913
43952
  });
43914
43953
 
43915
43954
  // src/models/operations/deployments.ts
43916
- var DeploymentsObject, DeploymentsType, DeploymentsDeploymentsResponseType, DeploymentsModelType, DeploymentsFormat, DeploymentsResponseFormatType, DeploymentsResponseFormatDeploymentsType, DeploymentsPhotoRealVersion, DeploymentsEncodingFormat, DeploymentsReasoningEffort, DeploymentsProvider, DeploymentsRole, Deployments2DeploymentsType, Deployments2Type, Deployments2DeploymentsResponseType, DeploymentsDeploymentsType, DeploymentsRequest$inboundSchema, DeploymentsRequest$outboundSchema, DeploymentsRequest$, DeploymentsObject$inboundSchema, DeploymentsObject$outboundSchema, DeploymentsObject$, DeploymentsType$inboundSchema, DeploymentsType$outboundSchema, DeploymentsType$, DeploymentsDeploymentsResponseType$inboundSchema, DeploymentsDeploymentsResponseType$outboundSchema, DeploymentsDeploymentsResponseType$, DeploymentsParameters$inboundSchema, DeploymentsParameters$outboundSchema, DeploymentsParameters$, DeploymentsFunction$inboundSchema, DeploymentsFunction$outboundSchema, DeploymentsFunction$, DeploymentsTools$inboundSchema, DeploymentsTools$outboundSchema, DeploymentsTools$, DeploymentsModelType$inboundSchema, DeploymentsModelType$outboundSchema, DeploymentsModelType$, DeploymentsFormat$inboundSchema, DeploymentsFormat$outboundSchema, DeploymentsFormat$, DeploymentsResponseFormatType$inboundSchema, DeploymentsResponseFormatType$outboundSchema, DeploymentsResponseFormatType$, DeploymentsResponseFormat2$inboundSchema, DeploymentsResponseFormat2$outboundSchema, DeploymentsResponseFormat2$, DeploymentsResponseFormatDeploymentsType$inboundSchema, DeploymentsResponseFormatDeploymentsType$outboundSchema, DeploymentsResponseFormatDeploymentsType$, DeploymentsResponseFormatJsonSchema$inboundSchema, DeploymentsResponseFormatJsonSchema$outboundSchema, DeploymentsResponseFormatJsonSchema$, DeploymentsResponseFormat1$inboundSchema, DeploymentsResponseFormat1$outboundSchema, DeploymentsResponseFormat1$, DeploymentsResponseFormat$inboundSchema, DeploymentsResponseFormat$outboundSchema, DeploymentsResponseFormat$, DeploymentsPhotoRealVersion$inboundSchema, DeploymentsPhotoRealVersion$outboundSchema, DeploymentsPhotoRealVersion$, DeploymentsEncodingFormat$inboundSchema, DeploymentsEncodingFormat$outboundSchema, DeploymentsEncodingFormat$, DeploymentsReasoningEffort$inboundSchema, DeploymentsReasoningEffort$outboundSchema, DeploymentsReasoningEffort$, DeploymentsModelParameters$inboundSchema, DeploymentsModelParameters$outboundSchema, DeploymentsModelParameters$, DeploymentsProvider$inboundSchema, DeploymentsProvider$outboundSchema, DeploymentsProvider$, DeploymentsRole$inboundSchema, DeploymentsRole$outboundSchema, DeploymentsRole$, Deployments2DeploymentsType$inboundSchema, Deployments2DeploymentsType$outboundSchema, Deployments2DeploymentsType$, Deployments2File$inboundSchema, Deployments2File$outboundSchema, Deployments2File$, Deployments23$inboundSchema, Deployments23$outboundSchema, Deployments23$, Deployments2Type$inboundSchema, Deployments2Type$outboundSchema, Deployments2Type$, Deployments2ImageUrl$inboundSchema, Deployments2ImageUrl$outboundSchema, Deployments2ImageUrl$, Deployments22$inboundSchema, Deployments22$outboundSchema, Deployments22$, Deployments2DeploymentsResponseType$inboundSchema, Deployments2DeploymentsResponseType$outboundSchema, Deployments2DeploymentsResponseType$, Deployments21$inboundSchema, Deployments21$outboundSchema, Deployments21$, DeploymentsContent2$inboundSchema, DeploymentsContent2$outboundSchema, DeploymentsContent2$, DeploymentsContent$inboundSchema, DeploymentsContent$outboundSchema, DeploymentsContent$, DeploymentsDeploymentsType$inboundSchema, DeploymentsDeploymentsType$outboundSchema, DeploymentsDeploymentsType$, DeploymentsDeploymentsFunction$inboundSchema, DeploymentsDeploymentsFunction$outboundSchema, DeploymentsDeploymentsFunction$, DeploymentsToolCalls$inboundSchema, DeploymentsToolCalls$outboundSchema, DeploymentsToolCalls$, DeploymentsMessages$inboundSchema, DeploymentsMessages$outboundSchema, DeploymentsMessages$, DeploymentsPromptConfig$inboundSchema, DeploymentsPromptConfig$outboundSchema, DeploymentsPromptConfig$, DeploymentsData$inboundSchema, DeploymentsData$outboundSchema, DeploymentsData$, DeploymentsResponseBody$inboundSchema, DeploymentsResponseBody$outboundSchema, DeploymentsResponseBody$;
43955
+ var DeploymentsObject, DeploymentsType, DeploymentsDeploymentsResponseType, DeploymentsModelType, DeploymentsFormat, DeploymentsResponseFormatType, DeploymentsResponseFormatDeploymentsType, DeploymentsPhotoRealVersion, DeploymentsEncodingFormat, DeploymentsReasoningEffort, DeploymentsVerbosity, DeploymentsProvider, DeploymentsRole, Deployments2DeploymentsType, Deployments2Type, Deployments2DeploymentsResponseType, DeploymentsDeploymentsType, DeploymentsRequest$inboundSchema, DeploymentsRequest$outboundSchema, DeploymentsRequest$, DeploymentsObject$inboundSchema, DeploymentsObject$outboundSchema, DeploymentsObject$, DeploymentsType$inboundSchema, DeploymentsType$outboundSchema, DeploymentsType$, DeploymentsDeploymentsResponseType$inboundSchema, DeploymentsDeploymentsResponseType$outboundSchema, DeploymentsDeploymentsResponseType$, DeploymentsParameters$inboundSchema, DeploymentsParameters$outboundSchema, DeploymentsParameters$, DeploymentsFunction$inboundSchema, DeploymentsFunction$outboundSchema, DeploymentsFunction$, DeploymentsTools$inboundSchema, DeploymentsTools$outboundSchema, DeploymentsTools$, DeploymentsModelType$inboundSchema, DeploymentsModelType$outboundSchema, DeploymentsModelType$, DeploymentsFormat$inboundSchema, DeploymentsFormat$outboundSchema, DeploymentsFormat$, DeploymentsResponseFormatType$inboundSchema, DeploymentsResponseFormatType$outboundSchema, DeploymentsResponseFormatType$, DeploymentsResponseFormat2$inboundSchema, DeploymentsResponseFormat2$outboundSchema, DeploymentsResponseFormat2$, DeploymentsResponseFormatDeploymentsType$inboundSchema, DeploymentsResponseFormatDeploymentsType$outboundSchema, DeploymentsResponseFormatDeploymentsType$, DeploymentsResponseFormatJsonSchema$inboundSchema, DeploymentsResponseFormatJsonSchema$outboundSchema, DeploymentsResponseFormatJsonSchema$, DeploymentsResponseFormat1$inboundSchema, DeploymentsResponseFormat1$outboundSchema, DeploymentsResponseFormat1$, DeploymentsResponseFormat$inboundSchema, DeploymentsResponseFormat$outboundSchema, DeploymentsResponseFormat$, DeploymentsPhotoRealVersion$inboundSchema, DeploymentsPhotoRealVersion$outboundSchema, DeploymentsPhotoRealVersion$, DeploymentsEncodingFormat$inboundSchema, DeploymentsEncodingFormat$outboundSchema, DeploymentsEncodingFormat$, DeploymentsReasoningEffort$inboundSchema, DeploymentsReasoningEffort$outboundSchema, DeploymentsReasoningEffort$, DeploymentsVerbosity$inboundSchema, DeploymentsVerbosity$outboundSchema, DeploymentsVerbosity$, DeploymentsModelParameters$inboundSchema, DeploymentsModelParameters$outboundSchema, DeploymentsModelParameters$, DeploymentsProvider$inboundSchema, DeploymentsProvider$outboundSchema, DeploymentsProvider$, DeploymentsRole$inboundSchema, DeploymentsRole$outboundSchema, DeploymentsRole$, Deployments2DeploymentsType$inboundSchema, Deployments2DeploymentsType$outboundSchema, Deployments2DeploymentsType$, Deployments2File$inboundSchema, Deployments2File$outboundSchema, Deployments2File$, Deployments23$inboundSchema, Deployments23$outboundSchema, Deployments23$, Deployments2Type$inboundSchema, Deployments2Type$outboundSchema, Deployments2Type$, Deployments2ImageUrl$inboundSchema, Deployments2ImageUrl$outboundSchema, Deployments2ImageUrl$, Deployments22$inboundSchema, Deployments22$outboundSchema, Deployments22$, Deployments2DeploymentsResponseType$inboundSchema, Deployments2DeploymentsResponseType$outboundSchema, Deployments2DeploymentsResponseType$, Deployments21$inboundSchema, Deployments21$outboundSchema, Deployments21$, DeploymentsContent2$inboundSchema, DeploymentsContent2$outboundSchema, DeploymentsContent2$, DeploymentsContent$inboundSchema, DeploymentsContent$outboundSchema, DeploymentsContent$, DeploymentsDeploymentsType$inboundSchema, DeploymentsDeploymentsType$outboundSchema, DeploymentsDeploymentsType$, DeploymentsDeploymentsFunction$inboundSchema, DeploymentsDeploymentsFunction$outboundSchema, DeploymentsDeploymentsFunction$, DeploymentsToolCalls$inboundSchema, DeploymentsToolCalls$outboundSchema, DeploymentsToolCalls$, DeploymentsMessages$inboundSchema, DeploymentsMessages$outboundSchema, DeploymentsMessages$, DeploymentsPromptConfig$inboundSchema, DeploymentsPromptConfig$outboundSchema, DeploymentsPromptConfig$, DeploymentsData$inboundSchema, DeploymentsData$outboundSchema, DeploymentsData$, DeploymentsResponseBody$inboundSchema, DeploymentsResponseBody$outboundSchema, DeploymentsResponseBody$;
43917
43956
  var init_deployments = __esm(() => {
43918
43957
  init_esm();
43919
43958
  init_primitives();
@@ -43963,6 +44002,11 @@ var init_deployments = __esm(() => {
43963
44002
  Medium: "medium",
43964
44003
  High: "high"
43965
44004
  };
44005
+ DeploymentsVerbosity = {
44006
+ Low: "low",
44007
+ Medium: "medium",
44008
+ High: "high"
44009
+ };
43966
44010
  DeploymentsProvider = {
43967
44011
  Cohere: "cohere",
43968
44012
  Openai: "openai",
@@ -44194,6 +44238,12 @@ var init_deployments = __esm(() => {
44194
44238
  DeploymentsReasoningEffort$.inboundSchema = DeploymentsReasoningEffort$inboundSchema;
44195
44239
  DeploymentsReasoningEffort$.outboundSchema = DeploymentsReasoningEffort$outboundSchema;
44196
44240
  })(DeploymentsReasoningEffort$ ||= {});
44241
+ DeploymentsVerbosity$inboundSchema = nativeEnumType(DeploymentsVerbosity);
44242
+ DeploymentsVerbosity$outboundSchema = DeploymentsVerbosity$inboundSchema;
44243
+ ((DeploymentsVerbosity$) => {
44244
+ DeploymentsVerbosity$.inboundSchema = DeploymentsVerbosity$inboundSchema;
44245
+ DeploymentsVerbosity$.outboundSchema = DeploymentsVerbosity$outboundSchema;
44246
+ })(DeploymentsVerbosity$ ||= {});
44197
44247
  DeploymentsModelParameters$inboundSchema = objectType({
44198
44248
  temperature: numberType().optional(),
44199
44249
  maxTokens: numberType().optional(),
@@ -44214,7 +44264,8 @@ var init_deployments = __esm(() => {
44214
44264
  photoRealVersion: DeploymentsPhotoRealVersion$inboundSchema.optional(),
44215
44265
  encoding_format: DeploymentsEncodingFormat$inboundSchema.optional(),
44216
44266
  reasoningEffort: DeploymentsReasoningEffort$inboundSchema.optional(),
44217
- budgetTokens: numberType().optional()
44267
+ budgetTokens: numberType().optional(),
44268
+ verbosity: DeploymentsVerbosity$inboundSchema.optional()
44218
44269
  }).transform((v2) => {
44219
44270
  return remap(v2, {
44220
44271
  encoding_format: "encodingFormat"
@@ -44240,7 +44291,8 @@ var init_deployments = __esm(() => {
44240
44291
  photoRealVersion: DeploymentsPhotoRealVersion$outboundSchema.optional(),
44241
44292
  encodingFormat: DeploymentsEncodingFormat$outboundSchema.optional(),
44242
44293
  reasoningEffort: DeploymentsReasoningEffort$outboundSchema.optional(),
44243
- budgetTokens: numberType().optional()
44294
+ budgetTokens: numberType().optional(),
44295
+ verbosity: DeploymentsVerbosity$outboundSchema.optional()
44244
44296
  }).transform((v2) => {
44245
44297
  return remap(v2, {
44246
44298
  encodingFormat: "encoding_format"
@@ -48214,7 +48266,7 @@ var init_fileget = __esm(() => {
48214
48266
  bytes: numberType(),
48215
48267
  file_name: stringType(),
48216
48268
  workspace_id: stringType(),
48217
- created: stringType().datetime({ offset: true }).default("2025-08-07T14:39:09.511Z").transform((v2) => new Date(v2))
48269
+ created: stringType().datetime({ offset: true }).default("2025-08-08T08:03:35.015Z").transform((v2) => new Date(v2))
48218
48270
  }).transform((v2) => {
48219
48271
  return remap(v2, {
48220
48272
  _id: "id",
@@ -48230,7 +48282,7 @@ var init_fileget = __esm(() => {
48230
48282
  bytes: numberType(),
48231
48283
  fileName: stringType(),
48232
48284
  workspaceId: stringType(),
48233
- created: dateType().default(() => new Date("2025-08-07T14:39:09.511Z")).transform((v2) => v2.toISOString())
48285
+ created: dateType().default(() => new Date("2025-08-08T08:03:35.015Z")).transform((v2) => v2.toISOString())
48234
48286
  }).transform((v2) => {
48235
48287
  return remap(v2, {
48236
48288
  id: "_id",
@@ -48301,7 +48353,7 @@ var init_filelist = __esm(() => {
48301
48353
  bytes: numberType(),
48302
48354
  file_name: stringType(),
48303
48355
  workspace_id: stringType(),
48304
- created: stringType().datetime({ offset: true }).default("2025-08-07T14:39:09.511Z").transform((v2) => new Date(v2))
48356
+ created: stringType().datetime({ offset: true }).default("2025-08-08T08:03:35.015Z").transform((v2) => new Date(v2))
48305
48357
  }).transform((v2) => {
48306
48358
  return remap(v2, {
48307
48359
  _id: "id",
@@ -48317,7 +48369,7 @@ var init_filelist = __esm(() => {
48317
48369
  bytes: numberType(),
48318
48370
  fileName: stringType(),
48319
48371
  workspaceId: stringType(),
48320
- created: dateType().default(() => new Date("2025-08-07T14:39:09.511Z")).transform((v2) => v2.toISOString())
48372
+ created: dateType().default(() => new Date("2025-08-08T08:03:35.015Z")).transform((v2) => v2.toISOString())
48321
48373
  }).transform((v2) => {
48322
48374
  return remap(v2, {
48323
48375
  id: "_id",
@@ -48449,7 +48501,7 @@ var init_fileupload = __esm(() => {
48449
48501
  bytes: numberType(),
48450
48502
  file_name: stringType(),
48451
48503
  workspace_id: stringType(),
48452
- created: stringType().datetime({ offset: true }).default("2025-08-07T14:39:09.511Z").transform((v2) => new Date(v2))
48504
+ created: stringType().datetime({ offset: true }).default("2025-08-08T08:03:35.015Z").transform((v2) => new Date(v2))
48453
48505
  }).transform((v2) => {
48454
48506
  return remap(v2, {
48455
48507
  _id: "id",
@@ -48465,7 +48517,7 @@ var init_fileupload = __esm(() => {
48465
48517
  bytes: numberType(),
48466
48518
  fileName: stringType(),
48467
48519
  workspaceId: stringType(),
48468
- created: dateType().default(() => new Date("2025-08-07T14:39:09.511Z")).transform((v2) => v2.toISOString())
48520
+ created: dateType().default(() => new Date("2025-08-08T08:03:35.015Z")).transform((v2) => v2.toISOString())
48469
48521
  }).transform((v2) => {
48470
48522
  return remap(v2, {
48471
48523
  id: "_id",
@@ -48481,7 +48533,7 @@ var init_fileupload = __esm(() => {
48481
48533
  });
48482
48534
 
48483
48535
  // src/models/operations/getallprompts.ts
48484
- var GetAllPromptsObject, GetAllPromptsType, GetAllPromptsModelType, GetAllPromptsFormat, GetAllPromptsResponseFormatPromptsType, GetAllPromptsResponseFormatType, GetAllPromptsPhotoRealVersion, GetAllPromptsEncodingFormat, GetAllPromptsReasoningEffort, GetAllPromptsProvider, GetAllPromptsRole, GetAllPrompts2PromptsResponseType, GetAllPrompts2PromptsType, GetAllPrompts2Type, GetAllPromptsPromptsType, GetAllPromptsUseCases, GetAllPromptsLanguage, GetAllPromptsRequest$inboundSchema, GetAllPromptsRequest$outboundSchema, GetAllPromptsRequest$, GetAllPromptsObject$inboundSchema, GetAllPromptsObject$outboundSchema, GetAllPromptsObject$, GetAllPromptsType$inboundSchema, GetAllPromptsType$outboundSchema, GetAllPromptsType$, GetAllPromptsModelType$inboundSchema, GetAllPromptsModelType$outboundSchema, GetAllPromptsModelType$, GetAllPromptsFormat$inboundSchema, GetAllPromptsFormat$outboundSchema, GetAllPromptsFormat$, GetAllPromptsResponseFormatPromptsType$inboundSchema, GetAllPromptsResponseFormatPromptsType$outboundSchema, GetAllPromptsResponseFormatPromptsType$, GetAllPromptsResponseFormat2$inboundSchema, GetAllPromptsResponseFormat2$outboundSchema, GetAllPromptsResponseFormat2$, GetAllPromptsResponseFormatType$inboundSchema, GetAllPromptsResponseFormatType$outboundSchema, GetAllPromptsResponseFormatType$, GetAllPromptsResponseFormatJsonSchema$inboundSchema, GetAllPromptsResponseFormatJsonSchema$outboundSchema, GetAllPromptsResponseFormatJsonSchema$, GetAllPromptsResponseFormat1$inboundSchema, GetAllPromptsResponseFormat1$outboundSchema, GetAllPromptsResponseFormat1$, GetAllPromptsResponseFormat$inboundSchema, GetAllPromptsResponseFormat$outboundSchema, GetAllPromptsResponseFormat$, GetAllPromptsPhotoRealVersion$inboundSchema, GetAllPromptsPhotoRealVersion$outboundSchema, GetAllPromptsPhotoRealVersion$, GetAllPromptsEncodingFormat$inboundSchema, GetAllPromptsEncodingFormat$outboundSchema, GetAllPromptsEncodingFormat$, GetAllPromptsReasoningEffort$inboundSchema, GetAllPromptsReasoningEffort$outboundSchema, GetAllPromptsReasoningEffort$, GetAllPromptsModelParameters$inboundSchema, GetAllPromptsModelParameters$outboundSchema, GetAllPromptsModelParameters$, GetAllPromptsProvider$inboundSchema, GetAllPromptsProvider$outboundSchema, GetAllPromptsProvider$, GetAllPromptsRole$inboundSchema, GetAllPromptsRole$outboundSchema, GetAllPromptsRole$, GetAllPrompts2PromptsResponseType$inboundSchema, GetAllPrompts2PromptsResponseType$outboundSchema, GetAllPrompts2PromptsResponseType$, GetAllPrompts2File$inboundSchema, GetAllPrompts2File$outboundSchema, GetAllPrompts2File$, GetAllPrompts23$inboundSchema, GetAllPrompts23$outboundSchema, GetAllPrompts23$, GetAllPrompts2PromptsType$inboundSchema, GetAllPrompts2PromptsType$outboundSchema, GetAllPrompts2PromptsType$, GetAllPrompts2ImageUrl$inboundSchema, GetAllPrompts2ImageUrl$outboundSchema, GetAllPrompts2ImageUrl$, GetAllPrompts22$inboundSchema, GetAllPrompts22$outboundSchema, GetAllPrompts22$, GetAllPrompts2Type$inboundSchema, GetAllPrompts2Type$outboundSchema, GetAllPrompts2Type$, GetAllPrompts21$inboundSchema, GetAllPrompts21$outboundSchema, GetAllPrompts21$, GetAllPromptsContent2$inboundSchema, GetAllPromptsContent2$outboundSchema, GetAllPromptsContent2$, GetAllPromptsContent$inboundSchema, GetAllPromptsContent$outboundSchema, GetAllPromptsContent$, GetAllPromptsPromptsType$inboundSchema, GetAllPromptsPromptsType$outboundSchema, GetAllPromptsPromptsType$, GetAllPromptsFunction$inboundSchema, GetAllPromptsFunction$outboundSchema, GetAllPromptsFunction$, GetAllPromptsToolCalls$inboundSchema, GetAllPromptsToolCalls$outboundSchema, GetAllPromptsToolCalls$, GetAllPromptsMessages$inboundSchema, GetAllPromptsMessages$outboundSchema, GetAllPromptsMessages$, GetAllPromptsPromptConfig$inboundSchema, GetAllPromptsPromptConfig$outboundSchema, GetAllPromptsPromptConfig$, GetAllPromptsUseCases$inboundSchema, GetAllPromptsUseCases$outboundSchema, GetAllPromptsUseCases$, GetAllPromptsLanguage$inboundSchema, GetAllPromptsLanguage$outboundSchema, GetAllPromptsLanguage$, GetAllPromptsMetadata$inboundSchema, GetAllPromptsMetadata$outboundSchema, GetAllPromptsMetadata$, GetAllPromptsData$inboundSchema, GetAllPromptsData$outboundSchema, GetAllPromptsData$, GetAllPromptsResponseBody$inboundSchema, GetAllPromptsResponseBody$outboundSchema, GetAllPromptsResponseBody$;
48536
+ var GetAllPromptsObject, GetAllPromptsType, GetAllPromptsModelType, GetAllPromptsFormat, GetAllPromptsResponseFormatPromptsType, GetAllPromptsResponseFormatType, GetAllPromptsPhotoRealVersion, GetAllPromptsEncodingFormat, GetAllPromptsReasoningEffort, GetAllPromptsVerbosity, GetAllPromptsProvider, GetAllPromptsRole, GetAllPrompts2PromptsResponseType, GetAllPrompts2PromptsType, GetAllPrompts2Type, GetAllPromptsPromptsType, GetAllPromptsUseCases, GetAllPromptsLanguage, GetAllPromptsRequest$inboundSchema, GetAllPromptsRequest$outboundSchema, GetAllPromptsRequest$, GetAllPromptsObject$inboundSchema, GetAllPromptsObject$outboundSchema, GetAllPromptsObject$, GetAllPromptsType$inboundSchema, GetAllPromptsType$outboundSchema, GetAllPromptsType$, GetAllPromptsModelType$inboundSchema, GetAllPromptsModelType$outboundSchema, GetAllPromptsModelType$, GetAllPromptsFormat$inboundSchema, GetAllPromptsFormat$outboundSchema, GetAllPromptsFormat$, GetAllPromptsResponseFormatPromptsType$inboundSchema, GetAllPromptsResponseFormatPromptsType$outboundSchema, GetAllPromptsResponseFormatPromptsType$, GetAllPromptsResponseFormat2$inboundSchema, GetAllPromptsResponseFormat2$outboundSchema, GetAllPromptsResponseFormat2$, GetAllPromptsResponseFormatType$inboundSchema, GetAllPromptsResponseFormatType$outboundSchema, GetAllPromptsResponseFormatType$, GetAllPromptsResponseFormatJsonSchema$inboundSchema, GetAllPromptsResponseFormatJsonSchema$outboundSchema, GetAllPromptsResponseFormatJsonSchema$, GetAllPromptsResponseFormat1$inboundSchema, GetAllPromptsResponseFormat1$outboundSchema, GetAllPromptsResponseFormat1$, GetAllPromptsResponseFormat$inboundSchema, GetAllPromptsResponseFormat$outboundSchema, GetAllPromptsResponseFormat$, GetAllPromptsPhotoRealVersion$inboundSchema, GetAllPromptsPhotoRealVersion$outboundSchema, GetAllPromptsPhotoRealVersion$, GetAllPromptsEncodingFormat$inboundSchema, GetAllPromptsEncodingFormat$outboundSchema, GetAllPromptsEncodingFormat$, GetAllPromptsReasoningEffort$inboundSchema, GetAllPromptsReasoningEffort$outboundSchema, GetAllPromptsReasoningEffort$, GetAllPromptsVerbosity$inboundSchema, GetAllPromptsVerbosity$outboundSchema, GetAllPromptsVerbosity$, GetAllPromptsModelParameters$inboundSchema, GetAllPromptsModelParameters$outboundSchema, GetAllPromptsModelParameters$, GetAllPromptsProvider$inboundSchema, GetAllPromptsProvider$outboundSchema, GetAllPromptsProvider$, GetAllPromptsRole$inboundSchema, GetAllPromptsRole$outboundSchema, GetAllPromptsRole$, GetAllPrompts2PromptsResponseType$inboundSchema, GetAllPrompts2PromptsResponseType$outboundSchema, GetAllPrompts2PromptsResponseType$, GetAllPrompts2File$inboundSchema, GetAllPrompts2File$outboundSchema, GetAllPrompts2File$, GetAllPrompts23$inboundSchema, GetAllPrompts23$outboundSchema, GetAllPrompts23$, GetAllPrompts2PromptsType$inboundSchema, GetAllPrompts2PromptsType$outboundSchema, GetAllPrompts2PromptsType$, GetAllPrompts2ImageUrl$inboundSchema, GetAllPrompts2ImageUrl$outboundSchema, GetAllPrompts2ImageUrl$, GetAllPrompts22$inboundSchema, GetAllPrompts22$outboundSchema, GetAllPrompts22$, GetAllPrompts2Type$inboundSchema, GetAllPrompts2Type$outboundSchema, GetAllPrompts2Type$, GetAllPrompts21$inboundSchema, GetAllPrompts21$outboundSchema, GetAllPrompts21$, GetAllPromptsContent2$inboundSchema, GetAllPromptsContent2$outboundSchema, GetAllPromptsContent2$, GetAllPromptsContent$inboundSchema, GetAllPromptsContent$outboundSchema, GetAllPromptsContent$, GetAllPromptsPromptsType$inboundSchema, GetAllPromptsPromptsType$outboundSchema, GetAllPromptsPromptsType$, GetAllPromptsFunction$inboundSchema, GetAllPromptsFunction$outboundSchema, GetAllPromptsFunction$, GetAllPromptsToolCalls$inboundSchema, GetAllPromptsToolCalls$outboundSchema, GetAllPromptsToolCalls$, GetAllPromptsMessages$inboundSchema, GetAllPromptsMessages$outboundSchema, GetAllPromptsMessages$, GetAllPromptsPromptConfig$inboundSchema, GetAllPromptsPromptConfig$outboundSchema, GetAllPromptsPromptConfig$, GetAllPromptsUseCases$inboundSchema, GetAllPromptsUseCases$outboundSchema, GetAllPromptsUseCases$, GetAllPromptsLanguage$inboundSchema, GetAllPromptsLanguage$outboundSchema, GetAllPromptsLanguage$, GetAllPromptsMetadata$inboundSchema, GetAllPromptsMetadata$outboundSchema, GetAllPromptsMetadata$, GetAllPromptsData$inboundSchema, GetAllPromptsData$outboundSchema, GetAllPromptsData$, GetAllPromptsResponseBody$inboundSchema, GetAllPromptsResponseBody$outboundSchema, GetAllPromptsResponseBody$;
48485
48537
  var init_getallprompts = __esm(() => {
48486
48538
  init_esm();
48487
48539
  init_primitives();
@@ -48528,6 +48580,11 @@ var init_getallprompts = __esm(() => {
48528
48580
  Medium: "medium",
48529
48581
  High: "high"
48530
48582
  };
48583
+ GetAllPromptsVerbosity = {
48584
+ Low: "low",
48585
+ Medium: "medium",
48586
+ High: "high"
48587
+ };
48531
48588
  GetAllPromptsProvider = {
48532
48589
  Cohere: "cohere",
48533
48590
  Openai: "openai",
@@ -48738,6 +48795,12 @@ var init_getallprompts = __esm(() => {
48738
48795
  GetAllPromptsReasoningEffort$.inboundSchema = GetAllPromptsReasoningEffort$inboundSchema;
48739
48796
  GetAllPromptsReasoningEffort$.outboundSchema = GetAllPromptsReasoningEffort$outboundSchema;
48740
48797
  })(GetAllPromptsReasoningEffort$ ||= {});
48798
+ GetAllPromptsVerbosity$inboundSchema = nativeEnumType(GetAllPromptsVerbosity);
48799
+ GetAllPromptsVerbosity$outboundSchema = GetAllPromptsVerbosity$inboundSchema;
48800
+ ((GetAllPromptsVerbosity$) => {
48801
+ GetAllPromptsVerbosity$.inboundSchema = GetAllPromptsVerbosity$inboundSchema;
48802
+ GetAllPromptsVerbosity$.outboundSchema = GetAllPromptsVerbosity$outboundSchema;
48803
+ })(GetAllPromptsVerbosity$ ||= {});
48741
48804
  GetAllPromptsModelParameters$inboundSchema = objectType({
48742
48805
  temperature: numberType().optional(),
48743
48806
  maxTokens: numberType().optional(),
@@ -48758,7 +48821,8 @@ var init_getallprompts = __esm(() => {
48758
48821
  photoRealVersion: GetAllPromptsPhotoRealVersion$inboundSchema.optional(),
48759
48822
  encoding_format: GetAllPromptsEncodingFormat$inboundSchema.optional(),
48760
48823
  reasoningEffort: GetAllPromptsReasoningEffort$inboundSchema.optional(),
48761
- budgetTokens: numberType().optional()
48824
+ budgetTokens: numberType().optional(),
48825
+ verbosity: GetAllPromptsVerbosity$inboundSchema.optional()
48762
48826
  }).transform((v2) => {
48763
48827
  return remap(v2, {
48764
48828
  encoding_format: "encodingFormat"
@@ -48784,7 +48848,8 @@ var init_getallprompts = __esm(() => {
48784
48848
  photoRealVersion: GetAllPromptsPhotoRealVersion$outboundSchema.optional(),
48785
48849
  encodingFormat: GetAllPromptsEncodingFormat$outboundSchema.optional(),
48786
48850
  reasoningEffort: GetAllPromptsReasoningEffort$outboundSchema.optional(),
48787
- budgetTokens: numberType().optional()
48851
+ budgetTokens: numberType().optional(),
48852
+ verbosity: GetAllPromptsVerbosity$outboundSchema.optional()
48788
48853
  }).transform((v2) => {
48789
48854
  return remap(v2, {
48790
48855
  encodingFormat: "encoding_format"
@@ -49505,8 +49570,8 @@ var init_getevals = __esm(() => {
49505
49570
  Typescript$inboundSchema = objectType({
49506
49571
  _id: stringType(),
49507
49572
  description: stringType(),
49508
- created: stringType().default("2025-08-07T14:39:08.644Z"),
49509
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
49573
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
49574
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
49510
49575
  guardrail_config: unionType([
49511
49576
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
49512
49577
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -49523,8 +49588,8 @@ var init_getevals = __esm(() => {
49523
49588
  Typescript$outboundSchema = objectType({
49524
49589
  id: stringType(),
49525
49590
  description: stringType(),
49526
- created: stringType().default("2025-08-07T14:39:08.644Z"),
49527
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
49591
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
49592
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
49528
49593
  guardrailConfig: unionType([
49529
49594
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
49530
49595
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -49617,8 +49682,8 @@ var init_getevals = __esm(() => {
49617
49682
  Ragas$inboundSchema = objectType({
49618
49683
  _id: stringType(),
49619
49684
  description: stringType(),
49620
- created: stringType().default("2025-08-07T14:39:08.644Z"),
49621
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
49685
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
49686
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
49622
49687
  guardrail_config: unionType([
49623
49688
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
49624
49689
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -49637,8 +49702,8 @@ var init_getevals = __esm(() => {
49637
49702
  Ragas$outboundSchema = objectType({
49638
49703
  id: stringType(),
49639
49704
  description: stringType(),
49640
- created: stringType().default("2025-08-07T14:39:08.644Z"),
49641
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
49705
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
49706
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
49642
49707
  guardrailConfig: unionType([
49643
49708
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
49644
49709
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -50391,8 +50456,8 @@ var init_getevals = __esm(() => {
50391
50456
  DataFunction$inboundSchema = objectType({
50392
50457
  _id: stringType(),
50393
50458
  description: stringType(),
50394
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50395
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50459
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50460
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50396
50461
  guardrail_config: unionType([
50397
50462
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
50398
50463
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -50446,8 +50511,8 @@ var init_getevals = __esm(() => {
50446
50511
  DataFunction$outboundSchema = objectType({
50447
50512
  id: stringType(),
50448
50513
  description: stringType(),
50449
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50450
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50514
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50515
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50451
50516
  guardrailConfig: unionType([
50452
50517
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
50453
50518
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -50571,8 +50636,8 @@ var init_getevals = __esm(() => {
50571
50636
  DataPython$inboundSchema = objectType({
50572
50637
  _id: stringType(),
50573
50638
  description: stringType(),
50574
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50575
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50639
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50640
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50576
50641
  guardrail_config: unionType([
50577
50642
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
50578
50643
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
@@ -50589,8 +50654,8 @@ var init_getevals = __esm(() => {
50589
50654
  DataPython$outboundSchema = objectType({
50590
50655
  id: stringType(),
50591
50656
  description: stringType(),
50592
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50593
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50657
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50658
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50594
50659
  guardrailConfig: unionType([
50595
50660
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
50596
50661
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
@@ -50683,8 +50748,8 @@ var init_getevals = __esm(() => {
50683
50748
  DataHTTP$inboundSchema = objectType({
50684
50749
  _id: stringType(),
50685
50750
  description: stringType(),
50686
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50687
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50751
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50752
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50688
50753
  guardrail_config: unionType([
50689
50754
  lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
50690
50755
  lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
@@ -50704,8 +50769,8 @@ var init_getevals = __esm(() => {
50704
50769
  DataHTTP$outboundSchema = objectType({
50705
50770
  id: stringType(),
50706
50771
  description: stringType(),
50707
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50708
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50772
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50773
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50709
50774
  guardrailConfig: unionType([
50710
50775
  lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
50711
50776
  lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
@@ -50795,8 +50860,8 @@ var init_getevals = __esm(() => {
50795
50860
  DataJSON$inboundSchema = objectType({
50796
50861
  _id: stringType(),
50797
50862
  description: stringType(),
50798
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50799
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50863
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50864
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50800
50865
  guardrail_config: unionType([
50801
50866
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
50802
50867
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
@@ -50813,8 +50878,8 @@ var init_getevals = __esm(() => {
50813
50878
  DataJSON$outboundSchema = objectType({
50814
50879
  id: stringType(),
50815
50880
  description: stringType(),
50816
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50817
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50881
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50882
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50818
50883
  guardrailConfig: unionType([
50819
50884
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
50820
50885
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
@@ -50901,8 +50966,8 @@ var init_getevals = __esm(() => {
50901
50966
  DataLLM$inboundSchema = objectType({
50902
50967
  _id: stringType(),
50903
50968
  description: stringType(),
50904
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50905
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50969
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50970
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50906
50971
  guardrail_config: unionType([
50907
50972
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
50908
50973
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -50920,8 +50985,8 @@ var init_getevals = __esm(() => {
50920
50985
  DataLLM$outboundSchema = objectType({
50921
50986
  id: stringType(),
50922
50987
  description: stringType(),
50923
- created: stringType().default("2025-08-07T14:39:08.644Z"),
50924
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
50988
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
50989
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
50925
50990
  guardrailConfig: unionType([
50926
50991
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
50927
50992
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -51239,7 +51304,7 @@ var init_getoneknowledge = __esm(() => {
51239
51304
  });
51240
51305
 
51241
51306
  // src/models/operations/getoneprompt.ts
51242
- var GetOnePromptType, GetOnePromptModelType, GetOnePromptFormat, GetOnePromptResponseFormatPromptsType, GetOnePromptResponseFormatType, GetOnePromptPhotoRealVersion, GetOnePromptEncodingFormat, GetOnePromptReasoningEffort, GetOnePromptProvider, GetOnePromptRole, GetOnePrompt2PromptsResponseType, GetOnePrompt2PromptsType, GetOnePrompt2Type, GetOnePromptPromptsType, GetOnePromptUseCases, GetOnePromptLanguage, GetOnePromptRequest$inboundSchema, GetOnePromptRequest$outboundSchema, GetOnePromptRequest$, GetOnePromptType$inboundSchema, GetOnePromptType$outboundSchema, GetOnePromptType$, GetOnePromptModelType$inboundSchema, GetOnePromptModelType$outboundSchema, GetOnePromptModelType$, GetOnePromptFormat$inboundSchema, GetOnePromptFormat$outboundSchema, GetOnePromptFormat$, GetOnePromptResponseFormatPromptsType$inboundSchema, GetOnePromptResponseFormatPromptsType$outboundSchema, GetOnePromptResponseFormatPromptsType$, GetOnePromptResponseFormat2$inboundSchema, GetOnePromptResponseFormat2$outboundSchema, GetOnePromptResponseFormat2$, GetOnePromptResponseFormatType$inboundSchema, GetOnePromptResponseFormatType$outboundSchema, GetOnePromptResponseFormatType$, GetOnePromptResponseFormatJsonSchema$inboundSchema, GetOnePromptResponseFormatJsonSchema$outboundSchema, GetOnePromptResponseFormatJsonSchema$, GetOnePromptResponseFormat1$inboundSchema, GetOnePromptResponseFormat1$outboundSchema, GetOnePromptResponseFormat1$, GetOnePromptResponseFormat$inboundSchema, GetOnePromptResponseFormat$outboundSchema, GetOnePromptResponseFormat$, GetOnePromptPhotoRealVersion$inboundSchema, GetOnePromptPhotoRealVersion$outboundSchema, GetOnePromptPhotoRealVersion$, GetOnePromptEncodingFormat$inboundSchema, GetOnePromptEncodingFormat$outboundSchema, GetOnePromptEncodingFormat$, GetOnePromptReasoningEffort$inboundSchema, GetOnePromptReasoningEffort$outboundSchema, GetOnePromptReasoningEffort$, GetOnePromptModelParameters$inboundSchema, GetOnePromptModelParameters$outboundSchema, GetOnePromptModelParameters$, GetOnePromptProvider$inboundSchema, GetOnePromptProvider$outboundSchema, GetOnePromptProvider$, GetOnePromptRole$inboundSchema, GetOnePromptRole$outboundSchema, GetOnePromptRole$, GetOnePrompt2PromptsResponseType$inboundSchema, GetOnePrompt2PromptsResponseType$outboundSchema, GetOnePrompt2PromptsResponseType$, GetOnePrompt2File$inboundSchema, GetOnePrompt2File$outboundSchema, GetOnePrompt2File$, GetOnePrompt23$inboundSchema, GetOnePrompt23$outboundSchema, GetOnePrompt23$, GetOnePrompt2PromptsType$inboundSchema, GetOnePrompt2PromptsType$outboundSchema, GetOnePrompt2PromptsType$, GetOnePrompt2ImageUrl$inboundSchema, GetOnePrompt2ImageUrl$outboundSchema, GetOnePrompt2ImageUrl$, GetOnePrompt22$inboundSchema, GetOnePrompt22$outboundSchema, GetOnePrompt22$, GetOnePrompt2Type$inboundSchema, GetOnePrompt2Type$outboundSchema, GetOnePrompt2Type$, GetOnePrompt21$inboundSchema, GetOnePrompt21$outboundSchema, GetOnePrompt21$, GetOnePromptContent2$inboundSchema, GetOnePromptContent2$outboundSchema, GetOnePromptContent2$, GetOnePromptContent$inboundSchema, GetOnePromptContent$outboundSchema, GetOnePromptContent$, GetOnePromptPromptsType$inboundSchema, GetOnePromptPromptsType$outboundSchema, GetOnePromptPromptsType$, GetOnePromptFunction$inboundSchema, GetOnePromptFunction$outboundSchema, GetOnePromptFunction$, GetOnePromptToolCalls$inboundSchema, GetOnePromptToolCalls$outboundSchema, GetOnePromptToolCalls$, GetOnePromptMessages$inboundSchema, GetOnePromptMessages$outboundSchema, GetOnePromptMessages$, GetOnePromptPromptConfig$inboundSchema, GetOnePromptPromptConfig$outboundSchema, GetOnePromptPromptConfig$, GetOnePromptUseCases$inboundSchema, GetOnePromptUseCases$outboundSchema, GetOnePromptUseCases$, GetOnePromptLanguage$inboundSchema, GetOnePromptLanguage$outboundSchema, GetOnePromptLanguage$, GetOnePromptMetadata$inboundSchema, GetOnePromptMetadata$outboundSchema, GetOnePromptMetadata$, GetOnePromptResponseBody$inboundSchema, GetOnePromptResponseBody$outboundSchema, GetOnePromptResponseBody$;
51307
+ var GetOnePromptType, GetOnePromptModelType, GetOnePromptFormat, GetOnePromptResponseFormatPromptsType, GetOnePromptResponseFormatType, GetOnePromptPhotoRealVersion, GetOnePromptEncodingFormat, GetOnePromptReasoningEffort, GetOnePromptVerbosity, GetOnePromptProvider, GetOnePromptRole, GetOnePrompt2PromptsResponseType, GetOnePrompt2PromptsType, GetOnePrompt2Type, GetOnePromptPromptsType, GetOnePromptUseCases, GetOnePromptLanguage, GetOnePromptRequest$inboundSchema, GetOnePromptRequest$outboundSchema, GetOnePromptRequest$, GetOnePromptType$inboundSchema, GetOnePromptType$outboundSchema, GetOnePromptType$, GetOnePromptModelType$inboundSchema, GetOnePromptModelType$outboundSchema, GetOnePromptModelType$, GetOnePromptFormat$inboundSchema, GetOnePromptFormat$outboundSchema, GetOnePromptFormat$, GetOnePromptResponseFormatPromptsType$inboundSchema, GetOnePromptResponseFormatPromptsType$outboundSchema, GetOnePromptResponseFormatPromptsType$, GetOnePromptResponseFormat2$inboundSchema, GetOnePromptResponseFormat2$outboundSchema, GetOnePromptResponseFormat2$, GetOnePromptResponseFormatType$inboundSchema, GetOnePromptResponseFormatType$outboundSchema, GetOnePromptResponseFormatType$, GetOnePromptResponseFormatJsonSchema$inboundSchema, GetOnePromptResponseFormatJsonSchema$outboundSchema, GetOnePromptResponseFormatJsonSchema$, GetOnePromptResponseFormat1$inboundSchema, GetOnePromptResponseFormat1$outboundSchema, GetOnePromptResponseFormat1$, GetOnePromptResponseFormat$inboundSchema, GetOnePromptResponseFormat$outboundSchema, GetOnePromptResponseFormat$, GetOnePromptPhotoRealVersion$inboundSchema, GetOnePromptPhotoRealVersion$outboundSchema, GetOnePromptPhotoRealVersion$, GetOnePromptEncodingFormat$inboundSchema, GetOnePromptEncodingFormat$outboundSchema, GetOnePromptEncodingFormat$, GetOnePromptReasoningEffort$inboundSchema, GetOnePromptReasoningEffort$outboundSchema, GetOnePromptReasoningEffort$, GetOnePromptVerbosity$inboundSchema, GetOnePromptVerbosity$outboundSchema, GetOnePromptVerbosity$, GetOnePromptModelParameters$inboundSchema, GetOnePromptModelParameters$outboundSchema, GetOnePromptModelParameters$, GetOnePromptProvider$inboundSchema, GetOnePromptProvider$outboundSchema, GetOnePromptProvider$, GetOnePromptRole$inboundSchema, GetOnePromptRole$outboundSchema, GetOnePromptRole$, GetOnePrompt2PromptsResponseType$inboundSchema, GetOnePrompt2PromptsResponseType$outboundSchema, GetOnePrompt2PromptsResponseType$, GetOnePrompt2File$inboundSchema, GetOnePrompt2File$outboundSchema, GetOnePrompt2File$, GetOnePrompt23$inboundSchema, GetOnePrompt23$outboundSchema, GetOnePrompt23$, GetOnePrompt2PromptsType$inboundSchema, GetOnePrompt2PromptsType$outboundSchema, GetOnePrompt2PromptsType$, GetOnePrompt2ImageUrl$inboundSchema, GetOnePrompt2ImageUrl$outboundSchema, GetOnePrompt2ImageUrl$, GetOnePrompt22$inboundSchema, GetOnePrompt22$outboundSchema, GetOnePrompt22$, GetOnePrompt2Type$inboundSchema, GetOnePrompt2Type$outboundSchema, GetOnePrompt2Type$, GetOnePrompt21$inboundSchema, GetOnePrompt21$outboundSchema, GetOnePrompt21$, GetOnePromptContent2$inboundSchema, GetOnePromptContent2$outboundSchema, GetOnePromptContent2$, GetOnePromptContent$inboundSchema, GetOnePromptContent$outboundSchema, GetOnePromptContent$, GetOnePromptPromptsType$inboundSchema, GetOnePromptPromptsType$outboundSchema, GetOnePromptPromptsType$, GetOnePromptFunction$inboundSchema, GetOnePromptFunction$outboundSchema, GetOnePromptFunction$, GetOnePromptToolCalls$inboundSchema, GetOnePromptToolCalls$outboundSchema, GetOnePromptToolCalls$, GetOnePromptMessages$inboundSchema, GetOnePromptMessages$outboundSchema, GetOnePromptMessages$, GetOnePromptPromptConfig$inboundSchema, GetOnePromptPromptConfig$outboundSchema, GetOnePromptPromptConfig$, GetOnePromptUseCases$inboundSchema, GetOnePromptUseCases$outboundSchema, GetOnePromptUseCases$, GetOnePromptLanguage$inboundSchema, GetOnePromptLanguage$outboundSchema, GetOnePromptLanguage$, GetOnePromptMetadata$inboundSchema, GetOnePromptMetadata$outboundSchema, GetOnePromptMetadata$, GetOnePromptResponseBody$inboundSchema, GetOnePromptResponseBody$outboundSchema, GetOnePromptResponseBody$;
51243
51308
  var init_getoneprompt = __esm(() => {
51244
51309
  init_esm();
51245
51310
  init_primitives();
@@ -51283,6 +51348,11 @@ var init_getoneprompt = __esm(() => {
51283
51348
  Medium: "medium",
51284
51349
  High: "high"
51285
51350
  };
51351
+ GetOnePromptVerbosity = {
51352
+ Low: "low",
51353
+ Medium: "medium",
51354
+ High: "high"
51355
+ };
51286
51356
  GetOnePromptProvider = {
51287
51357
  Cohere: "cohere",
51288
51358
  Openai: "openai",
@@ -51473,6 +51543,12 @@ var init_getoneprompt = __esm(() => {
51473
51543
  GetOnePromptReasoningEffort$.inboundSchema = GetOnePromptReasoningEffort$inboundSchema;
51474
51544
  GetOnePromptReasoningEffort$.outboundSchema = GetOnePromptReasoningEffort$outboundSchema;
51475
51545
  })(GetOnePromptReasoningEffort$ ||= {});
51546
+ GetOnePromptVerbosity$inboundSchema = nativeEnumType(GetOnePromptVerbosity);
51547
+ GetOnePromptVerbosity$outboundSchema = GetOnePromptVerbosity$inboundSchema;
51548
+ ((GetOnePromptVerbosity$) => {
51549
+ GetOnePromptVerbosity$.inboundSchema = GetOnePromptVerbosity$inboundSchema;
51550
+ GetOnePromptVerbosity$.outboundSchema = GetOnePromptVerbosity$outboundSchema;
51551
+ })(GetOnePromptVerbosity$ ||= {});
51476
51552
  GetOnePromptModelParameters$inboundSchema = objectType({
51477
51553
  temperature: numberType().optional(),
51478
51554
  maxTokens: numberType().optional(),
@@ -51493,7 +51569,8 @@ var init_getoneprompt = __esm(() => {
51493
51569
  photoRealVersion: GetOnePromptPhotoRealVersion$inboundSchema.optional(),
51494
51570
  encoding_format: GetOnePromptEncodingFormat$inboundSchema.optional(),
51495
51571
  reasoningEffort: GetOnePromptReasoningEffort$inboundSchema.optional(),
51496
- budgetTokens: numberType().optional()
51572
+ budgetTokens: numberType().optional(),
51573
+ verbosity: GetOnePromptVerbosity$inboundSchema.optional()
51497
51574
  }).transform((v2) => {
51498
51575
  return remap(v2, {
51499
51576
  encoding_format: "encodingFormat"
@@ -51519,7 +51596,8 @@ var init_getoneprompt = __esm(() => {
51519
51596
  photoRealVersion: GetOnePromptPhotoRealVersion$outboundSchema.optional(),
51520
51597
  encodingFormat: GetOnePromptEncodingFormat$outboundSchema.optional(),
51521
51598
  reasoningEffort: GetOnePromptReasoningEffort$outboundSchema.optional(),
51522
- budgetTokens: numberType().optional()
51599
+ budgetTokens: numberType().optional(),
51600
+ verbosity: GetOnePromptVerbosity$outboundSchema.optional()
51523
51601
  }).transform((v2) => {
51524
51602
  return remap(v2, {
51525
51603
  encodingFormat: "encoding_format"
@@ -51870,7 +51948,7 @@ var init_getoneprompt = __esm(() => {
51870
51948
  });
51871
51949
 
51872
51950
  // src/models/operations/getpromptversion.ts
51873
- var GetPromptVersionModelType, GetPromptVersionFormat, GetPromptVersionResponseFormatPromptsType, GetPromptVersionResponseFormatType, GetPromptVersionPhotoRealVersion, GetPromptVersionEncodingFormat, GetPromptVersionReasoningEffort, GetPromptVersionProvider, GetPromptVersionRole, GetPromptVersion2PromptsResponseType, GetPromptVersion2PromptsType, GetPromptVersion2Type, GetPromptVersionType, GetPromptVersionUseCases, GetPromptVersionLanguage, GetPromptVersionRequest$inboundSchema, GetPromptVersionRequest$outboundSchema, GetPromptVersionRequest$, GetPromptVersionModelType$inboundSchema, GetPromptVersionModelType$outboundSchema, GetPromptVersionModelType$, GetPromptVersionFormat$inboundSchema, GetPromptVersionFormat$outboundSchema, GetPromptVersionFormat$, GetPromptVersionResponseFormatPromptsType$inboundSchema, GetPromptVersionResponseFormatPromptsType$outboundSchema, GetPromptVersionResponseFormatPromptsType$, GetPromptVersionResponseFormat2$inboundSchema, GetPromptVersionResponseFormat2$outboundSchema, GetPromptVersionResponseFormat2$, GetPromptVersionResponseFormatType$inboundSchema, GetPromptVersionResponseFormatType$outboundSchema, GetPromptVersionResponseFormatType$, GetPromptVersionResponseFormatJsonSchema$inboundSchema, GetPromptVersionResponseFormatJsonSchema$outboundSchema, GetPromptVersionResponseFormatJsonSchema$, GetPromptVersionResponseFormat1$inboundSchema, GetPromptVersionResponseFormat1$outboundSchema, GetPromptVersionResponseFormat1$, GetPromptVersionResponseFormat$inboundSchema, GetPromptVersionResponseFormat$outboundSchema, GetPromptVersionResponseFormat$, GetPromptVersionPhotoRealVersion$inboundSchema, GetPromptVersionPhotoRealVersion$outboundSchema, GetPromptVersionPhotoRealVersion$, GetPromptVersionEncodingFormat$inboundSchema, GetPromptVersionEncodingFormat$outboundSchema, GetPromptVersionEncodingFormat$, GetPromptVersionReasoningEffort$inboundSchema, GetPromptVersionReasoningEffort$outboundSchema, GetPromptVersionReasoningEffort$, GetPromptVersionModelParameters$inboundSchema, GetPromptVersionModelParameters$outboundSchema, GetPromptVersionModelParameters$, GetPromptVersionProvider$inboundSchema, GetPromptVersionProvider$outboundSchema, GetPromptVersionProvider$, GetPromptVersionRole$inboundSchema, GetPromptVersionRole$outboundSchema, GetPromptVersionRole$, GetPromptVersion2PromptsResponseType$inboundSchema, GetPromptVersion2PromptsResponseType$outboundSchema, GetPromptVersion2PromptsResponseType$, GetPromptVersion2File$inboundSchema, GetPromptVersion2File$outboundSchema, GetPromptVersion2File$, GetPromptVersion23$inboundSchema, GetPromptVersion23$outboundSchema, GetPromptVersion23$, GetPromptVersion2PromptsType$inboundSchema, GetPromptVersion2PromptsType$outboundSchema, GetPromptVersion2PromptsType$, GetPromptVersion2ImageUrl$inboundSchema, GetPromptVersion2ImageUrl$outboundSchema, GetPromptVersion2ImageUrl$, GetPromptVersion22$inboundSchema, GetPromptVersion22$outboundSchema, GetPromptVersion22$, GetPromptVersion2Type$inboundSchema, GetPromptVersion2Type$outboundSchema, GetPromptVersion2Type$, GetPromptVersion21$inboundSchema, GetPromptVersion21$outboundSchema, GetPromptVersion21$, GetPromptVersionContent2$inboundSchema, GetPromptVersionContent2$outboundSchema, GetPromptVersionContent2$, GetPromptVersionContent$inboundSchema, GetPromptVersionContent$outboundSchema, GetPromptVersionContent$, GetPromptVersionType$inboundSchema, GetPromptVersionType$outboundSchema, GetPromptVersionType$, GetPromptVersionFunction$inboundSchema, GetPromptVersionFunction$outboundSchema, GetPromptVersionFunction$, GetPromptVersionToolCalls$inboundSchema, GetPromptVersionToolCalls$outboundSchema, GetPromptVersionToolCalls$, GetPromptVersionMessages$inboundSchema, GetPromptVersionMessages$outboundSchema, GetPromptVersionMessages$, GetPromptVersionPromptConfig$inboundSchema, GetPromptVersionPromptConfig$outboundSchema, GetPromptVersionPromptConfig$, GetPromptVersionUseCases$inboundSchema, GetPromptVersionUseCases$outboundSchema, GetPromptVersionUseCases$, GetPromptVersionLanguage$inboundSchema, GetPromptVersionLanguage$outboundSchema, GetPromptVersionLanguage$, GetPromptVersionMetadata$inboundSchema, GetPromptVersionMetadata$outboundSchema, GetPromptVersionMetadata$, GetPromptVersionResponseBody$inboundSchema, GetPromptVersionResponseBody$outboundSchema, GetPromptVersionResponseBody$;
51951
+ var GetPromptVersionModelType, GetPromptVersionFormat, GetPromptVersionResponseFormatPromptsType, GetPromptVersionResponseFormatType, GetPromptVersionPhotoRealVersion, GetPromptVersionEncodingFormat, GetPromptVersionReasoningEffort, GetPromptVersionVerbosity, GetPromptVersionProvider, GetPromptVersionRole, GetPromptVersion2PromptsResponseType, GetPromptVersion2PromptsType, GetPromptVersion2Type, GetPromptVersionType, GetPromptVersionUseCases, GetPromptVersionLanguage, GetPromptVersionRequest$inboundSchema, GetPromptVersionRequest$outboundSchema, GetPromptVersionRequest$, GetPromptVersionModelType$inboundSchema, GetPromptVersionModelType$outboundSchema, GetPromptVersionModelType$, GetPromptVersionFormat$inboundSchema, GetPromptVersionFormat$outboundSchema, GetPromptVersionFormat$, GetPromptVersionResponseFormatPromptsType$inboundSchema, GetPromptVersionResponseFormatPromptsType$outboundSchema, GetPromptVersionResponseFormatPromptsType$, GetPromptVersionResponseFormat2$inboundSchema, GetPromptVersionResponseFormat2$outboundSchema, GetPromptVersionResponseFormat2$, GetPromptVersionResponseFormatType$inboundSchema, GetPromptVersionResponseFormatType$outboundSchema, GetPromptVersionResponseFormatType$, GetPromptVersionResponseFormatJsonSchema$inboundSchema, GetPromptVersionResponseFormatJsonSchema$outboundSchema, GetPromptVersionResponseFormatJsonSchema$, GetPromptVersionResponseFormat1$inboundSchema, GetPromptVersionResponseFormat1$outboundSchema, GetPromptVersionResponseFormat1$, GetPromptVersionResponseFormat$inboundSchema, GetPromptVersionResponseFormat$outboundSchema, GetPromptVersionResponseFormat$, GetPromptVersionPhotoRealVersion$inboundSchema, GetPromptVersionPhotoRealVersion$outboundSchema, GetPromptVersionPhotoRealVersion$, GetPromptVersionEncodingFormat$inboundSchema, GetPromptVersionEncodingFormat$outboundSchema, GetPromptVersionEncodingFormat$, GetPromptVersionReasoningEffort$inboundSchema, GetPromptVersionReasoningEffort$outboundSchema, GetPromptVersionReasoningEffort$, GetPromptVersionVerbosity$inboundSchema, GetPromptVersionVerbosity$outboundSchema, GetPromptVersionVerbosity$, GetPromptVersionModelParameters$inboundSchema, GetPromptVersionModelParameters$outboundSchema, GetPromptVersionModelParameters$, GetPromptVersionProvider$inboundSchema, GetPromptVersionProvider$outboundSchema, GetPromptVersionProvider$, GetPromptVersionRole$inboundSchema, GetPromptVersionRole$outboundSchema, GetPromptVersionRole$, GetPromptVersion2PromptsResponseType$inboundSchema, GetPromptVersion2PromptsResponseType$outboundSchema, GetPromptVersion2PromptsResponseType$, GetPromptVersion2File$inboundSchema, GetPromptVersion2File$outboundSchema, GetPromptVersion2File$, GetPromptVersion23$inboundSchema, GetPromptVersion23$outboundSchema, GetPromptVersion23$, GetPromptVersion2PromptsType$inboundSchema, GetPromptVersion2PromptsType$outboundSchema, GetPromptVersion2PromptsType$, GetPromptVersion2ImageUrl$inboundSchema, GetPromptVersion2ImageUrl$outboundSchema, GetPromptVersion2ImageUrl$, GetPromptVersion22$inboundSchema, GetPromptVersion22$outboundSchema, GetPromptVersion22$, GetPromptVersion2Type$inboundSchema, GetPromptVersion2Type$outboundSchema, GetPromptVersion2Type$, GetPromptVersion21$inboundSchema, GetPromptVersion21$outboundSchema, GetPromptVersion21$, GetPromptVersionContent2$inboundSchema, GetPromptVersionContent2$outboundSchema, GetPromptVersionContent2$, GetPromptVersionContent$inboundSchema, GetPromptVersionContent$outboundSchema, GetPromptVersionContent$, GetPromptVersionType$inboundSchema, GetPromptVersionType$outboundSchema, GetPromptVersionType$, GetPromptVersionFunction$inboundSchema, GetPromptVersionFunction$outboundSchema, GetPromptVersionFunction$, GetPromptVersionToolCalls$inboundSchema, GetPromptVersionToolCalls$outboundSchema, GetPromptVersionToolCalls$, GetPromptVersionMessages$inboundSchema, GetPromptVersionMessages$outboundSchema, GetPromptVersionMessages$, GetPromptVersionPromptConfig$inboundSchema, GetPromptVersionPromptConfig$outboundSchema, GetPromptVersionPromptConfig$, GetPromptVersionUseCases$inboundSchema, GetPromptVersionUseCases$outboundSchema, GetPromptVersionUseCases$, GetPromptVersionLanguage$inboundSchema, GetPromptVersionLanguage$outboundSchema, GetPromptVersionLanguage$, GetPromptVersionMetadata$inboundSchema, GetPromptVersionMetadata$outboundSchema, GetPromptVersionMetadata$, GetPromptVersionResponseBody$inboundSchema, GetPromptVersionResponseBody$outboundSchema, GetPromptVersionResponseBody$;
51874
51952
  var init_getpromptversion = __esm(() => {
51875
51953
  init_esm();
51876
51954
  init_primitives();
@@ -51911,6 +51989,11 @@ var init_getpromptversion = __esm(() => {
51911
51989
  Medium: "medium",
51912
51990
  High: "high"
51913
51991
  };
51992
+ GetPromptVersionVerbosity = {
51993
+ Low: "low",
51994
+ Medium: "medium",
51995
+ High: "high"
51996
+ };
51914
51997
  GetPromptVersionProvider = {
51915
51998
  Cohere: "cohere",
51916
51999
  Openai: "openai",
@@ -52107,6 +52190,12 @@ var init_getpromptversion = __esm(() => {
52107
52190
  GetPromptVersionReasoningEffort$.inboundSchema = GetPromptVersionReasoningEffort$inboundSchema;
52108
52191
  GetPromptVersionReasoningEffort$.outboundSchema = GetPromptVersionReasoningEffort$outboundSchema;
52109
52192
  })(GetPromptVersionReasoningEffort$ ||= {});
52193
+ GetPromptVersionVerbosity$inboundSchema = nativeEnumType(GetPromptVersionVerbosity);
52194
+ GetPromptVersionVerbosity$outboundSchema = GetPromptVersionVerbosity$inboundSchema;
52195
+ ((GetPromptVersionVerbosity$) => {
52196
+ GetPromptVersionVerbosity$.inboundSchema = GetPromptVersionVerbosity$inboundSchema;
52197
+ GetPromptVersionVerbosity$.outboundSchema = GetPromptVersionVerbosity$outboundSchema;
52198
+ })(GetPromptVersionVerbosity$ ||= {});
52110
52199
  GetPromptVersionModelParameters$inboundSchema = objectType({
52111
52200
  temperature: numberType().optional(),
52112
52201
  maxTokens: numberType().optional(),
@@ -52127,7 +52216,8 @@ var init_getpromptversion = __esm(() => {
52127
52216
  photoRealVersion: GetPromptVersionPhotoRealVersion$inboundSchema.optional(),
52128
52217
  encoding_format: GetPromptVersionEncodingFormat$inboundSchema.optional(),
52129
52218
  reasoningEffort: GetPromptVersionReasoningEffort$inboundSchema.optional(),
52130
- budgetTokens: numberType().optional()
52219
+ budgetTokens: numberType().optional(),
52220
+ verbosity: GetPromptVersionVerbosity$inboundSchema.optional()
52131
52221
  }).transform((v2) => {
52132
52222
  return remap(v2, {
52133
52223
  encoding_format: "encodingFormat"
@@ -52153,7 +52243,8 @@ var init_getpromptversion = __esm(() => {
52153
52243
  photoRealVersion: GetPromptVersionPhotoRealVersion$outboundSchema.optional(),
52154
52244
  encodingFormat: GetPromptVersionEncodingFormat$outboundSchema.optional(),
52155
52245
  reasoningEffort: GetPromptVersionReasoningEffort$outboundSchema.optional(),
52156
- budgetTokens: numberType().optional()
52246
+ budgetTokens: numberType().optional(),
52247
+ verbosity: GetPromptVersionVerbosity$outboundSchema.optional()
52157
52248
  }).transform((v2) => {
52158
52249
  return remap(v2, {
52159
52250
  encodingFormat: "encoding_format"
@@ -53322,7 +53413,7 @@ var init_listcontacts = __esm(() => {
53322
53413
  tags: arrayType(stringType()).optional(),
53323
53414
  metadata: recordType(anyType()).optional(),
53324
53415
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53325
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2)),
53416
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2)),
53326
53417
  metrics: lazyType(() => Metrics$inboundSchema)
53327
53418
  }).transform((v2) => {
53328
53419
  return remap(v2, {
@@ -53341,7 +53432,7 @@ var init_listcontacts = __esm(() => {
53341
53432
  tags: arrayType(stringType()).optional(),
53342
53433
  metadata: recordType(anyType()).optional(),
53343
53434
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53344
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString()),
53435
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString()),
53345
53436
  metrics: lazyType(() => Metrics$outboundSchema)
53346
53437
  }).transform((v2) => {
53347
53438
  return remap(v2, {
@@ -53956,7 +54047,7 @@ var init_listdatasetdatapoints = __esm(() => {
53956
54047
  created_by_id: stringType().optional(),
53957
54048
  updated_by_id: stringType().optional(),
53958
54049
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53959
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
54050
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
53960
54051
  }).transform((v2) => {
53961
54052
  return remap(v2, {
53962
54053
  _id: "id",
@@ -53983,7 +54074,7 @@ var init_listdatasetdatapoints = __esm(() => {
53983
54074
  createdById: stringType().optional(),
53984
54075
  updatedById: stringType().optional(),
53985
54076
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53986
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
54077
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
53987
54078
  }).transform((v2) => {
53988
54079
  return remap(v2, {
53989
54080
  id: "_id",
@@ -54091,7 +54182,7 @@ var init_listdatasets = __esm(() => {
54091
54182
  updated_by_id: stringType().optional(),
54092
54183
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
54093
54184
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
54094
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
54185
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
54095
54186
  }).transform((v2) => {
54096
54187
  return remap(v2, {
54097
54188
  _id: "id",
@@ -54111,7 +54202,7 @@ var init_listdatasets = __esm(() => {
54111
54202
  updatedById: stringType().optional(),
54112
54203
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
54113
54204
  created: dateType().transform((v2) => v2.toISOString()).optional(),
54114
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
54205
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
54115
54206
  }).transform((v2) => {
54116
54207
  return remap(v2, {
54117
54208
  id: "_id",
@@ -54216,7 +54307,7 @@ var init_listdatasources = __esm(() => {
54216
54307
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
54217
54308
  })(ListDatasourcesStatus$ ||= {});
54218
54309
  ListDatasourcesData$inboundSchema = objectType({
54219
- _id: stringType().default("01K22FHKDABH9KGF270KNZK17P"),
54310
+ _id: stringType().default("01K24B9ZRSCNBX7D6Y851K975D"),
54220
54311
  display_name: stringType(),
54221
54312
  description: stringType().optional(),
54222
54313
  status: ListDatasourcesStatus$inboundSchema,
@@ -54239,7 +54330,7 @@ var init_listdatasources = __esm(() => {
54239
54330
  });
54240
54331
  });
54241
54332
  ListDatasourcesData$outboundSchema = objectType({
54242
- id: stringType().default("01K22FHKDABH9KGF270KNZK17P"),
54333
+ id: stringType().default("01K24B9ZRSCNBX7D6Y851K975D"),
54243
54334
  displayName: stringType(),
54244
54335
  description: stringType().optional(),
54245
54336
  status: ListDatasourcesStatus$outboundSchema,
@@ -54562,7 +54653,7 @@ var init_listmodels = __esm(() => {
54562
54653
  });
54563
54654
 
54564
54655
  // src/models/operations/listpromptversions.ts
54565
- var ListPromptVersionsObject, ListPromptVersionsModelType, ListPromptVersionsFormat, ListPromptVersionsResponseFormatPromptsType, ListPromptVersionsResponseFormatType, ListPromptVersionsPhotoRealVersion, ListPromptVersionsEncodingFormat, ListPromptVersionsReasoningEffort, ListPromptVersionsProvider, ListPromptVersionsRole, ListPromptVersions2PromptsResponseType, ListPromptVersions2PromptsType, ListPromptVersions2Type, ListPromptVersionsType, ListPromptVersionsUseCases, ListPromptVersionsLanguage, ListPromptVersionsRequest$inboundSchema, ListPromptVersionsRequest$outboundSchema, ListPromptVersionsRequest$, ListPromptVersionsObject$inboundSchema, ListPromptVersionsObject$outboundSchema, ListPromptVersionsObject$, ListPromptVersionsModelType$inboundSchema, ListPromptVersionsModelType$outboundSchema, ListPromptVersionsModelType$, ListPromptVersionsFormat$inboundSchema, ListPromptVersionsFormat$outboundSchema, ListPromptVersionsFormat$, ListPromptVersionsResponseFormatPromptsType$inboundSchema, ListPromptVersionsResponseFormatPromptsType$outboundSchema, ListPromptVersionsResponseFormatPromptsType$, ListPromptVersionsResponseFormat2$inboundSchema, ListPromptVersionsResponseFormat2$outboundSchema, ListPromptVersionsResponseFormat2$, ListPromptVersionsResponseFormatType$inboundSchema, ListPromptVersionsResponseFormatType$outboundSchema, ListPromptVersionsResponseFormatType$, ListPromptVersionsResponseFormatJsonSchema$inboundSchema, ListPromptVersionsResponseFormatJsonSchema$outboundSchema, ListPromptVersionsResponseFormatJsonSchema$, ListPromptVersionsResponseFormat1$inboundSchema, ListPromptVersionsResponseFormat1$outboundSchema, ListPromptVersionsResponseFormat1$, ListPromptVersionsResponseFormat$inboundSchema, ListPromptVersionsResponseFormat$outboundSchema, ListPromptVersionsResponseFormat$, ListPromptVersionsPhotoRealVersion$inboundSchema, ListPromptVersionsPhotoRealVersion$outboundSchema, ListPromptVersionsPhotoRealVersion$, ListPromptVersionsEncodingFormat$inboundSchema, ListPromptVersionsEncodingFormat$outboundSchema, ListPromptVersionsEncodingFormat$, ListPromptVersionsReasoningEffort$inboundSchema, ListPromptVersionsReasoningEffort$outboundSchema, ListPromptVersionsReasoningEffort$, ListPromptVersionsModelParameters$inboundSchema, ListPromptVersionsModelParameters$outboundSchema, ListPromptVersionsModelParameters$, ListPromptVersionsProvider$inboundSchema, ListPromptVersionsProvider$outboundSchema, ListPromptVersionsProvider$, ListPromptVersionsRole$inboundSchema, ListPromptVersionsRole$outboundSchema, ListPromptVersionsRole$, ListPromptVersions2PromptsResponseType$inboundSchema, ListPromptVersions2PromptsResponseType$outboundSchema, ListPromptVersions2PromptsResponseType$, ListPromptVersions2File$inboundSchema, ListPromptVersions2File$outboundSchema, ListPromptVersions2File$, ListPromptVersions23$inboundSchema, ListPromptVersions23$outboundSchema, ListPromptVersions23$, ListPromptVersions2PromptsType$inboundSchema, ListPromptVersions2PromptsType$outboundSchema, ListPromptVersions2PromptsType$, ListPromptVersions2ImageUrl$inboundSchema, ListPromptVersions2ImageUrl$outboundSchema, ListPromptVersions2ImageUrl$, ListPromptVersions22$inboundSchema, ListPromptVersions22$outboundSchema, ListPromptVersions22$, ListPromptVersions2Type$inboundSchema, ListPromptVersions2Type$outboundSchema, ListPromptVersions2Type$, ListPromptVersions21$inboundSchema, ListPromptVersions21$outboundSchema, ListPromptVersions21$, ListPromptVersionsContent2$inboundSchema, ListPromptVersionsContent2$outboundSchema, ListPromptVersionsContent2$, ListPromptVersionsContent$inboundSchema, ListPromptVersionsContent$outboundSchema, ListPromptVersionsContent$, ListPromptVersionsType$inboundSchema, ListPromptVersionsType$outboundSchema, ListPromptVersionsType$, ListPromptVersionsFunction$inboundSchema, ListPromptVersionsFunction$outboundSchema, ListPromptVersionsFunction$, ListPromptVersionsToolCalls$inboundSchema, ListPromptVersionsToolCalls$outboundSchema, ListPromptVersionsToolCalls$, ListPromptVersionsMessages$inboundSchema, ListPromptVersionsMessages$outboundSchema, ListPromptVersionsMessages$, ListPromptVersionsPromptConfig$inboundSchema, ListPromptVersionsPromptConfig$outboundSchema, ListPromptVersionsPromptConfig$, ListPromptVersionsUseCases$inboundSchema, ListPromptVersionsUseCases$outboundSchema, ListPromptVersionsUseCases$, ListPromptVersionsLanguage$inboundSchema, ListPromptVersionsLanguage$outboundSchema, ListPromptVersionsLanguage$, ListPromptVersionsMetadata$inboundSchema, ListPromptVersionsMetadata$outboundSchema, ListPromptVersionsMetadata$, ListPromptVersionsData$inboundSchema, ListPromptVersionsData$outboundSchema, ListPromptVersionsData$, ListPromptVersionsResponseBody$inboundSchema, ListPromptVersionsResponseBody$outboundSchema, ListPromptVersionsResponseBody$;
54656
+ var ListPromptVersionsObject, ListPromptVersionsModelType, ListPromptVersionsFormat, ListPromptVersionsResponseFormatPromptsType, ListPromptVersionsResponseFormatType, ListPromptVersionsPhotoRealVersion, ListPromptVersionsEncodingFormat, ListPromptVersionsReasoningEffort, ListPromptVersionsVerbosity, ListPromptVersionsProvider, ListPromptVersionsRole, ListPromptVersions2PromptsResponseType, ListPromptVersions2PromptsType, ListPromptVersions2Type, ListPromptVersionsType, ListPromptVersionsUseCases, ListPromptVersionsLanguage, ListPromptVersionsRequest$inboundSchema, ListPromptVersionsRequest$outboundSchema, ListPromptVersionsRequest$, ListPromptVersionsObject$inboundSchema, ListPromptVersionsObject$outboundSchema, ListPromptVersionsObject$, ListPromptVersionsModelType$inboundSchema, ListPromptVersionsModelType$outboundSchema, ListPromptVersionsModelType$, ListPromptVersionsFormat$inboundSchema, ListPromptVersionsFormat$outboundSchema, ListPromptVersionsFormat$, ListPromptVersionsResponseFormatPromptsType$inboundSchema, ListPromptVersionsResponseFormatPromptsType$outboundSchema, ListPromptVersionsResponseFormatPromptsType$, ListPromptVersionsResponseFormat2$inboundSchema, ListPromptVersionsResponseFormat2$outboundSchema, ListPromptVersionsResponseFormat2$, ListPromptVersionsResponseFormatType$inboundSchema, ListPromptVersionsResponseFormatType$outboundSchema, ListPromptVersionsResponseFormatType$, ListPromptVersionsResponseFormatJsonSchema$inboundSchema, ListPromptVersionsResponseFormatJsonSchema$outboundSchema, ListPromptVersionsResponseFormatJsonSchema$, ListPromptVersionsResponseFormat1$inboundSchema, ListPromptVersionsResponseFormat1$outboundSchema, ListPromptVersionsResponseFormat1$, ListPromptVersionsResponseFormat$inboundSchema, ListPromptVersionsResponseFormat$outboundSchema, ListPromptVersionsResponseFormat$, ListPromptVersionsPhotoRealVersion$inboundSchema, ListPromptVersionsPhotoRealVersion$outboundSchema, ListPromptVersionsPhotoRealVersion$, ListPromptVersionsEncodingFormat$inboundSchema, ListPromptVersionsEncodingFormat$outboundSchema, ListPromptVersionsEncodingFormat$, ListPromptVersionsReasoningEffort$inboundSchema, ListPromptVersionsReasoningEffort$outboundSchema, ListPromptVersionsReasoningEffort$, ListPromptVersionsVerbosity$inboundSchema, ListPromptVersionsVerbosity$outboundSchema, ListPromptVersionsVerbosity$, ListPromptVersionsModelParameters$inboundSchema, ListPromptVersionsModelParameters$outboundSchema, ListPromptVersionsModelParameters$, ListPromptVersionsProvider$inboundSchema, ListPromptVersionsProvider$outboundSchema, ListPromptVersionsProvider$, ListPromptVersionsRole$inboundSchema, ListPromptVersionsRole$outboundSchema, ListPromptVersionsRole$, ListPromptVersions2PromptsResponseType$inboundSchema, ListPromptVersions2PromptsResponseType$outboundSchema, ListPromptVersions2PromptsResponseType$, ListPromptVersions2File$inboundSchema, ListPromptVersions2File$outboundSchema, ListPromptVersions2File$, ListPromptVersions23$inboundSchema, ListPromptVersions23$outboundSchema, ListPromptVersions23$, ListPromptVersions2PromptsType$inboundSchema, ListPromptVersions2PromptsType$outboundSchema, ListPromptVersions2PromptsType$, ListPromptVersions2ImageUrl$inboundSchema, ListPromptVersions2ImageUrl$outboundSchema, ListPromptVersions2ImageUrl$, ListPromptVersions22$inboundSchema, ListPromptVersions22$outboundSchema, ListPromptVersions22$, ListPromptVersions2Type$inboundSchema, ListPromptVersions2Type$outboundSchema, ListPromptVersions2Type$, ListPromptVersions21$inboundSchema, ListPromptVersions21$outboundSchema, ListPromptVersions21$, ListPromptVersionsContent2$inboundSchema, ListPromptVersionsContent2$outboundSchema, ListPromptVersionsContent2$, ListPromptVersionsContent$inboundSchema, ListPromptVersionsContent$outboundSchema, ListPromptVersionsContent$, ListPromptVersionsType$inboundSchema, ListPromptVersionsType$outboundSchema, ListPromptVersionsType$, ListPromptVersionsFunction$inboundSchema, ListPromptVersionsFunction$outboundSchema, ListPromptVersionsFunction$, ListPromptVersionsToolCalls$inboundSchema, ListPromptVersionsToolCalls$outboundSchema, ListPromptVersionsToolCalls$, ListPromptVersionsMessages$inboundSchema, ListPromptVersionsMessages$outboundSchema, ListPromptVersionsMessages$, ListPromptVersionsPromptConfig$inboundSchema, ListPromptVersionsPromptConfig$outboundSchema, ListPromptVersionsPromptConfig$, ListPromptVersionsUseCases$inboundSchema, ListPromptVersionsUseCases$outboundSchema, ListPromptVersionsUseCases$, ListPromptVersionsLanguage$inboundSchema, ListPromptVersionsLanguage$outboundSchema, ListPromptVersionsLanguage$, ListPromptVersionsMetadata$inboundSchema, ListPromptVersionsMetadata$outboundSchema, ListPromptVersionsMetadata$, ListPromptVersionsData$inboundSchema, ListPromptVersionsData$outboundSchema, ListPromptVersionsData$, ListPromptVersionsResponseBody$inboundSchema, ListPromptVersionsResponseBody$outboundSchema, ListPromptVersionsResponseBody$;
54566
54657
  var init_listpromptversions = __esm(() => {
54567
54658
  init_esm();
54568
54659
  init_primitives();
@@ -54606,6 +54697,11 @@ var init_listpromptversions = __esm(() => {
54606
54697
  Medium: "medium",
54607
54698
  High: "high"
54608
54699
  };
54700
+ ListPromptVersionsVerbosity = {
54701
+ Low: "low",
54702
+ Medium: "medium",
54703
+ High: "high"
54704
+ };
54609
54705
  ListPromptVersionsProvider = {
54610
54706
  Cohere: "cohere",
54611
54707
  Openai: "openai",
@@ -54814,6 +54910,12 @@ var init_listpromptversions = __esm(() => {
54814
54910
  ListPromptVersionsReasoningEffort$.inboundSchema = ListPromptVersionsReasoningEffort$inboundSchema;
54815
54911
  ListPromptVersionsReasoningEffort$.outboundSchema = ListPromptVersionsReasoningEffort$outboundSchema;
54816
54912
  })(ListPromptVersionsReasoningEffort$ ||= {});
54913
+ ListPromptVersionsVerbosity$inboundSchema = nativeEnumType(ListPromptVersionsVerbosity);
54914
+ ListPromptVersionsVerbosity$outboundSchema = ListPromptVersionsVerbosity$inboundSchema;
54915
+ ((ListPromptVersionsVerbosity$) => {
54916
+ ListPromptVersionsVerbosity$.inboundSchema = ListPromptVersionsVerbosity$inboundSchema;
54917
+ ListPromptVersionsVerbosity$.outboundSchema = ListPromptVersionsVerbosity$outboundSchema;
54918
+ })(ListPromptVersionsVerbosity$ ||= {});
54817
54919
  ListPromptVersionsModelParameters$inboundSchema = objectType({
54818
54920
  temperature: numberType().optional(),
54819
54921
  maxTokens: numberType().optional(),
@@ -54834,7 +54936,8 @@ var init_listpromptversions = __esm(() => {
54834
54936
  photoRealVersion: ListPromptVersionsPhotoRealVersion$inboundSchema.optional(),
54835
54937
  encoding_format: ListPromptVersionsEncodingFormat$inboundSchema.optional(),
54836
54938
  reasoningEffort: ListPromptVersionsReasoningEffort$inboundSchema.optional(),
54837
- budgetTokens: numberType().optional()
54939
+ budgetTokens: numberType().optional(),
54940
+ verbosity: ListPromptVersionsVerbosity$inboundSchema.optional()
54838
54941
  }).transform((v2) => {
54839
54942
  return remap(v2, {
54840
54943
  encoding_format: "encodingFormat"
@@ -54860,7 +54963,8 @@ var init_listpromptversions = __esm(() => {
54860
54963
  photoRealVersion: ListPromptVersionsPhotoRealVersion$outboundSchema.optional(),
54861
54964
  encodingFormat: ListPromptVersionsEncodingFormat$outboundSchema.optional(),
54862
54965
  reasoningEffort: ListPromptVersionsReasoningEffort$outboundSchema.optional(),
54863
- budgetTokens: numberType().optional()
54966
+ budgetTokens: numberType().optional(),
54967
+ verbosity: ListPromptVersionsVerbosity$outboundSchema.optional()
54864
54968
  }).transform((v2) => {
54865
54969
  return remap(v2, {
54866
54970
  encodingFormat: "encoding_format"
@@ -55750,7 +55854,7 @@ var init_retrievecontact = __esm(() => {
55750
55854
  tags: arrayType(stringType()).optional(),
55751
55855
  metadata: recordType(anyType()).optional(),
55752
55856
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55753
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
55857
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
55754
55858
  }).transform((v2) => {
55755
55859
  return remap(v2, {
55756
55860
  _id: "id",
@@ -55768,7 +55872,7 @@ var init_retrievecontact = __esm(() => {
55768
55872
  tags: arrayType(stringType()).optional(),
55769
55873
  metadata: recordType(anyType()).optional(),
55770
55874
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55771
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
55875
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
55772
55876
  }).transform((v2) => {
55773
55877
  return remap(v2, {
55774
55878
  id: "_id",
@@ -56345,7 +56449,7 @@ var init_retrievedatapoint = __esm(() => {
56345
56449
  created_by_id: stringType().optional(),
56346
56450
  updated_by_id: stringType().optional(),
56347
56451
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56348
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
56452
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
56349
56453
  }).transform((v2) => {
56350
56454
  return remap(v2, {
56351
56455
  _id: "id",
@@ -56372,7 +56476,7 @@ var init_retrievedatapoint = __esm(() => {
56372
56476
  createdById: stringType().optional(),
56373
56477
  updatedById: stringType().optional(),
56374
56478
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56375
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
56479
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
56376
56480
  }).transform((v2) => {
56377
56481
  return remap(v2, {
56378
56482
  id: "_id",
@@ -56443,7 +56547,7 @@ var init_retrievedataset = __esm(() => {
56443
56547
  updated_by_id: stringType().optional(),
56444
56548
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
56445
56549
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56446
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
56550
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
56447
56551
  }).transform((v2) => {
56448
56552
  return remap(v2, {
56449
56553
  _id: "id",
@@ -56463,7 +56567,7 @@ var init_retrievedataset = __esm(() => {
56463
56567
  updatedById: stringType().optional(),
56464
56568
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
56465
56569
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56466
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
56570
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
56467
56571
  }).transform((v2) => {
56468
56572
  return remap(v2, {
56469
56573
  id: "_id",
@@ -56521,7 +56625,7 @@ var init_retrievedatasource = __esm(() => {
56521
56625
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
56522
56626
  })(RetrieveDatasourceStatus$ ||= {});
56523
56627
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
56524
- _id: stringType().default("01K22FHKDBMFFBRM3NG0AKPATT"),
56628
+ _id: stringType().default("01K24B9ZRTHJPWGWTV1M6M98NS"),
56525
56629
  display_name: stringType(),
56526
56630
  description: stringType().optional(),
56527
56631
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -56544,7 +56648,7 @@ var init_retrievedatasource = __esm(() => {
56544
56648
  });
56545
56649
  });
56546
56650
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
56547
- id: stringType().default("01K22FHKDBMFFBRM3NG0AKPATT"),
56651
+ id: stringType().default("01K24B9ZRTHJPWGWTV1M6M98NS"),
56548
56652
  displayName: stringType(),
56549
56653
  description: stringType().optional(),
56550
56654
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -57440,7 +57544,7 @@ var init_updatecontact = __esm(() => {
57440
57544
  tags: arrayType(stringType()).optional(),
57441
57545
  metadata: recordType(anyType()).optional(),
57442
57546
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
57443
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
57547
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
57444
57548
  }).transform((v2) => {
57445
57549
  return remap(v2, {
57446
57550
  _id: "id",
@@ -57458,7 +57562,7 @@ var init_updatecontact = __esm(() => {
57458
57562
  tags: arrayType(stringType()).optional(),
57459
57563
  metadata: recordType(anyType()).optional(),
57460
57564
  created: dateType().transform((v2) => v2.toISOString()).optional(),
57461
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
57565
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
57462
57566
  }).transform((v2) => {
57463
57567
  return remap(v2, {
57464
57568
  id: "_id",
@@ -58592,7 +58696,7 @@ var init_updatedatapoint = __esm(() => {
58592
58696
  created_by_id: stringType().optional(),
58593
58697
  updated_by_id: stringType().optional(),
58594
58698
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58595
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
58699
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
58596
58700
  }).transform((v2) => {
58597
58701
  return remap(v2, {
58598
58702
  _id: "id",
@@ -58619,7 +58723,7 @@ var init_updatedatapoint = __esm(() => {
58619
58723
  createdById: stringType().optional(),
58620
58724
  updatedById: stringType().optional(),
58621
58725
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58622
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
58726
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
58623
58727
  }).transform((v2) => {
58624
58728
  return remap(v2, {
58625
58729
  id: "_id",
@@ -58720,7 +58824,7 @@ var init_updatedataset = __esm(() => {
58720
58824
  parent_id: stringType().optional(),
58721
58825
  version: stringType().optional(),
58722
58826
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58723
- updated: stringType().datetime({ offset: true }).default("2025-08-07T14:39:06.330Z").transform((v2) => new Date(v2))
58827
+ updated: stringType().datetime({ offset: true }).default("2025-08-08T08:03:31.826Z").transform((v2) => new Date(v2))
58724
58828
  }).transform((v2) => {
58725
58829
  return remap(v2, {
58726
58830
  _id: "id",
@@ -58743,7 +58847,7 @@ var init_updatedataset = __esm(() => {
58743
58847
  parentId: stringType().optional(),
58744
58848
  version: stringType().optional(),
58745
58849
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58746
- updated: dateType().default(() => new Date("2025-08-07T14:39:06.330Z")).transform((v2) => v2.toISOString())
58850
+ updated: dateType().default(() => new Date("2025-08-08T08:03:31.826Z")).transform((v2) => v2.toISOString())
58747
58851
  }).transform((v2) => {
58748
58852
  return remap(v2, {
58749
58853
  id: "_id",
@@ -58824,7 +58928,7 @@ var init_updatedatasource = __esm(() => {
58824
58928
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
58825
58929
  })(UpdateDatasourceStatus$ ||= {});
58826
58930
  UpdateDatasourceResponseBody$inboundSchema = objectType({
58827
- _id: stringType().default("01K22FHKDDFKF1FFMSV4XHXD5G"),
58931
+ _id: stringType().default("01K24B9ZS35EH8WDN5CGS5TDBR"),
58828
58932
  display_name: stringType(),
58829
58933
  description: stringType().optional(),
58830
58934
  status: UpdateDatasourceStatus$inboundSchema,
@@ -58847,7 +58951,7 @@ var init_updatedatasource = __esm(() => {
58847
58951
  });
58848
58952
  });
58849
58953
  UpdateDatasourceResponseBody$outboundSchema = objectType({
58850
- id: stringType().default("01K22FHKDDFKF1FFMSV4XHXD5G"),
58954
+ id: stringType().default("01K24B9ZS35EH8WDN5CGS5TDBR"),
58851
58955
  displayName: stringType(),
58852
58956
  description: stringType().optional(),
58853
58957
  status: UpdateDatasourceStatus$outboundSchema,
@@ -59553,8 +59657,8 @@ var init_updateeval = __esm(() => {
59553
59657
  UpdateEvalResponseBodyPython$inboundSchema = objectType({
59554
59658
  _id: stringType(),
59555
59659
  description: stringType(),
59556
- created: stringType().default("2025-08-07T14:39:08.644Z"),
59557
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
59660
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
59661
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
59558
59662
  guardrail_config: unionType([
59559
59663
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
59560
59664
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -59571,8 +59675,8 @@ var init_updateeval = __esm(() => {
59571
59675
  UpdateEvalResponseBodyPython$outboundSchema = objectType({
59572
59676
  id: stringType(),
59573
59677
  description: stringType(),
59574
- created: stringType().default("2025-08-07T14:39:08.644Z"),
59575
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
59678
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
59679
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
59576
59680
  guardrailConfig: unionType([
59577
59681
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
59578
59682
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -59665,8 +59769,8 @@ var init_updateeval = __esm(() => {
59665
59769
  UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
59666
59770
  _id: stringType(),
59667
59771
  description: stringType(),
59668
- created: stringType().default("2025-08-07T14:39:08.644Z"),
59669
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
59772
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
59773
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
59670
59774
  guardrail_config: unionType([
59671
59775
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
59672
59776
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -59686,8 +59790,8 @@ var init_updateeval = __esm(() => {
59686
59790
  UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
59687
59791
  id: stringType(),
59688
59792
  description: stringType(),
59689
- created: stringType().default("2025-08-07T14:39:08.644Z"),
59690
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
59793
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
59794
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
59691
59795
  guardrailConfig: unionType([
59692
59796
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
59693
59797
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -59777,8 +59881,8 @@ var init_updateeval = __esm(() => {
59777
59881
  UpdateEvalResponseBodyJSON$inboundSchema = objectType({
59778
59882
  _id: stringType(),
59779
59883
  description: stringType(),
59780
- created: stringType().default("2025-08-07T14:39:08.644Z"),
59781
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
59884
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
59885
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
59782
59886
  guardrail_config: unionType([
59783
59887
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
59784
59888
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -59795,8 +59899,8 @@ var init_updateeval = __esm(() => {
59795
59899
  UpdateEvalResponseBodyJSON$outboundSchema = objectType({
59796
59900
  id: stringType(),
59797
59901
  description: stringType(),
59798
- created: stringType().default("2025-08-07T14:39:08.644Z"),
59799
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
59902
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
59903
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
59800
59904
  guardrailConfig: unionType([
59801
59905
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
59802
59906
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -59883,8 +59987,8 @@ var init_updateeval = __esm(() => {
59883
59987
  UpdateEvalResponseBodyLLM$inboundSchema = objectType({
59884
59988
  _id: stringType(),
59885
59989
  description: stringType(),
59886
- created: stringType().default("2025-08-07T14:39:08.644Z"),
59887
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
59990
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
59991
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
59888
59992
  guardrail_config: unionType([
59889
59993
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
59890
59994
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -59902,8 +60006,8 @@ var init_updateeval = __esm(() => {
59902
60006
  UpdateEvalResponseBodyLLM$outboundSchema = objectType({
59903
60007
  id: stringType(),
59904
60008
  description: stringType(),
59905
- created: stringType().default("2025-08-07T14:39:08.644Z"),
59906
- updated: stringType().default("2025-08-07T14:39:08.644Z"),
60009
+ created: stringType().default("2025-08-08T08:03:34.108Z"),
60010
+ updated: stringType().default("2025-08-08T08:03:34.108Z"),
59907
60011
  guardrailConfig: unionType([
59908
60012
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
59909
60013
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -60192,7 +60296,7 @@ var init_updateknowledge = __esm(() => {
60192
60296
  });
60193
60297
 
60194
60298
  // src/models/operations/updateprompt.ts
60195
- var UpdatePromptFormat, UpdatePromptResponseFormatPromptsType, UpdatePromptResponseFormatType, UpdatePromptPhotoRealVersion, UpdatePromptEncodingFormat, UpdatePromptReasoningEffort, UpdatePromptProvider, UpdatePromptRole, UpdatePrompt2PromptsRequestType, UpdatePrompt2PromptsType, UpdatePrompt2Type, UpdatePromptType, UpdatePromptUseCases, UpdatePromptLanguage, UpdatePromptPromptsType, UpdatePromptModelType, UpdatePromptPromptsFormat, UpdatePromptResponseFormatPromptsResponse200Type, UpdatePromptResponseFormatPromptsResponseType, UpdatePromptPromptsPhotoRealVersion, UpdatePromptPromptsEncodingFormat, UpdatePromptPromptsReasoningEffort, UpdatePromptPromptsProvider, UpdatePromptPromptsRole, UpdatePrompt2PromptsResponse200ApplicationJSONType, UpdatePrompt2PromptsResponse200Type, UpdatePrompt2PromptsResponseType, UpdatePromptPromptsResponseType, UpdatePromptPromptsUseCases, UpdatePromptPromptsLanguage, UpdatePromptFormat$inboundSchema, UpdatePromptFormat$outboundSchema, UpdatePromptFormat$, UpdatePromptResponseFormatPromptsType$inboundSchema, UpdatePromptResponseFormatPromptsType$outboundSchema, UpdatePromptResponseFormatPromptsType$, UpdatePromptResponseFormat2$inboundSchema, UpdatePromptResponseFormat2$outboundSchema, UpdatePromptResponseFormat2$, UpdatePromptResponseFormatType$inboundSchema, UpdatePromptResponseFormatType$outboundSchema, UpdatePromptResponseFormatType$, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, ResponseFormatJsonSchema$, UpdatePromptResponseFormat1$inboundSchema, UpdatePromptResponseFormat1$outboundSchema, UpdatePromptResponseFormat1$, UpdatePromptResponseFormat$inboundSchema, UpdatePromptResponseFormat$outboundSchema, UpdatePromptResponseFormat$, UpdatePromptPhotoRealVersion$inboundSchema, UpdatePromptPhotoRealVersion$outboundSchema, UpdatePromptPhotoRealVersion$, UpdatePromptEncodingFormat$inboundSchema, UpdatePromptEncodingFormat$outboundSchema, UpdatePromptEncodingFormat$, UpdatePromptReasoningEffort$inboundSchema, UpdatePromptReasoningEffort$outboundSchema, UpdatePromptReasoningEffort$, UpdatePromptModelParameters$inboundSchema, UpdatePromptModelParameters$outboundSchema, UpdatePromptModelParameters$, UpdatePromptProvider$inboundSchema, UpdatePromptProvider$outboundSchema, UpdatePromptProvider$, UpdatePromptRole$inboundSchema, UpdatePromptRole$outboundSchema, UpdatePromptRole$, UpdatePrompt2PromptsRequestType$inboundSchema, UpdatePrompt2PromptsRequestType$outboundSchema, UpdatePrompt2PromptsRequestType$, UpdatePrompt2File$inboundSchema, UpdatePrompt2File$outboundSchema, UpdatePrompt2File$, UpdatePrompt23$inboundSchema, UpdatePrompt23$outboundSchema, UpdatePrompt23$, UpdatePrompt2PromptsType$inboundSchema, UpdatePrompt2PromptsType$outboundSchema, UpdatePrompt2PromptsType$, UpdatePrompt2ImageUrl$inboundSchema, UpdatePrompt2ImageUrl$outboundSchema, UpdatePrompt2ImageUrl$, UpdatePrompt22$inboundSchema, UpdatePrompt22$outboundSchema, UpdatePrompt22$, UpdatePrompt2Type$inboundSchema, UpdatePrompt2Type$outboundSchema, UpdatePrompt2Type$, UpdatePrompt21$inboundSchema, UpdatePrompt21$outboundSchema, UpdatePrompt21$, UpdatePromptContent2$inboundSchema, UpdatePromptContent2$outboundSchema, UpdatePromptContent2$, UpdatePromptContent$inboundSchema, UpdatePromptContent$outboundSchema, UpdatePromptContent$, UpdatePromptType$inboundSchema, UpdatePromptType$outboundSchema, UpdatePromptType$, UpdatePromptFunction$inboundSchema, UpdatePromptFunction$outboundSchema, UpdatePromptFunction$, UpdatePromptToolCalls$inboundSchema, UpdatePromptToolCalls$outboundSchema, UpdatePromptToolCalls$, UpdatePromptMessages$inboundSchema, UpdatePromptMessages$outboundSchema, UpdatePromptMessages$, UpdatePromptPromptConfig$inboundSchema, UpdatePromptPromptConfig$outboundSchema, UpdatePromptPromptConfig$, UpdatePromptUseCases$inboundSchema, UpdatePromptUseCases$outboundSchema, UpdatePromptUseCases$, UpdatePromptLanguage$inboundSchema, UpdatePromptLanguage$outboundSchema, UpdatePromptLanguage$, UpdatePromptMetadata$inboundSchema, UpdatePromptMetadata$outboundSchema, UpdatePromptMetadata$, UpdatePromptRequestBody$inboundSchema, UpdatePromptRequestBody$outboundSchema, UpdatePromptRequestBody$, UpdatePromptRequest$inboundSchema, UpdatePromptRequest$outboundSchema, UpdatePromptRequest$, UpdatePromptPromptsType$inboundSchema, UpdatePromptPromptsType$outboundSchema, UpdatePromptPromptsType$, UpdatePromptModelType$inboundSchema, UpdatePromptModelType$outboundSchema, UpdatePromptModelType$, UpdatePromptPromptsFormat$inboundSchema, UpdatePromptPromptsFormat$outboundSchema, UpdatePromptPromptsFormat$, UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$, UpdatePromptResponseFormatPrompts2$inboundSchema, UpdatePromptResponseFormatPrompts2$outboundSchema, UpdatePromptResponseFormatPrompts2$, UpdatePromptResponseFormatPromptsResponseType$inboundSchema, UpdatePromptResponseFormatPromptsResponseType$outboundSchema, UpdatePromptResponseFormatPromptsResponseType$, UpdatePromptResponseFormatJsonSchema$inboundSchema, UpdatePromptResponseFormatJsonSchema$outboundSchema, UpdatePromptResponseFormatJsonSchema$, UpdatePromptResponseFormatPrompts1$inboundSchema, UpdatePromptResponseFormatPrompts1$outboundSchema, UpdatePromptResponseFormatPrompts1$, UpdatePromptPromptsResponseFormat$inboundSchema, UpdatePromptPromptsResponseFormat$outboundSchema, UpdatePromptPromptsResponseFormat$, UpdatePromptPromptsPhotoRealVersion$inboundSchema, UpdatePromptPromptsPhotoRealVersion$outboundSchema, UpdatePromptPromptsPhotoRealVersion$, UpdatePromptPromptsEncodingFormat$inboundSchema, UpdatePromptPromptsEncodingFormat$outboundSchema, UpdatePromptPromptsEncodingFormat$, UpdatePromptPromptsReasoningEffort$inboundSchema, UpdatePromptPromptsReasoningEffort$outboundSchema, UpdatePromptPromptsReasoningEffort$, UpdatePromptPromptsModelParameters$inboundSchema, UpdatePromptPromptsModelParameters$outboundSchema, UpdatePromptPromptsModelParameters$, UpdatePromptPromptsProvider$inboundSchema, UpdatePromptPromptsProvider$outboundSchema, UpdatePromptPromptsProvider$, UpdatePromptPromptsRole$inboundSchema, UpdatePromptPromptsRole$outboundSchema, UpdatePromptPromptsRole$, UpdatePrompt2PromptsResponse200ApplicationJSONType$inboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$outboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$, UpdatePrompt2PromptsFile$inboundSchema, UpdatePrompt2PromptsFile$outboundSchema, UpdatePrompt2PromptsFile$, UpdatePrompt2Prompts3$inboundSchema, UpdatePrompt2Prompts3$outboundSchema, UpdatePrompt2Prompts3$, UpdatePrompt2PromptsResponse200Type$inboundSchema, UpdatePrompt2PromptsResponse200Type$outboundSchema, UpdatePrompt2PromptsResponse200Type$, UpdatePrompt2PromptsImageUrl$inboundSchema, UpdatePrompt2PromptsImageUrl$outboundSchema, UpdatePrompt2PromptsImageUrl$, UpdatePrompt2Prompts2$inboundSchema, UpdatePrompt2Prompts2$outboundSchema, UpdatePrompt2Prompts2$, UpdatePrompt2PromptsResponseType$inboundSchema, UpdatePrompt2PromptsResponseType$outboundSchema, UpdatePrompt2PromptsResponseType$, UpdatePrompt2Prompts1$inboundSchema, UpdatePrompt2Prompts1$outboundSchema, UpdatePrompt2Prompts1$, UpdatePromptContentPrompts2$inboundSchema, UpdatePromptContentPrompts2$outboundSchema, UpdatePromptContentPrompts2$, UpdatePromptPromptsContent$inboundSchema, UpdatePromptPromptsContent$outboundSchema, UpdatePromptPromptsContent$, UpdatePromptPromptsResponseType$inboundSchema, UpdatePromptPromptsResponseType$outboundSchema, UpdatePromptPromptsResponseType$, UpdatePromptPromptsFunction$inboundSchema, UpdatePromptPromptsFunction$outboundSchema, UpdatePromptPromptsFunction$, UpdatePromptPromptsToolCalls$inboundSchema, UpdatePromptPromptsToolCalls$outboundSchema, UpdatePromptPromptsToolCalls$, UpdatePromptPromptsMessages$inboundSchema, UpdatePromptPromptsMessages$outboundSchema, UpdatePromptPromptsMessages$, UpdatePromptPromptsPromptConfig$inboundSchema, UpdatePromptPromptsPromptConfig$outboundSchema, UpdatePromptPromptsPromptConfig$, UpdatePromptPromptsUseCases$inboundSchema, UpdatePromptPromptsUseCases$outboundSchema, UpdatePromptPromptsUseCases$, UpdatePromptPromptsLanguage$inboundSchema, UpdatePromptPromptsLanguage$outboundSchema, UpdatePromptPromptsLanguage$, UpdatePromptPromptsMetadata$inboundSchema, UpdatePromptPromptsMetadata$outboundSchema, UpdatePromptPromptsMetadata$, UpdatePromptResponseBody$inboundSchema, UpdatePromptResponseBody$outboundSchema, UpdatePromptResponseBody$;
60299
+ var UpdatePromptFormat, UpdatePromptResponseFormatPromptsType, UpdatePromptResponseFormatType, UpdatePromptPhotoRealVersion, UpdatePromptEncodingFormat, UpdatePromptReasoningEffort, UpdatePromptVerbosity, UpdatePromptProvider, UpdatePromptRole, UpdatePrompt2PromptsRequestType, UpdatePrompt2PromptsType, UpdatePrompt2Type, UpdatePromptType, UpdatePromptUseCases, UpdatePromptLanguage, UpdatePromptPromptsType, UpdatePromptModelType, UpdatePromptPromptsFormat, UpdatePromptResponseFormatPromptsResponse200Type, UpdatePromptResponseFormatPromptsResponseType, UpdatePromptPromptsPhotoRealVersion, UpdatePromptPromptsEncodingFormat, UpdatePromptPromptsReasoningEffort, UpdatePromptPromptsVerbosity, UpdatePromptPromptsProvider, UpdatePromptPromptsRole, UpdatePrompt2PromptsResponse200ApplicationJSONType, UpdatePrompt2PromptsResponse200Type, UpdatePrompt2PromptsResponseType, UpdatePromptPromptsResponseType, UpdatePromptPromptsUseCases, UpdatePromptPromptsLanguage, UpdatePromptFormat$inboundSchema, UpdatePromptFormat$outboundSchema, UpdatePromptFormat$, UpdatePromptResponseFormatPromptsType$inboundSchema, UpdatePromptResponseFormatPromptsType$outboundSchema, UpdatePromptResponseFormatPromptsType$, UpdatePromptResponseFormat2$inboundSchema, UpdatePromptResponseFormat2$outboundSchema, UpdatePromptResponseFormat2$, UpdatePromptResponseFormatType$inboundSchema, UpdatePromptResponseFormatType$outboundSchema, UpdatePromptResponseFormatType$, ResponseFormatJsonSchema$inboundSchema, ResponseFormatJsonSchema$outboundSchema, ResponseFormatJsonSchema$, UpdatePromptResponseFormat1$inboundSchema, UpdatePromptResponseFormat1$outboundSchema, UpdatePromptResponseFormat1$, UpdatePromptResponseFormat$inboundSchema, UpdatePromptResponseFormat$outboundSchema, UpdatePromptResponseFormat$, UpdatePromptPhotoRealVersion$inboundSchema, UpdatePromptPhotoRealVersion$outboundSchema, UpdatePromptPhotoRealVersion$, UpdatePromptEncodingFormat$inboundSchema, UpdatePromptEncodingFormat$outboundSchema, UpdatePromptEncodingFormat$, UpdatePromptReasoningEffort$inboundSchema, UpdatePromptReasoningEffort$outboundSchema, UpdatePromptReasoningEffort$, UpdatePromptVerbosity$inboundSchema, UpdatePromptVerbosity$outboundSchema, UpdatePromptVerbosity$, UpdatePromptModelParameters$inboundSchema, UpdatePromptModelParameters$outboundSchema, UpdatePromptModelParameters$, UpdatePromptProvider$inboundSchema, UpdatePromptProvider$outboundSchema, UpdatePromptProvider$, UpdatePromptRole$inboundSchema, UpdatePromptRole$outboundSchema, UpdatePromptRole$, UpdatePrompt2PromptsRequestType$inboundSchema, UpdatePrompt2PromptsRequestType$outboundSchema, UpdatePrompt2PromptsRequestType$, UpdatePrompt2File$inboundSchema, UpdatePrompt2File$outboundSchema, UpdatePrompt2File$, UpdatePrompt23$inboundSchema, UpdatePrompt23$outboundSchema, UpdatePrompt23$, UpdatePrompt2PromptsType$inboundSchema, UpdatePrompt2PromptsType$outboundSchema, UpdatePrompt2PromptsType$, UpdatePrompt2ImageUrl$inboundSchema, UpdatePrompt2ImageUrl$outboundSchema, UpdatePrompt2ImageUrl$, UpdatePrompt22$inboundSchema, UpdatePrompt22$outboundSchema, UpdatePrompt22$, UpdatePrompt2Type$inboundSchema, UpdatePrompt2Type$outboundSchema, UpdatePrompt2Type$, UpdatePrompt21$inboundSchema, UpdatePrompt21$outboundSchema, UpdatePrompt21$, UpdatePromptContent2$inboundSchema, UpdatePromptContent2$outboundSchema, UpdatePromptContent2$, UpdatePromptContent$inboundSchema, UpdatePromptContent$outboundSchema, UpdatePromptContent$, UpdatePromptType$inboundSchema, UpdatePromptType$outboundSchema, UpdatePromptType$, UpdatePromptFunction$inboundSchema, UpdatePromptFunction$outboundSchema, UpdatePromptFunction$, UpdatePromptToolCalls$inboundSchema, UpdatePromptToolCalls$outboundSchema, UpdatePromptToolCalls$, UpdatePromptMessages$inboundSchema, UpdatePromptMessages$outboundSchema, UpdatePromptMessages$, UpdatePromptPromptConfig$inboundSchema, UpdatePromptPromptConfig$outboundSchema, UpdatePromptPromptConfig$, UpdatePromptUseCases$inboundSchema, UpdatePromptUseCases$outboundSchema, UpdatePromptUseCases$, UpdatePromptLanguage$inboundSchema, UpdatePromptLanguage$outboundSchema, UpdatePromptLanguage$, UpdatePromptMetadata$inboundSchema, UpdatePromptMetadata$outboundSchema, UpdatePromptMetadata$, UpdatePromptRequestBody$inboundSchema, UpdatePromptRequestBody$outboundSchema, UpdatePromptRequestBody$, UpdatePromptRequest$inboundSchema, UpdatePromptRequest$outboundSchema, UpdatePromptRequest$, UpdatePromptPromptsType$inboundSchema, UpdatePromptPromptsType$outboundSchema, UpdatePromptPromptsType$, UpdatePromptModelType$inboundSchema, UpdatePromptModelType$outboundSchema, UpdatePromptModelType$, UpdatePromptPromptsFormat$inboundSchema, UpdatePromptPromptsFormat$outboundSchema, UpdatePromptPromptsFormat$, UpdatePromptResponseFormatPromptsResponse200Type$inboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$outboundSchema, UpdatePromptResponseFormatPromptsResponse200Type$, UpdatePromptResponseFormatPrompts2$inboundSchema, UpdatePromptResponseFormatPrompts2$outboundSchema, UpdatePromptResponseFormatPrompts2$, UpdatePromptResponseFormatPromptsResponseType$inboundSchema, UpdatePromptResponseFormatPromptsResponseType$outboundSchema, UpdatePromptResponseFormatPromptsResponseType$, UpdatePromptResponseFormatJsonSchema$inboundSchema, UpdatePromptResponseFormatJsonSchema$outboundSchema, UpdatePromptResponseFormatJsonSchema$, UpdatePromptResponseFormatPrompts1$inboundSchema, UpdatePromptResponseFormatPrompts1$outboundSchema, UpdatePromptResponseFormatPrompts1$, UpdatePromptPromptsResponseFormat$inboundSchema, UpdatePromptPromptsResponseFormat$outboundSchema, UpdatePromptPromptsResponseFormat$, UpdatePromptPromptsPhotoRealVersion$inboundSchema, UpdatePromptPromptsPhotoRealVersion$outboundSchema, UpdatePromptPromptsPhotoRealVersion$, UpdatePromptPromptsEncodingFormat$inboundSchema, UpdatePromptPromptsEncodingFormat$outboundSchema, UpdatePromptPromptsEncodingFormat$, UpdatePromptPromptsReasoningEffort$inboundSchema, UpdatePromptPromptsReasoningEffort$outboundSchema, UpdatePromptPromptsReasoningEffort$, UpdatePromptPromptsVerbosity$inboundSchema, UpdatePromptPromptsVerbosity$outboundSchema, UpdatePromptPromptsVerbosity$, UpdatePromptPromptsModelParameters$inboundSchema, UpdatePromptPromptsModelParameters$outboundSchema, UpdatePromptPromptsModelParameters$, UpdatePromptPromptsProvider$inboundSchema, UpdatePromptPromptsProvider$outboundSchema, UpdatePromptPromptsProvider$, UpdatePromptPromptsRole$inboundSchema, UpdatePromptPromptsRole$outboundSchema, UpdatePromptPromptsRole$, UpdatePrompt2PromptsResponse200ApplicationJSONType$inboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$outboundSchema, UpdatePrompt2PromptsResponse200ApplicationJSONType$, UpdatePrompt2PromptsFile$inboundSchema, UpdatePrompt2PromptsFile$outboundSchema, UpdatePrompt2PromptsFile$, UpdatePrompt2Prompts3$inboundSchema, UpdatePrompt2Prompts3$outboundSchema, UpdatePrompt2Prompts3$, UpdatePrompt2PromptsResponse200Type$inboundSchema, UpdatePrompt2PromptsResponse200Type$outboundSchema, UpdatePrompt2PromptsResponse200Type$, UpdatePrompt2PromptsImageUrl$inboundSchema, UpdatePrompt2PromptsImageUrl$outboundSchema, UpdatePrompt2PromptsImageUrl$, UpdatePrompt2Prompts2$inboundSchema, UpdatePrompt2Prompts2$outboundSchema, UpdatePrompt2Prompts2$, UpdatePrompt2PromptsResponseType$inboundSchema, UpdatePrompt2PromptsResponseType$outboundSchema, UpdatePrompt2PromptsResponseType$, UpdatePrompt2Prompts1$inboundSchema, UpdatePrompt2Prompts1$outboundSchema, UpdatePrompt2Prompts1$, UpdatePromptContentPrompts2$inboundSchema, UpdatePromptContentPrompts2$outboundSchema, UpdatePromptContentPrompts2$, UpdatePromptPromptsContent$inboundSchema, UpdatePromptPromptsContent$outboundSchema, UpdatePromptPromptsContent$, UpdatePromptPromptsResponseType$inboundSchema, UpdatePromptPromptsResponseType$outboundSchema, UpdatePromptPromptsResponseType$, UpdatePromptPromptsFunction$inboundSchema, UpdatePromptPromptsFunction$outboundSchema, UpdatePromptPromptsFunction$, UpdatePromptPromptsToolCalls$inboundSchema, UpdatePromptPromptsToolCalls$outboundSchema, UpdatePromptPromptsToolCalls$, UpdatePromptPromptsMessages$inboundSchema, UpdatePromptPromptsMessages$outboundSchema, UpdatePromptPromptsMessages$, UpdatePromptPromptsPromptConfig$inboundSchema, UpdatePromptPromptsPromptConfig$outboundSchema, UpdatePromptPromptsPromptConfig$, UpdatePromptPromptsUseCases$inboundSchema, UpdatePromptPromptsUseCases$outboundSchema, UpdatePromptPromptsUseCases$, UpdatePromptPromptsLanguage$inboundSchema, UpdatePromptPromptsLanguage$outboundSchema, UpdatePromptPromptsLanguage$, UpdatePromptPromptsMetadata$inboundSchema, UpdatePromptPromptsMetadata$outboundSchema, UpdatePromptPromptsMetadata$, UpdatePromptResponseBody$inboundSchema, UpdatePromptResponseBody$outboundSchema, UpdatePromptResponseBody$;
60196
60300
  var init_updateprompt = __esm(() => {
60197
60301
  init_esm();
60198
60302
  init_primitives();
@@ -60222,6 +60326,11 @@ var init_updateprompt = __esm(() => {
60222
60326
  Medium: "medium",
60223
60327
  High: "high"
60224
60328
  };
60329
+ UpdatePromptVerbosity = {
60330
+ Low: "low",
60331
+ Medium: "medium",
60332
+ High: "high"
60333
+ };
60225
60334
  UpdatePromptProvider = {
60226
60335
  Cohere: "cohere",
60227
60336
  Openai: "openai",
@@ -60338,6 +60447,11 @@ var init_updateprompt = __esm(() => {
60338
60447
  Medium: "medium",
60339
60448
  High: "high"
60340
60449
  };
60450
+ UpdatePromptPromptsVerbosity = {
60451
+ Low: "low",
60452
+ Medium: "medium",
60453
+ High: "high"
60454
+ };
60341
60455
  UpdatePromptPromptsProvider = {
60342
60456
  Cohere: "cohere",
60343
60457
  Openai: "openai",
@@ -60506,6 +60620,12 @@ var init_updateprompt = __esm(() => {
60506
60620
  UpdatePromptReasoningEffort$.inboundSchema = UpdatePromptReasoningEffort$inboundSchema;
60507
60621
  UpdatePromptReasoningEffort$.outboundSchema = UpdatePromptReasoningEffort$outboundSchema;
60508
60622
  })(UpdatePromptReasoningEffort$ ||= {});
60623
+ UpdatePromptVerbosity$inboundSchema = nativeEnumType(UpdatePromptVerbosity);
60624
+ UpdatePromptVerbosity$outboundSchema = UpdatePromptVerbosity$inboundSchema;
60625
+ ((UpdatePromptVerbosity$) => {
60626
+ UpdatePromptVerbosity$.inboundSchema = UpdatePromptVerbosity$inboundSchema;
60627
+ UpdatePromptVerbosity$.outboundSchema = UpdatePromptVerbosity$outboundSchema;
60628
+ })(UpdatePromptVerbosity$ ||= {});
60509
60629
  UpdatePromptModelParameters$inboundSchema = objectType({
60510
60630
  temperature: numberType().optional(),
60511
60631
  maxTokens: numberType().optional(),
@@ -60526,7 +60646,8 @@ var init_updateprompt = __esm(() => {
60526
60646
  photoRealVersion: UpdatePromptPhotoRealVersion$inboundSchema.optional(),
60527
60647
  encoding_format: UpdatePromptEncodingFormat$inboundSchema.optional(),
60528
60648
  reasoningEffort: UpdatePromptReasoningEffort$inboundSchema.optional(),
60529
- budgetTokens: numberType().optional()
60649
+ budgetTokens: numberType().optional(),
60650
+ verbosity: UpdatePromptVerbosity$inboundSchema.optional()
60530
60651
  }).transform((v2) => {
60531
60652
  return remap(v2, {
60532
60653
  encoding_format: "encodingFormat"
@@ -60552,7 +60673,8 @@ var init_updateprompt = __esm(() => {
60552
60673
  photoRealVersion: UpdatePromptPhotoRealVersion$outboundSchema.optional(),
60553
60674
  encodingFormat: UpdatePromptEncodingFormat$outboundSchema.optional(),
60554
60675
  reasoningEffort: UpdatePromptReasoningEffort$outboundSchema.optional(),
60555
- budgetTokens: numberType().optional()
60676
+ budgetTokens: numberType().optional(),
60677
+ verbosity: UpdatePromptVerbosity$outboundSchema.optional()
60556
60678
  }).transform((v2) => {
60557
60679
  return remap(v2, {
60558
60680
  encodingFormat: "encoding_format"
@@ -61014,6 +61136,12 @@ var init_updateprompt = __esm(() => {
61014
61136
  UpdatePromptPromptsReasoningEffort$.inboundSchema = UpdatePromptPromptsReasoningEffort$inboundSchema;
61015
61137
  UpdatePromptPromptsReasoningEffort$.outboundSchema = UpdatePromptPromptsReasoningEffort$outboundSchema;
61016
61138
  })(UpdatePromptPromptsReasoningEffort$ ||= {});
61139
+ UpdatePromptPromptsVerbosity$inboundSchema = nativeEnumType(UpdatePromptPromptsVerbosity);
61140
+ UpdatePromptPromptsVerbosity$outboundSchema = UpdatePromptPromptsVerbosity$inboundSchema;
61141
+ ((UpdatePromptPromptsVerbosity$) => {
61142
+ UpdatePromptPromptsVerbosity$.inboundSchema = UpdatePromptPromptsVerbosity$inboundSchema;
61143
+ UpdatePromptPromptsVerbosity$.outboundSchema = UpdatePromptPromptsVerbosity$outboundSchema;
61144
+ })(UpdatePromptPromptsVerbosity$ ||= {});
61017
61145
  UpdatePromptPromptsModelParameters$inboundSchema = objectType({
61018
61146
  temperature: numberType().optional(),
61019
61147
  maxTokens: numberType().optional(),
@@ -61034,7 +61162,8 @@ var init_updateprompt = __esm(() => {
61034
61162
  photoRealVersion: UpdatePromptPromptsPhotoRealVersion$inboundSchema.optional(),
61035
61163
  encoding_format: UpdatePromptPromptsEncodingFormat$inboundSchema.optional(),
61036
61164
  reasoningEffort: UpdatePromptPromptsReasoningEffort$inboundSchema.optional(),
61037
- budgetTokens: numberType().optional()
61165
+ budgetTokens: numberType().optional(),
61166
+ verbosity: UpdatePromptPromptsVerbosity$inboundSchema.optional()
61038
61167
  }).transform((v2) => {
61039
61168
  return remap(v2, {
61040
61169
  encoding_format: "encodingFormat"
@@ -61060,7 +61189,8 @@ var init_updateprompt = __esm(() => {
61060
61189
  photoRealVersion: UpdatePromptPromptsPhotoRealVersion$outboundSchema.optional(),
61061
61190
  encodingFormat: UpdatePromptPromptsEncodingFormat$outboundSchema.optional(),
61062
61191
  reasoningEffort: UpdatePromptPromptsReasoningEffort$outboundSchema.optional(),
61063
- budgetTokens: numberType().optional()
61192
+ budgetTokens: numberType().optional(),
61193
+ verbosity: UpdatePromptPromptsVerbosity$outboundSchema.optional()
61064
61194
  }).transform((v2) => {
61065
61195
  return remap(v2, {
61066
61196
  encodingFormat: "encoding_format"
@@ -76063,7 +76193,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
76063
76193
  function createMCPServer(deps) {
76064
76194
  const server = new McpServer({
76065
76195
  name: "Orq",
76066
- version: "3.11.0-rc.2"
76196
+ version: "3.11.0-rc.3"
76067
76197
  });
76068
76198
  const client = new OrqCore({
76069
76199
  apiKey: deps.apiKey,
@@ -77471,7 +77601,7 @@ var routes = rn({
77471
77601
  var app = Ve(routes, {
77472
77602
  name: "mcp",
77473
77603
  versionInfo: {
77474
- currentVersion: "3.11.0-rc.2"
77604
+ currentVersion: "3.11.0-rc.3"
77475
77605
  }
77476
77606
  });
77477
77607
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -77479,5 +77609,5 @@ export {
77479
77609
  app
77480
77610
  };
77481
77611
 
77482
- //# debugId=09FEC774522B7CC764756E2164756E21
77612
+ //# debugId=21C6FD50F397291F64756E2164756E21
77483
77613
  //# sourceMappingURL=mcp-server.js.map