@orq-ai/node 3.10.9 → 3.10.10

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 (99) 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/lib/config.js.map +1 -1
  8. package/mcp-server/mcp-server.js +1 -1
  9. package/mcp-server/mcp-server.js.map +1 -1
  10. package/mcp-server/server.js +1 -1
  11. package/mcp-server/server.js.map +1 -1
  12. package/models/operations/createcontact.js +2 -2
  13. package/models/operations/createdataset.js +2 -2
  14. package/models/operations/createdatasetitem.js +2 -2
  15. package/models/operations/createdatasource.js +2 -2
  16. package/models/operations/createeval.js +16 -16
  17. package/models/operations/createprompt.d.ts +78 -0
  18. package/models/operations/createprompt.d.ts.map +1 -1
  19. package/models/operations/createprompt.js +56 -5
  20. package/models/operations/createprompt.js.map +1 -1
  21. package/models/operations/deploymentgetconfig.d.ts +39 -0
  22. package/models/operations/deploymentgetconfig.d.ts.map +1 -1
  23. package/models/operations/deploymentgetconfig.js +36 -11
  24. package/models/operations/deploymentgetconfig.js.map +1 -1
  25. package/models/operations/deployments.d.ts +39 -0
  26. package/models/operations/deployments.d.ts.map +1 -1
  27. package/models/operations/deployments.js +28 -3
  28. package/models/operations/deployments.js.map +1 -1
  29. package/models/operations/fileget.js +2 -2
  30. package/models/operations/filelist.js +2 -2
  31. package/models/operations/fileupload.js +2 -2
  32. package/models/operations/getallprompts.d.ts +39 -0
  33. package/models/operations/getallprompts.d.ts.map +1 -1
  34. package/models/operations/getallprompts.js +28 -3
  35. package/models/operations/getallprompts.js.map +1 -1
  36. package/models/operations/getevals.js +28 -28
  37. package/models/operations/getoneprompt.d.ts +39 -0
  38. package/models/operations/getoneprompt.d.ts.map +1 -1
  39. package/models/operations/getoneprompt.js +28 -3
  40. package/models/operations/getoneprompt.js.map +1 -1
  41. package/models/operations/getpromptversion.d.ts +39 -0
  42. package/models/operations/getpromptversion.d.ts.map +1 -1
  43. package/models/operations/getpromptversion.js +28 -3
  44. package/models/operations/getpromptversion.js.map +1 -1
  45. package/models/operations/listcontacts.js +2 -2
  46. package/models/operations/listdatasetdatapoints.js +2 -2
  47. package/models/operations/listdatasets.js +2 -2
  48. package/models/operations/listdatasources.js +2 -2
  49. package/models/operations/listpromptversions.d.ts +39 -0
  50. package/models/operations/listpromptversions.d.ts.map +1 -1
  51. package/models/operations/listpromptversions.js +28 -3
  52. package/models/operations/listpromptversions.js.map +1 -1
  53. package/models/operations/retrievecontact.js +2 -2
  54. package/models/operations/retrievedatapoint.js +2 -2
  55. package/models/operations/retrievedataset.js +2 -2
  56. package/models/operations/retrievedatasource.js +2 -2
  57. package/models/operations/updatecontact.js +2 -2
  58. package/models/operations/updatedatapoint.js +2 -2
  59. package/models/operations/updatedataset.js +2 -2
  60. package/models/operations/updatedatasource.js +2 -2
  61. package/models/operations/updateeval.js +16 -16
  62. package/models/operations/updateprompt.d.ts +78 -0
  63. package/models/operations/updateprompt.d.ts.map +1 -1
  64. package/models/operations/updateprompt.js +55 -5
  65. package/models/operations/updateprompt.js.map +1 -1
  66. package/package.json +1 -1
  67. package/src/lib/config.ts +2 -2
  68. package/src/mcp-server/mcp-server.ts +1 -1
  69. package/src/mcp-server/server.ts +1 -1
  70. package/src/models/operations/createcontact.ts +2 -2
  71. package/src/models/operations/createdataset.ts +2 -2
  72. package/src/models/operations/createdatasetitem.ts +2 -2
  73. package/src/models/operations/createdatasource.ts +2 -2
  74. package/src/models/operations/createeval.ts +16 -16
  75. package/src/models/operations/createprompt.ts +80 -0
  76. package/src/models/operations/deploymentgetconfig.ts +43 -0
  77. package/src/models/operations/deployments.ts +41 -0
  78. package/src/models/operations/fileget.ts +2 -2
  79. package/src/models/operations/filelist.ts +2 -2
  80. package/src/models/operations/fileupload.ts +2 -2
  81. package/src/models/operations/getallprompts.ts +41 -0
  82. package/src/models/operations/getevals.ts +28 -28
  83. package/src/models/operations/getoneprompt.ts +41 -0
  84. package/src/models/operations/getpromptversion.ts +43 -0
  85. package/src/models/operations/listcontacts.ts +2 -2
  86. package/src/models/operations/listdatasetdatapoints.ts +2 -2
  87. package/src/models/operations/listdatasets.ts +2 -2
  88. package/src/models/operations/listdatasources.ts +2 -2
  89. package/src/models/operations/listpromptversions.ts +43 -0
  90. package/src/models/operations/retrievecontact.ts +2 -2
  91. package/src/models/operations/retrievedatapoint.ts +2 -2
  92. package/src/models/operations/retrievedataset.ts +2 -2
  93. package/src/models/operations/retrievedatasource.ts +2 -2
  94. package/src/models/operations/updatecontact.ts +2 -2
  95. package/src/models/operations/updatedatapoint.ts +2 -2
  96. package/src/models/operations/updatedataset.ts +2 -2
  97. package/src/models/operations/updatedatasource.ts +2 -2
  98. package/src/models/operations/updateeval.ts +16 -16
  99. package/src/models/operations/updateprompt.ts +84 -0
package/bin/mcp-server.js CHANGED
@@ -34206,9 +34206,9 @@ var init_config = __esm(() => {
34206
34206
  SDK_METADATA = {
34207
34207
  language: "typescript",
34208
34208
  openapiDocVersion: "2.0",
34209
- sdkVersion: "3.10.9",
34209
+ sdkVersion: "3.10.10",
34210
34210
  genVersion: "2.675.0",
34211
- userAgent: "speakeasy-sdk/typescript 3.10.9 2.675.0 2.0 @orq-ai/node"
34211
+ userAgent: "speakeasy-sdk/typescript 3.10.10 2.675.0 2.0 @orq-ai/node"
34212
34212
  };
34213
34213
  });
34214
34214
 
