@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.
@@ -7680,6 +7680,11 @@ interface VideoInferenceRequest {
7680
7680
  height?: number | null;
7681
7681
  /** The AI model to use for video generation. */
7682
7682
  model?: VideoModelWithLiterals;
7683
+ /**
7684
+ * Video model as a string
7685
+ * @maxLength 1000
7686
+ */
7687
+ modelId?: string | null;
7683
7688
  /**
7684
7689
  * The length of the generated video in seconds.
7685
7690
  * @min 1
@@ -7746,10 +7751,11 @@ declare enum VideoModel {
7746
7751
  UNKNOWN_VIDEO_MODEL = "UNKNOWN_VIDEO_MODEL",
7747
7752
  SEEDANCE_1_0_PRO = "SEEDANCE_1_0_PRO",
7748
7753
  SEEDANCE_1_0_LITE = "SEEDANCE_1_0_LITE",
7749
- SEEDANCE_1_0_PRO_FAST = "SEEDANCE_1_0_PRO_FAST"
7754
+ SEEDANCE_1_0_PRO_FAST = "SEEDANCE_1_0_PRO_FAST",
7755
+ FROM_MODEL_ID = "FROM_MODEL_ID"
7750
7756
  }
7751
7757
  /** @enumType */
7752
- type VideoModelWithLiterals = VideoModel | 'UNKNOWN_VIDEO_MODEL' | 'SEEDANCE_1_0_PRO' | 'SEEDANCE_1_0_LITE' | 'SEEDANCE_1_0_PRO_FAST';
7758
+ type VideoModelWithLiterals = VideoModel | 'UNKNOWN_VIDEO_MODEL' | 'SEEDANCE_1_0_PRO' | 'SEEDANCE_1_0_LITE' | 'SEEDANCE_1_0_PRO_FAST' | 'FROM_MODEL_ID';
7753
7759
  interface V1OpenAiResponsesRequest {
7754
7760
  /** ID of the model to use. */
7755
7761
  model?: V1ResponsesModelWithLiterals;
@@ -1450,6 +1450,7 @@ var VideoModel = /* @__PURE__ */ ((VideoModel2) => {
1450
1450
  VideoModel2["SEEDANCE_1_0_PRO"] = "SEEDANCE_1_0_PRO";
1451
1451
  VideoModel2["SEEDANCE_1_0_LITE"] = "SEEDANCE_1_0_LITE";
1452
1452
  VideoModel2["SEEDANCE_1_0_PRO_FAST"] = "SEEDANCE_1_0_PRO_FAST";
1453
+ VideoModel2["FROM_MODEL_ID"] = "FROM_MODEL_ID";
1453
1454
  return VideoModel2;
1454
1455
  })(VideoModel || {});
1455
1456
  var ResponsesInputMessageResponsesMessageRole = /* @__PURE__ */ ((ResponsesInputMessageResponsesMessageRole2) => {