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