@wix/auto_sdk_ai-gateway_prompts 1.0.16 → 1.0.18

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.
@@ -7682,6 +7682,11 @@ interface VideoInferenceRequest {
7682
7682
  height?: number | null;
7683
7683
  /** The AI model to use for video generation. */
7684
7684
  model?: VideoModelWithLiterals;
7685
+ /**
7686
+ * Video model as a string
7687
+ * @maxLength 1000
7688
+ */
7689
+ modelId?: string | null;
7685
7690
  /**
7686
7691
  * The length of the generated video in seconds.
7687
7692
  * @min 1
@@ -7748,10 +7753,11 @@ declare enum VideoModel {
7748
7753
  UNKNOWN_VIDEO_MODEL = "UNKNOWN_VIDEO_MODEL",
7749
7754
  SEEDANCE_1_0_PRO = "SEEDANCE_1_0_PRO",
7750
7755
  SEEDANCE_1_0_LITE = "SEEDANCE_1_0_LITE",
7751
- SEEDANCE_1_0_PRO_FAST = "SEEDANCE_1_0_PRO_FAST"
7756
+ SEEDANCE_1_0_PRO_FAST = "SEEDANCE_1_0_PRO_FAST",
7757
+ FROM_MODEL_ID = "FROM_MODEL_ID"
7752
7758
  }
7753
7759
  /** @enumType */
7754
- type VideoModelWithLiterals = VideoModel | 'UNKNOWN_VIDEO_MODEL' | 'SEEDANCE_1_0_PRO' | 'SEEDANCE_1_0_LITE' | 'SEEDANCE_1_0_PRO_FAST';
7760
+ type VideoModelWithLiterals = VideoModel | 'UNKNOWN_VIDEO_MODEL' | 'SEEDANCE_1_0_PRO' | 'SEEDANCE_1_0_LITE' | 'SEEDANCE_1_0_PRO_FAST' | 'FROM_MODEL_ID';
7755
7761
  interface V1OpenAiResponsesRequest {
7756
7762
  /** ID of the model to use. */
7757
7763
  model?: V1ResponsesModelWithLiterals;
package/build/cjs/meta.js CHANGED
@@ -1550,6 +1550,7 @@ var VideoModel = /* @__PURE__ */ ((VideoModel2) => {
1550
1550
  VideoModel2["SEEDANCE_1_0_PRO"] = "SEEDANCE_1_0_PRO";
1551
1551
  VideoModel2["SEEDANCE_1_0_LITE"] = "SEEDANCE_1_0_LITE";
1552
1552
  VideoModel2["SEEDANCE_1_0_PRO_FAST"] = "SEEDANCE_1_0_PRO_FAST";
1553
+ VideoModel2["FROM_MODEL_ID"] = "FROM_MODEL_ID";
1553
1554
  return VideoModel2;
1554
1555
  })(VideoModel || {});
1555
1556
  var ResponsesInputMessageResponsesMessageRole = /* @__PURE__ */ ((ResponsesInputMessageResponsesMessageRole2) => {