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