@wix/auto_sdk_ai-gateway_prompts 1.0.4 → 1.0.6

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.
@@ -5169,6 +5169,11 @@ interface VideoInferenceRequest {
5169
5169
  numberResults?: number | null;
5170
5170
  /** Contains provider-specific configuration settings that customize the behavior of different AI models and services. */
5171
5171
  providerSettings?: Record<string, any> | null;
5172
+ /**
5173
+ * Skip polling flag - if set to false, will poll until video generation is complete
5174
+ * If not set or true, returns immediately with task UUID for manual polling
5175
+ */
5176
+ skipPolling?: boolean | null;
5172
5177
  }
5173
5178
  declare enum OutputFormat {
5174
5179
  UNKNOWN_OUTPUT_FORMAT = "UNKNOWN_OUTPUT_FORMAT",
@@ -5279,10 +5284,11 @@ declare enum V1ResponsesModel {
5279
5284
  GPT_5_MINI_2025_08_07_RESPONSES = "GPT_5_MINI_2025_08_07_RESPONSES",
5280
5285
  GPT_5_NANO_2025_08_07_RESPONSES = "GPT_5_NANO_2025_08_07_RESPONSES",
5281
5286
  O3_PRO_2025_06_10 = "O3_PRO_2025_06_10",
5282
- O3_DEEP_RESEARCH_2025_06_26 = "O3_DEEP_RESEARCH_2025_06_26"
5287
+ O3_DEEP_RESEARCH_2025_06_26 = "O3_DEEP_RESEARCH_2025_06_26",
5288
+ GPT_5_CODEX = "GPT_5_CODEX"
5283
5289
  }
5284
5290
  /** @enumType */
5285
- type V1ResponsesModelWithLiterals = V1ResponsesModel | 'MODEL_UNSPECIFIED' | 'GPT_5_2025_08_07_RESPONSES' | 'GPT_5_MINI_2025_08_07_RESPONSES' | 'GPT_5_NANO_2025_08_07_RESPONSES' | 'O3_PRO_2025_06_10' | 'O3_DEEP_RESEARCH_2025_06_26';
5291
+ type V1ResponsesModelWithLiterals = V1ResponsesModel | 'MODEL_UNSPECIFIED' | 'GPT_5_2025_08_07_RESPONSES' | 'GPT_5_MINI_2025_08_07_RESPONSES' | 'GPT_5_NANO_2025_08_07_RESPONSES' | 'O3_PRO_2025_06_10' | 'O3_DEEP_RESEARCH_2025_06_26' | 'GPT_5_CODEX';
5286
5292
  interface V1ResponsesInputItem extends V1ResponsesInputItemItemOneOf {
5287
5293
  /**
5288
5294
  * A message input to the model with a role indicating instruction following hierarchy.
@@ -1022,6 +1022,7 @@ var V1ResponsesModel = /* @__PURE__ */ ((V1ResponsesModel2) => {
1022
1022
  V1ResponsesModel2["GPT_5_NANO_2025_08_07_RESPONSES"] = "GPT_5_NANO_2025_08_07_RESPONSES";
1023
1023
  V1ResponsesModel2["O3_PRO_2025_06_10"] = "O3_PRO_2025_06_10";
1024
1024
  V1ResponsesModel2["O3_DEEP_RESEARCH_2025_06_26"] = "O3_DEEP_RESEARCH_2025_06_26";
1025
+ V1ResponsesModel2["GPT_5_CODEX"] = "GPT_5_CODEX";
1025
1026
  return V1ResponsesModel2;
1026
1027
  })(V1ResponsesModel || {});
1027
1028
  var ResponsesInputMessageResponsesMessageRole = /* @__PURE__ */ ((ResponsesInputMessageResponsesMessageRole2) => {