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