@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/es/meta.mjs CHANGED
@@ -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) => {