@@ -35881,7 +35881,7 @@ var init_createcontact = __esm(() => {
35881
35881
  tags: arrayType(stringType()).optional(),
35882
35882
  metadata: recordType(anyType()).optional(),
35883
35883
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
35884
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
35884
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
35885
35885
  }).transform((v2) => {
35886
35886
  return remap(v2, {
35887
35887
  _id: "id",
@@ -35901,7 +35901,7 @@ var init_createcontact = __esm(() => {
35901
35901
  tags: arrayType(stringType()).optional(),
35902
35902
  metadata: recordType(anyType()).optional(),
35903
35903
  created: dateType().transform((v2) => v2.toISOString()).optional(),
35904
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
35904
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
35905
35905
  }).transform((v2) => {
35906
35906
  return remap(v2, {
35907
35907
  id: "_id",
@@ -35973,7 +35973,7 @@ var init_createdataset = __esm(() => {
35973
35973
  updated_by_id: stringType().optional(),
35974
35974
  metadata: lazyType(() => CreateDatasetMetadata$inboundSchema),
35975
35975
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
35976
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
35976
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
35977
35977
  }).transform((v2) => {
35978
35978
  return remap(v2, {
35979
35979
  _id: "id",
@@ -35993,7 +35993,7 @@ var init_createdataset = __esm(() => {
35993
35993
  updatedById: stringType().optional(),
35994
35994
  metadata: lazyType(() => CreateDatasetMetadata$outboundSchema),
35995
35995
  created: dateType().transform((v2) => v2.toISOString()).optional(),
35996
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
35996
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
35997
35997
  }).transform((v2) => {
35998
35998
  return remap(v2, {
35999
35999
  id: "_id",
@@ -37125,7 +37125,7 @@ var init_createdatasetitem = __esm(() => {
37125
37125
  created_by_id: stringType().optional(),
37126
37126
  updated_by_id: stringType().optional(),
37127
37127
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
37128
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
37128
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
37129
37129
  }).transform((v2) => {
37130
37130
  return remap(v2, {
37131
37131
  _id: "id",
@@ -37152,7 +37152,7 @@ var init_createdatasetitem = __esm(() => {
37152
37152
  createdById: stringType().optional(),
37153
37153
  updatedById: stringType().optional(),
37154
37154
  created: dateType().transform((v2) => v2.toISOString()).optional(),
37155
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
37155
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
37156
37156
  }).transform((v2) => {
37157
37157
  return remap(v2, {
37158
37158
  id: "_id",
@@ -37374,7 +37374,7 @@ var init_createdatasource = __esm(() => {
37374
37374
  CreateDatasourceStatus$.outboundSchema = CreateDatasourceStatus$outboundSchema;
37375
37375
  })(CreateDatasourceStatus$ ||= {});
37376
37376
  CreateDatasourceResponseBody$inboundSchema = objectType({
37377
- _id: stringType().default("01K2308K64C5NS9FZVJSSTHJNM"),
37377
+ _id: stringType().default("01K237R87KTB4KDSY3ZEJBPV5D"),
37378
37378
  display_name: stringType(),
37379
37379
  description: stringType().optional(),
37380
37380
  status: CreateDatasourceStatus$inboundSchema,
@@ -37397,7 +37397,7 @@ var init_createdatasource = __esm(() => {
37397
37397
  });
37398
37398
  });
37399
37399
  CreateDatasourceResponseBody$outboundSchema = objectType({
37400
- id: stringType().default("01K2308K64C5NS9FZVJSSTHJNM"),
37400
+ id: stringType().default("01K237R87KTB4KDSY3ZEJBPV5D"),
37401
37401
  displayName: stringType(),
37402
37402
  description: stringType().optional(),
37403
37403
  status: CreateDatasourceStatus$outboundSchema,
@@ -38073,8 +38073,8 @@ var init_createeval = __esm(() => {
38073
38073
  ResponseBodyPython$inboundSchema = objectType({
38074
38074
  _id: stringType(),
38075
38075
  description: stringType(),
38076
- created: stringType().default("2025-08-07T19:31:19.690Z"),
38077
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
38076
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
38077
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
38078
38078
  guardrail_config: unionType([
38079
38079
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
38080
38080
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -38091,8 +38091,8 @@ var init_createeval = __esm(() => {
38091
38091
  ResponseBodyPython$outboundSchema = objectType({
38092
38092
  id: stringType(),
38093
38093
  description: stringType(),
38094
- created: stringType().default("2025-08-07T19:31:19.690Z"),
38095
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
38094
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
38095
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
38096
38096
  guardrailConfig: unionType([
38097
38097
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
38098
38098
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -38185,8 +38185,8 @@ var init_createeval = __esm(() => {
38185
38185
  ResponseBodyHTTP$inboundSchema = objectType({
38186
38186
  _id: stringType(),
38187
38187
  description: stringType(),
38188
- created: stringType().default("2025-08-07T19:31:19.690Z"),
38189
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
38188
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
38189
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
38190
38190
  guardrail_config: unionType([
38191
38191
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
38192
38192
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -38206,8 +38206,8 @@ var init_createeval = __esm(() => {
38206
38206
  ResponseBodyHTTP$outboundSchema = objectType({
38207
38207
  id: stringType(),
38208
38208
  description: stringType(),
38209
- created: stringType().default("2025-08-07T19:31:19.690Z"),
38210
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
38209
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
38210
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
38211
38211
  guardrailConfig: unionType([
38212
38212
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
38213
38213
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -38297,8 +38297,8 @@ var init_createeval = __esm(() => {
38297
38297
  ResponseBodyJSON$inboundSchema = objectType({
38298
38298
  _id: stringType(),
38299
38299
  description: stringType(),
38300
- created: stringType().default("2025-08-07T19:31:19.690Z"),
38301
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
38300
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
38301
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
38302
38302
  guardrail_config: unionType([
38303
38303
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
38304
38304
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -38315,8 +38315,8 @@ var init_createeval = __esm(() => {
38315
38315
  ResponseBodyJSON$outboundSchema = objectType({
38316
38316
  id: stringType(),
38317
38317
  description: stringType(),
38318
- created: stringType().default("2025-08-07T19:31:19.690Z"),
38319
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
38318
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
38319
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
38320
38320
  guardrailConfig: unionType([
38321
38321
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
38322
38322
  lazyType(() => CreateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -38403,8 +38403,8 @@ var init_createeval = __esm(() => {
38403
38403
  ResponseBodyLLM$inboundSchema = objectType({
38404
38404
  _id: stringType(),
38405
38405
  description: stringType(),
38406
- created: stringType().default("2025-08-07T19:31:19.690Z"),
38407
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
38406
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
38407
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
38408
38408
  guardrail_config: unionType([
38409
38409
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
38410
38410
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -38422,8 +38422,8 @@ var init_createeval = __esm(() => {
38422
38422
  ResponseBodyLLM$outboundSchema = objectType({
38423
38423
  id: stringType(),
38424
38424
  description: stringType(),
38425
- created: stringType().default("2025-08-07T19:31:19.690Z"),
38426
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
38425
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
38426
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
38427
38427
  guardrailConfig: unionType([
38428
38428
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
38429
38429
  lazyType(() => CreateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -38759,7 +38759,7 @@ var init_createknowledge = __esm(() => {
38759
38759
  });
38760
38760
 
38761
38761
  // src/models/operations/createprompt.ts
38762
- 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$;
38762
+ 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$;
38763
38763
  var init_createprompt = __esm(() => {
38764
38764
  init_esm();
38765
38765
  init_primitives();
@@ -38800,6 +38800,11 @@ var init_createprompt = __esm(() => {
38800
38800
  Medium: "medium",
38801
38801
  High: "high"
38802
38802
  };
38803
+ Verbosity = {
38804
+ Low: "low",
38805
+ Medium: "medium",
38806
+ High: "high"
38807
+ };
38803
38808
  Provider = {
38804
38809
  Cohere: "cohere",
38805
38810
  Openai: "openai",
@@ -38916,6 +38921,11 @@ var init_createprompt = __esm(() => {
38916
38921
  Medium: "medium",
38917
38922
  High: "high"
38918
38923
  };
38924
+ CreatePromptVerbosity = {
38925
+ Low: "low",
38926
+ Medium: "medium",
38927
+ High: "high"
38928
+ };
38919
38929
  CreatePromptProvider = {
38920
38930
  Cohere: "cohere",
38921
38931
  Openai: "openai",
@@ -39090,6 +39100,12 @@ var init_createprompt = __esm(() => {
39090
39100
  ReasoningEffort$.inboundSchema = ReasoningEffort$inboundSchema;
39091
39101
  ReasoningEffort$.outboundSchema = ReasoningEffort$outboundSchema;
39092
39102
  })(ReasoningEffort$ ||= {});
39103
+ Verbosity$inboundSchema = nativeEnumType(Verbosity);
39104
+ Verbosity$outboundSchema = Verbosity$inboundSchema;
39105
+ ((Verbosity$) => {
39106
+ Verbosity$.inboundSchema = Verbosity$inboundSchema;
39107
+ Verbosity$.outboundSchema = Verbosity$outboundSchema;
39108
+ })(Verbosity$ ||= {});
39093
39109
  ModelParameters$inboundSchema = objectType({
39094
39110
  temperature: numberType().optional(),
39095
39111
  maxTokens: numberType().optional(),
@@ -39110,7 +39126,8 @@ var init_createprompt = __esm(() => {
39110
39126
  photoRealVersion: PhotoRealVersion$inboundSchema.optional(),
39111
39127
  encoding_format: EncodingFormat$inboundSchema.optional(),
39112
39128
  reasoningEffort: ReasoningEffort$inboundSchema.optional(),
39113
- budgetTokens: numberType().optional()
39129
+ budgetTokens: numberType().optional(),
39130
+ verbosity: Verbosity$inboundSchema.optional()
39114
39131
  }).transform((v2) => {
39115
39132
  return remap(v2, {
39116
39133
  encoding_format: "encodingFormat"
@@ -39136,7 +39153,8 @@ var init_createprompt = __esm(() => {
39136
39153
  photoRealVersion: PhotoRealVersion$outboundSchema.optional(),
39137
39154
  encodingFormat: EncodingFormat$outboundSchema.optional(),
39138
39155
  reasoningEffort: ReasoningEffort$outboundSchema.optional(),
39139
- budgetTokens: numberType().optional()
39156
+ budgetTokens: numberType().optional(),
39157
+ verbosity: Verbosity$outboundSchema.optional()
39140
39158
  }).transform((v2) => {
39141
39159
  return remap(v2, {
39142
39160
  encodingFormat: "encoding_format"
@@ -39556,6 +39574,12 @@ var init_createprompt = __esm(() => {
39556
39574
  CreatePromptReasoningEffort$.inboundSchema = CreatePromptReasoningEffort$inboundSchema;
39557
39575
  CreatePromptReasoningEffort$.outboundSchema = CreatePromptReasoningEffort$outboundSchema;
39558
39576
  })(CreatePromptReasoningEffort$ ||= {});
39577
+ CreatePromptVerbosity$inboundSchema = nativeEnumType(CreatePromptVerbosity);
39578
+ CreatePromptVerbosity$outboundSchema = CreatePromptVerbosity$inboundSchema;
39579
+ ((CreatePromptVerbosity$) => {
39580
+ CreatePromptVerbosity$.inboundSchema = CreatePromptVerbosity$inboundSchema;
39581
+ CreatePromptVerbosity$.outboundSchema = CreatePromptVerbosity$outboundSchema;
39582
+ })(CreatePromptVerbosity$ ||= {});
39559
39583
  CreatePromptModelParameters$inboundSchema = objectType({
39560
39584
  temperature: numberType().optional(),
39561
39585
  maxTokens: numberType().optional(),
@@ -39576,7 +39600,8 @@ var init_createprompt = __esm(() => {
39576
39600
  photoRealVersion: CreatePromptPhotoRealVersion$inboundSchema.optional(),
39577
39601
  encoding_format: CreatePromptEncodingFormat$inboundSchema.optional(),
39578
39602
  reasoningEffort: CreatePromptReasoningEffort$inboundSchema.optional(),
39579
- budgetTokens: numberType().optional()
39603
+ budgetTokens: numberType().optional(),
39604
+ verbosity: CreatePromptVerbosity$inboundSchema.optional()
39580
39605
  }).transform((v2) => {
39581
39606
  return remap(v2, {
39582
39607
  encoding_format: "encodingFormat"
@@ -39602,7 +39627,8 @@ var init_createprompt = __esm(() => {
39602
39627
  photoRealVersion: CreatePromptPhotoRealVersion$outboundSchema.optional(),
39603
39628
  encodingFormat: CreatePromptEncodingFormat$outboundSchema.optional(),
39604
39629
  reasoningEffort: CreatePromptReasoningEffort$outboundSchema.optional(),
39605
- budgetTokens: numberType().optional()
39630
+ budgetTokens: numberType().optional(),
39631
+ verbosity: CreatePromptVerbosity$outboundSchema.optional()
39606
39632
  }).transform((v2) => {
39607
39633
  return remap(v2, {
39608
39634
  encodingFormat: "encoding_format"
@@ -41317,7 +41343,7 @@ var init_deploymentcreatemetric = __esm(() => {
41317
41343
  });
41318
41344
 
41319
41345
  // src/models/operations/deploymentgetconfig.ts
41320
- 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$;
41346
+ 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$;
41321
41347
  var init_deploymentgetconfig = __esm(() => {
41322
41348
  init_esm();
41323
41349
  init_primitives();
@@ -41470,6 +41496,11 @@ var init_deploymentgetconfig = __esm(() => {
41470
41496
  Medium: "medium",
41471
41497
  High: "high"
41472
41498
  };
41499
+ DeploymentGetConfigVerbosity = {
41500
+ Low: "low",
41501
+ Medium: "medium",
41502
+ High: "high"
41503
+ };
41473
41504
  DeploymentGetConfigDeploymentsType = {
41474
41505
  Function: "function"
41475
41506
  };
@@ -43415,6 +43446,12 @@ var init_deploymentgetconfig = __esm(() => {
43415
43446
  DeploymentGetConfigReasoningEffort$.inboundSchema = DeploymentGetConfigReasoningEffort$inboundSchema;
43416
43447
  DeploymentGetConfigReasoningEffort$.outboundSchema = DeploymentGetConfigReasoningEffort$outboundSchema;
43417
43448
  })(DeploymentGetConfigReasoningEffort$ ||= {});
43449
+ DeploymentGetConfigVerbosity$inboundSchema = nativeEnumType(DeploymentGetConfigVerbosity);
43450
+ DeploymentGetConfigVerbosity$outboundSchema = DeploymentGetConfigVerbosity$inboundSchema;
43451
+ ((DeploymentGetConfigVerbosity$) => {
43452
+ DeploymentGetConfigVerbosity$.inboundSchema = DeploymentGetConfigVerbosity$inboundSchema;
43453
+ DeploymentGetConfigVerbosity$.outboundSchema = DeploymentGetConfigVerbosity$outboundSchema;
43454
+ })(DeploymentGetConfigVerbosity$ ||= {});
43418
43455
  ParametersT$inboundSchema = objectType({
43419
43456
  temperature: numberType().optional(),
43420
43457
  maxTokens: numberType().optional(),
@@ -43435,7 +43472,8 @@ var init_deploymentgetconfig = __esm(() => {
43435
43472
  photoRealVersion: DeploymentGetConfigPhotoRealVersion$inboundSchema.optional(),
43436
43473
  encoding_format: DeploymentGetConfigEncodingFormat$inboundSchema.optional(),
43437
43474
  reasoningEffort: DeploymentGetConfigReasoningEffort$inboundSchema.optional(),
43438
- budgetTokens: numberType().optional()
43475
+ budgetTokens: numberType().optional(),
43476
+ verbosity: DeploymentGetConfigVerbosity$inboundSchema.optional()
43439
43477
  }).transform((v2) => {
43440
43478
  return remap(v2, {
43441
43479
  encoding_format: "encodingFormat"
@@ -43461,7 +43499,8 @@ var init_deploymentgetconfig = __esm(() => {
43461
43499
  photoRealVersion: DeploymentGetConfigPhotoRealVersion$outboundSchema.optional(),
43462
43500
  encodingFormat: DeploymentGetConfigEncodingFormat$outboundSchema.optional(),
43463
43501
  reasoningEffort: DeploymentGetConfigReasoningEffort$outboundSchema.optional(),
43464
- budgetTokens: numberType().optional()
43502
+ budgetTokens: numberType().optional(),
43503
+ verbosity: DeploymentGetConfigVerbosity$outboundSchema.optional()
43465
43504
  }).transform((v2) => {
43466
43505
  return remap(v2, {
43467
43506
  encodingFormat: "encoding_format"
@@ -43916,7 +43955,7 @@ var init_deploymentinvoke = __esm(() => {
43916
43955
  });
43917
43956
 
43918
43957
  // src/models/operations/deployments.ts
43919
- 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$;
43958
+ 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$;
43920
43959
  var init_deployments = __esm(() => {
43921
43960
  init_esm();
43922
43961
  init_primitives();
@@ -43966,6 +44005,11 @@ var init_deployments = __esm(() => {
43966
44005
  Medium: "medium",
43967
44006
  High: "high"
43968
44007
  };
44008
+ DeploymentsVerbosity = {
44009
+ Low: "low",
44010
+ Medium: "medium",
44011
+ High: "high"
44012
+ };
43969
44013
  DeploymentsProvider = {
43970
44014
  Cohere: "cohere",
43971
44015
  Openai: "openai",
@@ -44197,6 +44241,12 @@ var init_deployments = __esm(() => {
44197
44241
  DeploymentsReasoningEffort$.inboundSchema = DeploymentsReasoningEffort$inboundSchema;
44198
44242
  DeploymentsReasoningEffort$.outboundSchema = DeploymentsReasoningEffort$outboundSchema;
44199
44243
  })(DeploymentsReasoningEffort$ ||= {});
44244
+ DeploymentsVerbosity$inboundSchema = nativeEnumType(DeploymentsVerbosity);
44245
+ DeploymentsVerbosity$outboundSchema = DeploymentsVerbosity$inboundSchema;
44246
+ ((DeploymentsVerbosity$) => {
44247
+ DeploymentsVerbosity$.inboundSchema = DeploymentsVerbosity$inboundSchema;
44248
+ DeploymentsVerbosity$.outboundSchema = DeploymentsVerbosity$outboundSchema;
44249
+ })(DeploymentsVerbosity$ ||= {});
44200
44250
  DeploymentsModelParameters$inboundSchema = objectType({
44201
44251
  temperature: numberType().optional(),
44202
44252
  maxTokens: numberType().optional(),
@@ -44217,7 +44267,8 @@ var init_deployments = __esm(() => {
44217
44267
  photoRealVersion: DeploymentsPhotoRealVersion$inboundSchema.optional(),
44218
44268
  encoding_format: DeploymentsEncodingFormat$inboundSchema.optional(),
44219
44269
  reasoningEffort: DeploymentsReasoningEffort$inboundSchema.optional(),
44220
- budgetTokens: numberType().optional()
44270
+ budgetTokens: numberType().optional(),
44271
+ verbosity: DeploymentsVerbosity$inboundSchema.optional()
44221
44272
  }).transform((v2) => {
44222
44273
  return remap(v2, {
44223
44274
  encoding_format: "encodingFormat"
@@ -44243,7 +44294,8 @@ var init_deployments = __esm(() => {
44243
44294
  photoRealVersion: DeploymentsPhotoRealVersion$outboundSchema.optional(),
44244
44295
  encodingFormat: DeploymentsEncodingFormat$outboundSchema.optional(),
44245
44296
  reasoningEffort: DeploymentsReasoningEffort$outboundSchema.optional(),
44246
- budgetTokens: numberType().optional()
44297
+ budgetTokens: numberType().optional(),
44298
+ verbosity: DeploymentsVerbosity$outboundSchema.optional()
44247
44299
  }).transform((v2) => {
44248
44300
  return remap(v2, {
44249
44301
  encodingFormat: "encoding_format"
@@ -48217,7 +48269,7 @@ var init_fileget = __esm(() => {
48217
48269
  bytes: numberType(),
48218
48270
  file_name: stringType(),
48219
48271
  workspace_id: stringType(),
48220
- created: stringType().datetime({ offset: true }).default("2025-08-07T19:31:20.540Z").transform((v2) => new Date(v2))
48272
+ created: stringType().datetime({ offset: true }).default("2025-08-07T21:42:13.754Z").transform((v2) => new Date(v2))
48221
48273
  }).transform((v2) => {
48222
48274
  return remap(v2, {
48223
48275
  _id: "id",
@@ -48233,7 +48285,7 @@ var init_fileget = __esm(() => {
48233
48285
  bytes: numberType(),
48234
48286
  fileName: stringType(),
48235
48287
  workspaceId: stringType(),
48236
- created: dateType().default(() => new Date("2025-08-07T19:31:20.540Z")).transform((v2) => v2.toISOString())
48288
+ created: dateType().default(() => new Date("2025-08-07T21:42:13.754Z")).transform((v2) => v2.toISOString())
48237
48289
  }).transform((v2) => {
48238
48290
  return remap(v2, {
48239
48291
  id: "_id",
@@ -48304,7 +48356,7 @@ var init_filelist = __esm(() => {
48304
48356
  bytes: numberType(),
48305
48357
  file_name: stringType(),
48306
48358
  workspace_id: stringType(),
48307
- created: stringType().datetime({ offset: true }).default("2025-08-07T19:31:20.540Z").transform((v2) => new Date(v2))
48359
+ created: stringType().datetime({ offset: true }).default("2025-08-07T21:42:13.754Z").transform((v2) => new Date(v2))
48308
48360
  }).transform((v2) => {
48309
48361
  return remap(v2, {
48310
48362
  _id: "id",
@@ -48320,7 +48372,7 @@ var init_filelist = __esm(() => {
48320
48372
  bytes: numberType(),
48321
48373
  fileName: stringType(),
48322
48374
  workspaceId: stringType(),
48323
- created: dateType().default(() => new Date("2025-08-07T19:31:20.540Z")).transform((v2) => v2.toISOString())
48375
+ created: dateType().default(() => new Date("2025-08-07T21:42:13.754Z")).transform((v2) => v2.toISOString())
48324
48376
  }).transform((v2) => {
48325
48377
  return remap(v2, {
48326
48378
  id: "_id",
@@ -48452,7 +48504,7 @@ var init_fileupload = __esm(() => {
48452
48504
  bytes: numberType(),
48453
48505
  file_name: stringType(),
48454
48506
  workspace_id: stringType(),
48455
- created: stringType().datetime({ offset: true }).default("2025-08-07T19:31:20.540Z").transform((v2) => new Date(v2))
48507
+ created: stringType().datetime({ offset: true }).default("2025-08-07T21:42:13.754Z").transform((v2) => new Date(v2))
48456
48508
  }).transform((v2) => {
48457
48509
  return remap(v2, {
48458
48510
  _id: "id",
@@ -48468,7 +48520,7 @@ var init_fileupload = __esm(() => {
48468
48520
  bytes: numberType(),
48469
48521
  fileName: stringType(),
48470
48522
  workspaceId: stringType(),
48471
- created: dateType().default(() => new Date("2025-08-07T19:31:20.540Z")).transform((v2) => v2.toISOString())
48523
+ created: dateType().default(() => new Date("2025-08-07T21:42:13.754Z")).transform((v2) => v2.toISOString())
48472
48524
  }).transform((v2) => {
48473
48525
  return remap(v2, {
48474
48526
  id: "_id",
@@ -48484,7 +48536,7 @@ var init_fileupload = __esm(() => {
48484
48536
  });
48485
48537
 
48486
48538
  // src/models/operations/getallprompts.ts
48487
- 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$;
48539
+ 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$;
48488
48540
  var init_getallprompts = __esm(() => {
48489
48541
  init_esm();
48490
48542
  init_primitives();
@@ -48531,6 +48583,11 @@ var init_getallprompts = __esm(() => {
48531
48583
  Medium: "medium",
48532
48584
  High: "high"
48533
48585
  };
48586
+ GetAllPromptsVerbosity = {
48587
+ Low: "low",
48588
+ Medium: "medium",
48589
+ High: "high"
48590
+ };
48534
48591
  GetAllPromptsProvider = {
48535
48592
  Cohere: "cohere",
48536
48593
  Openai: "openai",
@@ -48741,6 +48798,12 @@ var init_getallprompts = __esm(() => {
48741
48798
  GetAllPromptsReasoningEffort$.inboundSchema = GetAllPromptsReasoningEffort$inboundSchema;
48742
48799
  GetAllPromptsReasoningEffort$.outboundSchema = GetAllPromptsReasoningEffort$outboundSchema;
48743
48800
  })(GetAllPromptsReasoningEffort$ ||= {});
48801
+ GetAllPromptsVerbosity$inboundSchema = nativeEnumType(GetAllPromptsVerbosity);
48802
+ GetAllPromptsVerbosity$outboundSchema = GetAllPromptsVerbosity$inboundSchema;
48803
+ ((GetAllPromptsVerbosity$) => {
48804
+ GetAllPromptsVerbosity$.inboundSchema = GetAllPromptsVerbosity$inboundSchema;
48805
+ GetAllPromptsVerbosity$.outboundSchema = GetAllPromptsVerbosity$outboundSchema;
48806
+ })(GetAllPromptsVerbosity$ ||= {});
48744
48807
  GetAllPromptsModelParameters$inboundSchema = objectType({
48745
48808
  temperature: numberType().optional(),
48746
48809
  maxTokens: numberType().optional(),
@@ -48761,7 +48824,8 @@ var init_getallprompts = __esm(() => {
48761
48824
  photoRealVersion: GetAllPromptsPhotoRealVersion$inboundSchema.optional(),
48762
48825
  encoding_format: GetAllPromptsEncodingFormat$inboundSchema.optional(),
48763
48826
  reasoningEffort: GetAllPromptsReasoningEffort$inboundSchema.optional(),
48764
- budgetTokens: numberType().optional()
48827
+ budgetTokens: numberType().optional(),
48828
+ verbosity: GetAllPromptsVerbosity$inboundSchema.optional()
48765
48829
  }).transform((v2) => {
48766
48830
  return remap(v2, {
48767
48831
  encoding_format: "encodingFormat"
@@ -48787,7 +48851,8 @@ var init_getallprompts = __esm(() => {
48787
48851
  photoRealVersion: GetAllPromptsPhotoRealVersion$outboundSchema.optional(),
48788
48852
  encodingFormat: GetAllPromptsEncodingFormat$outboundSchema.optional(),
48789
48853
  reasoningEffort: GetAllPromptsReasoningEffort$outboundSchema.optional(),
48790
- budgetTokens: numberType().optional()
48854
+ budgetTokens: numberType().optional(),
48855
+ verbosity: GetAllPromptsVerbosity$outboundSchema.optional()
48791
48856
  }).transform((v2) => {
48792
48857
  return remap(v2, {
48793
48858
  encodingFormat: "encoding_format"
@@ -49508,8 +49573,8 @@ var init_getevals = __esm(() => {
49508
49573
  Typescript$inboundSchema = objectType({
49509
49574
  _id: stringType(),
49510
49575
  description: stringType(),
49511
- created: stringType().default("2025-08-07T19:31:19.690Z"),
49512
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
49576
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
49577
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
49513
49578
  guardrail_config: unionType([
49514
49579
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
49515
49580
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -49526,8 +49591,8 @@ var init_getevals = __esm(() => {
49526
49591
  Typescript$outboundSchema = objectType({
49527
49592
  id: stringType(),
49528
49593
  description: stringType(),
49529
- created: stringType().default("2025-08-07T19:31:19.690Z"),
49530
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
49594
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
49595
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
49531
49596
  guardrailConfig: unionType([
49532
49597
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
49533
49598
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -49620,8 +49685,8 @@ var init_getevals = __esm(() => {
49620
49685
  Ragas$inboundSchema = objectType({
49621
49686
  _id: stringType(),
49622
49687
  description: stringType(),
49623
- created: stringType().default("2025-08-07T19:31:19.690Z"),
49624
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
49688
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
49689
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
49625
49690
  guardrail_config: unionType([
49626
49691
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$inboundSchema),
49627
49692
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -49640,8 +49705,8 @@ var init_getevals = __esm(() => {
49640
49705
  Ragas$outboundSchema = objectType({
49641
49706
  id: stringType(),
49642
49707
  description: stringType(),
49643
- created: stringType().default("2025-08-07T19:31:19.690Z"),
49644
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
49708
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
49709
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
49645
49710
  guardrailConfig: unionType([
49646
49711
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Number$outboundSchema),
49647
49712
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -50394,8 +50459,8 @@ var init_getevals = __esm(() => {
50394
50459
  DataFunction$inboundSchema = objectType({
50395
50460
  _id: stringType(),
50396
50461
  description: stringType(),
50397
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50398
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50462
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50463
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50399
50464
  guardrail_config: unionType([
50400
50465
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$inboundSchema),
50401
50466
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -50449,8 +50514,8 @@ var init_getevals = __esm(() => {
50449
50514
  DataFunction$outboundSchema = objectType({
50450
50515
  id: stringType(),
50451
50516
  description: stringType(),
50452
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50453
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50517
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50518
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50454
50519
  guardrailConfig: unionType([
50455
50520
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseNumber$outboundSchema),
50456
50521
  lazyType(() => GetEvalsGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -50574,8 +50639,8 @@ var init_getevals = __esm(() => {
50574
50639
  DataPython$inboundSchema = objectType({
50575
50640
  _id: stringType(),
50576
50641
  description: stringType(),
50577
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50578
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50642
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50643
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50579
50644
  guardrail_config: unionType([
50580
50645
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$inboundSchema),
50581
50646
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$inboundSchema)
@@ -50592,8 +50657,8 @@ var init_getevals = __esm(() => {
50592
50657
  DataPython$outboundSchema = objectType({
50593
50658
  id: stringType(),
50594
50659
  description: stringType(),
50595
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50596
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50660
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50661
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50597
50662
  guardrailConfig: unionType([
50598
50663
  lazyType(() => GetEvalsGuardrailConfigEvalsNumber$outboundSchema),
50599
50664
  lazyType(() => GetEvalsGuardrailConfigEvalsBoolean$outboundSchema)
@@ -50686,8 +50751,8 @@ var init_getevals = __esm(() => {
50686
50751
  DataHTTP$inboundSchema = objectType({
50687
50752
  _id: stringType(),
50688
50753
  description: stringType(),
50689
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50690
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50754
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50755
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50691
50756
  guardrail_config: unionType([
50692
50757
  lazyType(() => GetEvalsGuardrailConfigNumber$inboundSchema),
50693
50758
  lazyType(() => GetEvalsGuardrailConfigBoolean$inboundSchema)
@@ -50707,8 +50772,8 @@ var init_getevals = __esm(() => {
50707
50772
  DataHTTP$outboundSchema = objectType({
50708
50773
  id: stringType(),
50709
50774
  description: stringType(),
50710
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50711
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50775
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50776
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50712
50777
  guardrailConfig: unionType([
50713
50778
  lazyType(() => GetEvalsGuardrailConfigNumber$outboundSchema),
50714
50779
  lazyType(() => GetEvalsGuardrailConfigBoolean$outboundSchema)
@@ -50798,8 +50863,8 @@ var init_getevals = __esm(() => {
50798
50863
  DataJSON$inboundSchema = objectType({
50799
50864
  _id: stringType(),
50800
50865
  description: stringType(),
50801
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50802
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50866
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50867
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50803
50868
  guardrail_config: unionType([
50804
50869
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$inboundSchema),
50805
50870
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$inboundSchema)
@@ -50816,8 +50881,8 @@ var init_getevals = __esm(() => {
50816
50881
  DataJSON$outboundSchema = objectType({
50817
50882
  id: stringType(),
50818
50883
  description: stringType(),
50819
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50820
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50884
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50885
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50821
50886
  guardrailConfig: unionType([
50822
50887
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataNumber$outboundSchema),
50823
50888
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyDataBoolean$outboundSchema)
@@ -50904,8 +50969,8 @@ var init_getevals = __esm(() => {
50904
50969
  DataLLM$inboundSchema = objectType({
50905
50970
  _id: stringType(),
50906
50971
  description: stringType(),
50907
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50908
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50972
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50973
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50909
50974
  guardrail_config: unionType([
50910
50975
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
50911
50976
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -50923,8 +50988,8 @@ var init_getevals = __esm(() => {
50923
50988
  DataLLM$outboundSchema = objectType({
50924
50989
  id: stringType(),
50925
50990
  description: stringType(),
50926
- created: stringType().default("2025-08-07T19:31:19.690Z"),
50927
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
50991
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
50992
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
50928
50993
  guardrailConfig: unionType([
50929
50994
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
50930
50995
  lazyType(() => GetEvalsGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -51242,7 +51307,7 @@ var init_getoneknowledge = __esm(() => {
51242
51307
  });
51243
51308
 
51244
51309
  // src/models/operations/getoneprompt.ts
51245
- 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$;
51310
+ 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$;
51246
51311
  var init_getoneprompt = __esm(() => {
51247
51312
  init_esm();
51248
51313
  init_primitives();
@@ -51286,6 +51351,11 @@ var init_getoneprompt = __esm(() => {
51286
51351
  Medium: "medium",
51287
51352
  High: "high"
51288
51353
  };
51354
+ GetOnePromptVerbosity = {
51355
+ Low: "low",
51356
+ Medium: "medium",
51357
+ High: "high"
51358
+ };
51289
51359
  GetOnePromptProvider = {
51290
51360
  Cohere: "cohere",
51291
51361
  Openai: "openai",
@@ -51476,6 +51546,12 @@ var init_getoneprompt = __esm(() => {
51476
51546
  GetOnePromptReasoningEffort$.inboundSchema = GetOnePromptReasoningEffort$inboundSchema;
51477
51547
  GetOnePromptReasoningEffort$.outboundSchema = GetOnePromptReasoningEffort$outboundSchema;
51478
51548
  })(GetOnePromptReasoningEffort$ ||= {});
51549
+ GetOnePromptVerbosity$inboundSchema = nativeEnumType(GetOnePromptVerbosity);
51550
+ GetOnePromptVerbosity$outboundSchema = GetOnePromptVerbosity$inboundSchema;
51551
+ ((GetOnePromptVerbosity$) => {
51552
+ GetOnePromptVerbosity$.inboundSchema = GetOnePromptVerbosity$inboundSchema;
51553
+ GetOnePromptVerbosity$.outboundSchema = GetOnePromptVerbosity$outboundSchema;
51554
+ })(GetOnePromptVerbosity$ ||= {});
51479
51555
  GetOnePromptModelParameters$inboundSchema = objectType({
51480
51556
  temperature: numberType().optional(),
51481
51557
  maxTokens: numberType().optional(),
@@ -51496,7 +51572,8 @@ var init_getoneprompt = __esm(() => {
51496
51572
  photoRealVersion: GetOnePromptPhotoRealVersion$inboundSchema.optional(),
51497
51573
  encoding_format: GetOnePromptEncodingFormat$inboundSchema.optional(),
51498
51574
  reasoningEffort: GetOnePromptReasoningEffort$inboundSchema.optional(),
51499
- budgetTokens: numberType().optional()
51575
+ budgetTokens: numberType().optional(),
51576
+ verbosity: GetOnePromptVerbosity$inboundSchema.optional()
51500
51577
  }).transform((v2) => {
51501
51578
  return remap(v2, {
51502
51579
  encoding_format: "encodingFormat"
@@ -51522,7 +51599,8 @@ var init_getoneprompt = __esm(() => {
51522
51599
  photoRealVersion: GetOnePromptPhotoRealVersion$outboundSchema.optional(),
51523
51600
  encodingFormat: GetOnePromptEncodingFormat$outboundSchema.optional(),
51524
51601
  reasoningEffort: GetOnePromptReasoningEffort$outboundSchema.optional(),
51525
- budgetTokens: numberType().optional()
51602
+ budgetTokens: numberType().optional(),
51603
+ verbosity: GetOnePromptVerbosity$outboundSchema.optional()
51526
51604
  }).transform((v2) => {
51527
51605
  return remap(v2, {
51528
51606
  encodingFormat: "encoding_format"
@@ -51873,7 +51951,7 @@ var init_getoneprompt = __esm(() => {
51873
51951
  });
51874
51952
 
51875
51953
  // src/models/operations/getpromptversion.ts
51876
- 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$;
51954
+ 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$;
51877
51955
  var init_getpromptversion = __esm(() => {
51878
51956
  init_esm();
51879
51957
  init_primitives();
@@ -51914,6 +51992,11 @@ var init_getpromptversion = __esm(() => {
51914
51992
  Medium: "medium",
51915
51993
  High: "high"
51916
51994
  };
51995
+ GetPromptVersionVerbosity = {
51996
+ Low: "low",
51997
+ Medium: "medium",
51998
+ High: "high"
51999
+ };
51917
52000
  GetPromptVersionProvider = {
51918
52001
  Cohere: "cohere",
51919
52002
  Openai: "openai",
@@ -52110,6 +52193,12 @@ var init_getpromptversion = __esm(() => {
52110
52193
  GetPromptVersionReasoningEffort$.inboundSchema = GetPromptVersionReasoningEffort$inboundSchema;
52111
52194
  GetPromptVersionReasoningEffort$.outboundSchema = GetPromptVersionReasoningEffort$outboundSchema;
52112
52195
  })(GetPromptVersionReasoningEffort$ ||= {});
52196
+ GetPromptVersionVerbosity$inboundSchema = nativeEnumType(GetPromptVersionVerbosity);
52197
+ GetPromptVersionVerbosity$outboundSchema = GetPromptVersionVerbosity$inboundSchema;
52198
+ ((GetPromptVersionVerbosity$) => {
52199
+ GetPromptVersionVerbosity$.inboundSchema = GetPromptVersionVerbosity$inboundSchema;
52200
+ GetPromptVersionVerbosity$.outboundSchema = GetPromptVersionVerbosity$outboundSchema;
52201
+ })(GetPromptVersionVerbosity$ ||= {});
52113
52202
  GetPromptVersionModelParameters$inboundSchema = objectType({
52114
52203
  temperature: numberType().optional(),
52115
52204
  maxTokens: numberType().optional(),
@@ -52130,7 +52219,8 @@ var init_getpromptversion = __esm(() => {
52130
52219
  photoRealVersion: GetPromptVersionPhotoRealVersion$inboundSchema.optional(),
52131
52220
  encoding_format: GetPromptVersionEncodingFormat$inboundSchema.optional(),
52132
52221
  reasoningEffort: GetPromptVersionReasoningEffort$inboundSchema.optional(),
52133
- budgetTokens: numberType().optional()
52222
+ budgetTokens: numberType().optional(),
52223
+ verbosity: GetPromptVersionVerbosity$inboundSchema.optional()
52134
52224
  }).transform((v2) => {
52135
52225
  return remap(v2, {
52136
52226
  encoding_format: "encodingFormat"
@@ -52156,7 +52246,8 @@ var init_getpromptversion = __esm(() => {
52156
52246
  photoRealVersion: GetPromptVersionPhotoRealVersion$outboundSchema.optional(),
52157
52247
  encodingFormat: GetPromptVersionEncodingFormat$outboundSchema.optional(),
52158
52248
  reasoningEffort: GetPromptVersionReasoningEffort$outboundSchema.optional(),
52159
- budgetTokens: numberType().optional()
52249
+ budgetTokens: numberType().optional(),
52250
+ verbosity: GetPromptVersionVerbosity$outboundSchema.optional()
52160
52251
  }).transform((v2) => {
52161
52252
  return remap(v2, {
52162
52253
  encodingFormat: "encoding_format"
@@ -53325,7 +53416,7 @@ var init_listcontacts = __esm(() => {
53325
53416
  tags: arrayType(stringType()).optional(),
53326
53417
  metadata: recordType(anyType()).optional(),
53327
53418
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53328
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2)),
53419
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2)),
53329
53420
  metrics: lazyType(() => Metrics$inboundSchema)
53330
53421
  }).transform((v2) => {
53331
53422
  return remap(v2, {
@@ -53344,7 +53435,7 @@ var init_listcontacts = __esm(() => {
53344
53435
  tags: arrayType(stringType()).optional(),
53345
53436
  metadata: recordType(anyType()).optional(),
53346
53437
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53347
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString()),
53438
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString()),
53348
53439
  metrics: lazyType(() => Metrics$outboundSchema)
53349
53440
  }).transform((v2) => {
53350
53441
  return remap(v2, {
@@ -53959,7 +54050,7 @@ var init_listdatasetdatapoints = __esm(() => {
53959
54050
  created_by_id: stringType().optional(),
53960
54051
  updated_by_id: stringType().optional(),
53961
54052
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
53962
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
54053
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
53963
54054
  }).transform((v2) => {
53964
54055
  return remap(v2, {
53965
54056
  _id: "id",
@@ -53986,7 +54077,7 @@ var init_listdatasetdatapoints = __esm(() => {
53986
54077
  createdById: stringType().optional(),
53987
54078
  updatedById: stringType().optional(),
53988
54079
  created: dateType().transform((v2) => v2.toISOString()).optional(),
53989
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
54080
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
53990
54081
  }).transform((v2) => {
53991
54082
  return remap(v2, {
53992
54083
  id: "_id",
@@ -54094,7 +54185,7 @@ var init_listdatasets = __esm(() => {
54094
54185
  updated_by_id: stringType().optional(),
54095
54186
  metadata: lazyType(() => ListDatasetsMetadata$inboundSchema),
54096
54187
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
54097
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
54188
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
54098
54189
  }).transform((v2) => {
54099
54190
  return remap(v2, {
54100
54191
  _id: "id",
@@ -54114,7 +54205,7 @@ var init_listdatasets = __esm(() => {
54114
54205
  updatedById: stringType().optional(),
54115
54206
  metadata: lazyType(() => ListDatasetsMetadata$outboundSchema),
54116
54207
  created: dateType().transform((v2) => v2.toISOString()).optional(),
54117
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
54208
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
54118
54209
  }).transform((v2) => {
54119
54210
  return remap(v2, {
54120
54211
  id: "_id",
@@ -54219,7 +54310,7 @@ var init_listdatasources = __esm(() => {
54219
54310
  ListDatasourcesStatus$.outboundSchema = ListDatasourcesStatus$outboundSchema;
54220
54311
  })(ListDatasourcesStatus$ ||= {});
54221
54312
  ListDatasourcesData$inboundSchema = objectType({
54222
- _id: stringType().default("01K2308K60AHQFND3V3BMFTAYF"),
54313
+ _id: stringType().default("01K237R87JFK8MYNRB1NH39MRY"),
54223
54314
  display_name: stringType(),
54224
54315
  description: stringType().optional(),
54225
54316
  status: ListDatasourcesStatus$inboundSchema,
@@ -54242,7 +54333,7 @@ var init_listdatasources = __esm(() => {
54242
54333
  });
54243
54334
  });
54244
54335
  ListDatasourcesData$outboundSchema = objectType({
54245
- id: stringType().default("01K2308K60AHQFND3V3BMFTAYF"),
54336
+ id: stringType().default("01K237R87JFK8MYNRB1NH39MRY"),
54246
54337
  displayName: stringType(),
54247
54338
  description: stringType().optional(),
54248
54339
  status: ListDatasourcesStatus$outboundSchema,
@@ -54565,7 +54656,7 @@ var init_listmodels = __esm(() => {
54565
54656
  });
54566
54657
 
54567
54658
  // src/models/operations/listpromptversions.ts
54568
- 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$;
54659
+ 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$;
54569
54660
  var init_listpromptversions = __esm(() => {
54570
54661
  init_esm();
54571
54662
  init_primitives();
@@ -54609,6 +54700,11 @@ var init_listpromptversions = __esm(() => {
54609
54700
  Medium: "medium",
54610
54701
  High: "high"
54611
54702
  };
54703
+ ListPromptVersionsVerbosity = {
54704
+ Low: "low",
54705
+ Medium: "medium",
54706
+ High: "high"
54707
+ };
54612
54708
  ListPromptVersionsProvider = {
54613
54709
  Cohere: "cohere",
54614
54710
  Openai: "openai",
@@ -54817,6 +54913,12 @@ var init_listpromptversions = __esm(() => {
54817
54913
  ListPromptVersionsReasoningEffort$.inboundSchema = ListPromptVersionsReasoningEffort$inboundSchema;
54818
54914
  ListPromptVersionsReasoningEffort$.outboundSchema = ListPromptVersionsReasoningEffort$outboundSchema;
54819
54915
  })(ListPromptVersionsReasoningEffort$ ||= {});
54916
+ ListPromptVersionsVerbosity$inboundSchema = nativeEnumType(ListPromptVersionsVerbosity);
54917
+ ListPromptVersionsVerbosity$outboundSchema = ListPromptVersionsVerbosity$inboundSchema;
54918
+ ((ListPromptVersionsVerbosity$) => {
54919
+ ListPromptVersionsVerbosity$.inboundSchema = ListPromptVersionsVerbosity$inboundSchema;
54920
+ ListPromptVersionsVerbosity$.outboundSchema = ListPromptVersionsVerbosity$outboundSchema;
54921
+ })(ListPromptVersionsVerbosity$ ||= {});
54820
54922
  ListPromptVersionsModelParameters$inboundSchema = objectType({
54821
54923
  temperature: numberType().optional(),
54822
54924
  maxTokens: numberType().optional(),
@@ -54837,7 +54939,8 @@ var init_listpromptversions = __esm(() => {
54837
54939
  photoRealVersion: ListPromptVersionsPhotoRealVersion$inboundSchema.optional(),
54838
54940
  encoding_format: ListPromptVersionsEncodingFormat$inboundSchema.optional(),
54839
54941
  reasoningEffort: ListPromptVersionsReasoningEffort$inboundSchema.optional(),
54840
- budgetTokens: numberType().optional()
54942
+ budgetTokens: numberType().optional(),
54943
+ verbosity: ListPromptVersionsVerbosity$inboundSchema.optional()
54841
54944
  }).transform((v2) => {
54842
54945
  return remap(v2, {
54843
54946
  encoding_format: "encodingFormat"
@@ -54863,7 +54966,8 @@ var init_listpromptversions = __esm(() => {
54863
54966
  photoRealVersion: ListPromptVersionsPhotoRealVersion$outboundSchema.optional(),
54864
54967
  encodingFormat: ListPromptVersionsEncodingFormat$outboundSchema.optional(),
54865
54968
  reasoningEffort: ListPromptVersionsReasoningEffort$outboundSchema.optional(),
54866
- budgetTokens: numberType().optional()
54969
+ budgetTokens: numberType().optional(),
54970
+ verbosity: ListPromptVersionsVerbosity$outboundSchema.optional()
54867
54971
  }).transform((v2) => {
54868
54972
  return remap(v2, {
54869
54973
  encodingFormat: "encoding_format"
@@ -55753,7 +55857,7 @@ var init_retrievecontact = __esm(() => {
55753
55857
  tags: arrayType(stringType()).optional(),
55754
55858
  metadata: recordType(anyType()).optional(),
55755
55859
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
55756
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
55860
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
55757
55861
  }).transform((v2) => {
55758
55862
  return remap(v2, {
55759
55863
  _id: "id",
@@ -55771,7 +55875,7 @@ var init_retrievecontact = __esm(() => {
55771
55875
  tags: arrayType(stringType()).optional(),
55772
55876
  metadata: recordType(anyType()).optional(),
55773
55877
  created: dateType().transform((v2) => v2.toISOString()).optional(),
55774
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
55878
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
55775
55879
  }).transform((v2) => {
55776
55880
  return remap(v2, {
55777
55881
  id: "_id",
@@ -56348,7 +56452,7 @@ var init_retrievedatapoint = __esm(() => {
56348
56452
  created_by_id: stringType().optional(),
56349
56453
  updated_by_id: stringType().optional(),
56350
56454
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56351
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
56455
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
56352
56456
  }).transform((v2) => {
56353
56457
  return remap(v2, {
56354
56458
  _id: "id",
@@ -56375,7 +56479,7 @@ var init_retrievedatapoint = __esm(() => {
56375
56479
  createdById: stringType().optional(),
56376
56480
  updatedById: stringType().optional(),
56377
56481
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56378
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
56482
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
56379
56483
  }).transform((v2) => {
56380
56484
  return remap(v2, {
56381
56485
  id: "_id",
@@ -56446,7 +56550,7 @@ var init_retrievedataset = __esm(() => {
56446
56550
  updated_by_id: stringType().optional(),
56447
56551
  metadata: lazyType(() => RetrieveDatasetMetadata$inboundSchema),
56448
56552
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
56449
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
56553
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
56450
56554
  }).transform((v2) => {
56451
56555
  return remap(v2, {
56452
56556
  _id: "id",
@@ -56466,7 +56570,7 @@ var init_retrievedataset = __esm(() => {
56466
56570
  updatedById: stringType().optional(),
56467
56571
  metadata: lazyType(() => RetrieveDatasetMetadata$outboundSchema),
56468
56572
  created: dateType().transform((v2) => v2.toISOString()).optional(),
56469
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
56573
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
56470
56574
  }).transform((v2) => {
56471
56575
  return remap(v2, {
56472
56576
  id: "_id",
@@ -56524,7 +56628,7 @@ var init_retrievedatasource = __esm(() => {
56524
56628
  RetrieveDatasourceStatus$.outboundSchema = RetrieveDatasourceStatus$outboundSchema;
56525
56629
  })(RetrieveDatasourceStatus$ ||= {});
56526
56630
  RetrieveDatasourceResponseBody$inboundSchema = objectType({
56527
- _id: stringType().default("01K2308K6131WN4HS5NM7M6PNG"),
56631
+ _id: stringType().default("01K237R87KBWQM4QVHTY1B6NYR"),
56528
56632
  display_name: stringType(),
56529
56633
  description: stringType().optional(),
56530
56634
  status: RetrieveDatasourceStatus$inboundSchema,
@@ -56547,7 +56651,7 @@ var init_retrievedatasource = __esm(() => {
56547
56651
  });
56548
56652
  });
56549
56653
  RetrieveDatasourceResponseBody$outboundSchema = objectType({
56550
- id: stringType().default("01K2308K6131WN4HS5NM7M6PNG"),
56654
+ id: stringType().default("01K237R87KBWQM4QVHTY1B6NYR"),
56551
56655
  displayName: stringType(),
56552
56656
  description: stringType().optional(),
56553
56657
  status: RetrieveDatasourceStatus$outboundSchema,
@@ -57443,7 +57547,7 @@ var init_updatecontact = __esm(() => {
57443
57547
  tags: arrayType(stringType()).optional(),
57444
57548
  metadata: recordType(anyType()).optional(),
57445
57549
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
57446
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
57550
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
57447
57551
  }).transform((v2) => {
57448
57552
  return remap(v2, {
57449
57553
  _id: "id",
@@ -57461,7 +57565,7 @@ var init_updatecontact = __esm(() => {
57461
57565
  tags: arrayType(stringType()).optional(),
57462
57566
  metadata: recordType(anyType()).optional(),
57463
57567
  created: dateType().transform((v2) => v2.toISOString()).optional(),
57464
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
57568
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
57465
57569
  }).transform((v2) => {
57466
57570
  return remap(v2, {
57467
57571
  id: "_id",
@@ -58595,7 +58699,7 @@ var init_updatedatapoint = __esm(() => {
58595
58699
  created_by_id: stringType().optional(),
58596
58700
  updated_by_id: stringType().optional(),
58597
58701
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58598
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
58702
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
58599
58703
  }).transform((v2) => {
58600
58704
  return remap(v2, {
58601
58705
  _id: "id",
@@ -58622,7 +58726,7 @@ var init_updatedatapoint = __esm(() => {
58622
58726
  createdById: stringType().optional(),
58623
58727
  updatedById: stringType().optional(),
58624
58728
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58625
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
58729
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
58626
58730
  }).transform((v2) => {
58627
58731
  return remap(v2, {
58628
58732
  id: "_id",
@@ -58723,7 +58827,7 @@ var init_updatedataset = __esm(() => {
58723
58827
  parent_id: stringType().optional(),
58724
58828
  version: stringType().optional(),
58725
58829
  created: stringType().datetime({ offset: true }).transform((v2) => new Date(v2)).optional(),
58726
- updated: stringType().datetime({ offset: true }).default("2025-08-07T19:31:17.519Z").transform((v2) => new Date(v2))
58830
+ updated: stringType().datetime({ offset: true }).default("2025-08-07T21:42:10.697Z").transform((v2) => new Date(v2))
58727
58831
  }).transform((v2) => {
58728
58832
  return remap(v2, {
58729
58833
  _id: "id",
@@ -58746,7 +58850,7 @@ var init_updatedataset = __esm(() => {
58746
58850
  parentId: stringType().optional(),
58747
58851
  version: stringType().optional(),
58748
58852
  created: dateType().transform((v2) => v2.toISOString()).optional(),
58749
- updated: dateType().default(() => new Date("2025-08-07T19:31:17.519Z")).transform((v2) => v2.toISOString())
58853
+ updated: dateType().default(() => new Date("2025-08-07T21:42:10.697Z")).transform((v2) => v2.toISOString())
58750
58854
  }).transform((v2) => {
58751
58855
  return remap(v2, {
58752
58856
  id: "_id",
@@ -58827,7 +58931,7 @@ var init_updatedatasource = __esm(() => {
58827
58931
  UpdateDatasourceStatus$.outboundSchema = UpdateDatasourceStatus$outboundSchema;
58828
58932
  })(UpdateDatasourceStatus$ ||= {});
58829
58933
  UpdateDatasourceResponseBody$inboundSchema = objectType({
58830
- _id: stringType().default("01K2308K65F7BM69SYYTJXJQY4"),
58934
+ _id: stringType().default("01K237R87MSAGJHXP3HP0V2NWX"),
58831
58935
  display_name: stringType(),
58832
58936
  description: stringType().optional(),
58833
58937
  status: UpdateDatasourceStatus$inboundSchema,
@@ -58850,7 +58954,7 @@ var init_updatedatasource = __esm(() => {
58850
58954
  });
58851
58955
  });
58852
58956
  UpdateDatasourceResponseBody$outboundSchema = objectType({
58853
- id: stringType().default("01K2308K65F7BM69SYYTJXJQY4"),
58957
+ id: stringType().default("01K237R87MSAGJHXP3HP0V2NWX"),
58854
58958
  displayName: stringType(),
58855
58959
  description: stringType().optional(),
58856
58960
  status: UpdateDatasourceStatus$outboundSchema,
@@ -59556,8 +59660,8 @@ var init_updateeval = __esm(() => {
59556
59660
  UpdateEvalResponseBodyPython$inboundSchema = objectType({
59557
59661
  _id: stringType(),
59558
59662
  description: stringType(),
59559
- created: stringType().default("2025-08-07T19:31:19.690Z"),
59560
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
59663
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
59664
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
59561
59665
  guardrail_config: unionType([
59562
59666
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
59563
59667
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema)
@@ -59574,8 +59678,8 @@ var init_updateeval = __esm(() => {
59574
59678
  UpdateEvalResponseBodyPython$outboundSchema = objectType({
59575
59679
  id: stringType(),
59576
59680
  description: stringType(),
59577
- created: stringType().default("2025-08-07T19:31:19.690Z"),
59578
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
59681
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
59682
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
59579
59683
  guardrailConfig: unionType([
59580
59684
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$outboundSchema),
59581
59685
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$outboundSchema)
@@ -59668,8 +59772,8 @@ var init_updateeval = __esm(() => {
59668
59772
  UpdateEvalResponseBodyHTTP$inboundSchema = objectType({
59669
59773
  _id: stringType(),
59670
59774
  description: stringType(),
59671
- created: stringType().default("2025-08-07T19:31:19.690Z"),
59672
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
59775
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
59776
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
59673
59777
  guardrail_config: unionType([
59674
59778
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
59675
59779
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema)
@@ -59689,8 +59793,8 @@ var init_updateeval = __esm(() => {
59689
59793
  UpdateEvalResponseBodyHTTP$outboundSchema = objectType({
59690
59794
  id: stringType(),
59691
59795
  description: stringType(),
59692
- created: stringType().default("2025-08-07T19:31:19.690Z"),
59693
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
59796
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
59797
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
59694
59798
  guardrailConfig: unionType([
59695
59799
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$outboundSchema),
59696
59800
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$outboundSchema)
@@ -59780,8 +59884,8 @@ var init_updateeval = __esm(() => {
59780
59884
  UpdateEvalResponseBodyJSON$inboundSchema = objectType({
59781
59885
  _id: stringType(),
59782
59886
  description: stringType(),
59783
- created: stringType().default("2025-08-07T19:31:19.690Z"),
59784
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
59887
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
59888
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
59785
59889
  guardrail_config: unionType([
59786
59890
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
59787
59891
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema)
@@ -59798,8 +59902,8 @@ var init_updateeval = __esm(() => {
59798
59902
  UpdateEvalResponseBodyJSON$outboundSchema = objectType({
59799
59903
  id: stringType(),
59800
59904
  description: stringType(),
59801
- created: stringType().default("2025-08-07T19:31:19.690Z"),
59802
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
59905
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
59906
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
59803
59907
  guardrailConfig: unionType([
59804
59908
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Number$outboundSchema),
59805
59909
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponse200Boolean$outboundSchema)
@@ -59886,8 +59990,8 @@ var init_updateeval = __esm(() => {
59886
59990
  UpdateEvalResponseBodyLLM$inboundSchema = objectType({
59887
59991
  _id: stringType(),
59888
59992
  description: stringType(),
59889
- created: stringType().default("2025-08-07T19:31:19.690Z"),
59890
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
59993
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
59994
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
59891
59995
  guardrail_config: unionType([
59892
59996
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
59893
59997
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema)
@@ -59905,8 +60009,8 @@ var init_updateeval = __esm(() => {
59905
60009
  UpdateEvalResponseBodyLLM$outboundSchema = objectType({
59906
60010
  id: stringType(),
59907
60011
  description: stringType(),
59908
- created: stringType().default("2025-08-07T19:31:19.690Z"),
59909
- updated: stringType().default("2025-08-07T19:31:19.690Z"),
60012
+ created: stringType().default("2025-08-07T21:42:12.875Z"),
60013
+ updated: stringType().default("2025-08-07T21:42:12.875Z"),
59910
60014
  guardrailConfig: unionType([
59911
60015
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseNumber$outboundSchema),
59912
60016
  lazyType(() => UpdateEvalGuardrailConfigEvalsResponseBoolean$outboundSchema)
@@ -60195,7 +60299,7 @@ var init_updateknowledge = __esm(() => {
60195
60299
  });
60196
60300
 
60197
60301
  // src/models/operations/updateprompt.ts
60198
- 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$;
60302
+ 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$;
60199
60303
  var init_updateprompt = __esm(() => {
60200
60304
  init_esm();
60201
60305
  init_primitives();
@@ -60225,6 +60329,11 @@ var init_updateprompt = __esm(() => {
60225
60329
  Medium: "medium",
60226
60330
  High: "high"
60227
60331
  };
60332
+ UpdatePromptVerbosity = {
60333
+ Low: "low",
60334
+ Medium: "medium",
60335
+ High: "high"
60336
+ };
60228
60337
  UpdatePromptProvider = {
60229
60338
  Cohere: "cohere",
60230
60339
  Openai: "openai",
@@ -60341,6 +60450,11 @@ var init_updateprompt = __esm(() => {
60341
60450
  Medium: "medium",
60342
60451
  High: "high"
60343
60452
  };
60453
+ UpdatePromptPromptsVerbosity = {
60454
+ Low: "low",
60455
+ Medium: "medium",
60456
+ High: "high"
60457
+ };
60344
60458
  UpdatePromptPromptsProvider = {
60345
60459
  Cohere: "cohere",
60346
60460
  Openai: "openai",
@@ -60509,6 +60623,12 @@ var init_updateprompt = __esm(() => {
60509
60623
  UpdatePromptReasoningEffort$.inboundSchema = UpdatePromptReasoningEffort$inboundSchema;
60510
60624
  UpdatePromptReasoningEffort$.outboundSchema = UpdatePromptReasoningEffort$outboundSchema;
60511
60625
  })(UpdatePromptReasoningEffort$ ||= {});
60626
+ UpdatePromptVerbosity$inboundSchema = nativeEnumType(UpdatePromptVerbosity);
60627
+ UpdatePromptVerbosity$outboundSchema = UpdatePromptVerbosity$inboundSchema;
60628
+ ((UpdatePromptVerbosity$) => {
60629
+ UpdatePromptVerbosity$.inboundSchema = UpdatePromptVerbosity$inboundSchema;
60630
+ UpdatePromptVerbosity$.outboundSchema = UpdatePromptVerbosity$outboundSchema;
60631
+ })(UpdatePromptVerbosity$ ||= {});
60512
60632
  UpdatePromptModelParameters$inboundSchema = objectType({
60513
60633
  temperature: numberType().optional(),
60514
60634
  maxTokens: numberType().optional(),
@@ -60529,7 +60649,8 @@ var init_updateprompt = __esm(() => {
60529
60649
  photoRealVersion: UpdatePromptPhotoRealVersion$inboundSchema.optional(),
60530
60650
  encoding_format: UpdatePromptEncodingFormat$inboundSchema.optional(),
60531
60651
  reasoningEffort: UpdatePromptReasoningEffort$inboundSchema.optional(),
60532
- budgetTokens: numberType().optional()
60652
+ budgetTokens: numberType().optional(),
60653
+ verbosity: UpdatePromptVerbosity$inboundSchema.optional()
60533
60654
  }).transform((v2) => {
60534
60655
  return remap(v2, {
60535
60656
  encoding_format: "encodingFormat"
@@ -60555,7 +60676,8 @@ var init_updateprompt = __esm(() => {
60555
60676
  photoRealVersion: UpdatePromptPhotoRealVersion$outboundSchema.optional(),
60556
60677
  encodingFormat: UpdatePromptEncodingFormat$outboundSchema.optional(),
60557
60678
  reasoningEffort: UpdatePromptReasoningEffort$outboundSchema.optional(),
60558
- budgetTokens: numberType().optional()
60679
+ budgetTokens: numberType().optional(),
60680
+ verbosity: UpdatePromptVerbosity$outboundSchema.optional()
60559
60681
  }).transform((v2) => {
60560
60682
  return remap(v2, {
60561
60683
  encodingFormat: "encoding_format"
@@ -61017,6 +61139,12 @@ var init_updateprompt = __esm(() => {
61017
61139
  UpdatePromptPromptsReasoningEffort$.inboundSchema = UpdatePromptPromptsReasoningEffort$inboundSchema;
61018
61140
  UpdatePromptPromptsReasoningEffort$.outboundSchema = UpdatePromptPromptsReasoningEffort$outboundSchema;
61019
61141
  })(UpdatePromptPromptsReasoningEffort$ ||= {});
61142
+ UpdatePromptPromptsVerbosity$inboundSchema = nativeEnumType(UpdatePromptPromptsVerbosity);
61143
+ UpdatePromptPromptsVerbosity$outboundSchema = UpdatePromptPromptsVerbosity$inboundSchema;
61144
+ ((UpdatePromptPromptsVerbosity$) => {
61145
+ UpdatePromptPromptsVerbosity$.inboundSchema = UpdatePromptPromptsVerbosity$inboundSchema;
61146
+ UpdatePromptPromptsVerbosity$.outboundSchema = UpdatePromptPromptsVerbosity$outboundSchema;
61147
+ })(UpdatePromptPromptsVerbosity$ ||= {});
61020
61148
  UpdatePromptPromptsModelParameters$inboundSchema = objectType({
61021
61149
  temperature: numberType().optional(),
61022
61150
  maxTokens: numberType().optional(),
@@ -61037,7 +61165,8 @@ var init_updateprompt = __esm(() => {
61037
61165
  photoRealVersion: UpdatePromptPromptsPhotoRealVersion$inboundSchema.optional(),
61038
61166
  encoding_format: UpdatePromptPromptsEncodingFormat$inboundSchema.optional(),
61039
61167
  reasoningEffort: UpdatePromptPromptsReasoningEffort$inboundSchema.optional(),
61040
- budgetTokens: numberType().optional()
61168
+ budgetTokens: numberType().optional(),
61169
+ verbosity: UpdatePromptPromptsVerbosity$inboundSchema.optional()
61041
61170
  }).transform((v2) => {
61042
61171
  return remap(v2, {
61043
61172
  encoding_format: "encodingFormat"
@@ -61063,7 +61192,8 @@ var init_updateprompt = __esm(() => {
61063
61192
  photoRealVersion: UpdatePromptPromptsPhotoRealVersion$outboundSchema.optional(),
61064
61193
  encodingFormat: UpdatePromptPromptsEncodingFormat$outboundSchema.optional(),
61065
61194
  reasoningEffort: UpdatePromptPromptsReasoningEffort$outboundSchema.optional(),
61066
- budgetTokens: numberType().optional()
61195
+ budgetTokens: numberType().optional(),
61196
+ verbosity: UpdatePromptPromptsVerbosity$outboundSchema.optional()
61067
61197
  }).transform((v2) => {
61068
61198
  return remap(v2, {
61069
61199
  encodingFormat: "encoding_format"
@@ -76066,7 +76196,7 @@ var init_remoteconfigsRetrieve2 = __esm(() => {
76066
76196
  function createMCPServer(deps) {
76067
76197
  const server = new McpServer({
76068
76198
  name: "Orq",
76069
- version: "3.10.9"
76199
+ version: "3.10.10"
76070
76200
  });
76071
76201
  const client = new OrqCore({
76072
76202
  apiKey: deps.apiKey,
@@ -77474,7 +77604,7 @@ var routes = rn({
77474
77604
  var app = Ve(routes, {
77475
77605
  name: "mcp",
77476
77606
  versionInfo: {
77477
- currentVersion: "3.10.9"
77607
+ currentVersion: "3.10.10"
77478
77608
  }
77479
77609
  });
77480
77610
  _t(app, process3.argv.slice(2), buildContext(process3));
@@ -77482,5 +77612,5 @@ export {
77482
77612
  app
77483
77613
  };
77484
77614
 
77485
- //# debugId=88BFF0D9E12505BE64756E2164756E21
77615
+ //# debugId=23D4E85A6EF86E4464756E2164756E21
77486
77616
  //# sourceMappingURL=mcp-server.js.map