@wix/auto_sdk_ai-gateway_generators 1.0.87 → 1.0.89

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.
@@ -4816,6 +4816,12 @@ interface Inputs {
4816
4816
  * @maxLength 10000
4817
4817
  */
4818
4818
  seedImage?: string | null;
4819
+ /**
4820
+ * Specifies the input video to be used for the generation process.
4821
+ * Must be a URL pointing to the video. The video must be accessible publicly.
4822
+ * @maxLength 10000
4823
+ */
4824
+ video?: string | null;
4819
4825
  }
4820
4826
  interface InvokeMlPlatformLlamaModelRequest {
4821
4827
  /**
@@ -5687,7 +5693,7 @@ interface VideoInferenceRequest {
5687
5693
  /**
5688
5694
  * The length of the generated video in seconds.
5689
5695
  * @min 1
5690
- * @max 10
5696
+ * @max 300
5691
5697
  */
5692
5698
  duration?: number | null;
5693
5699
  /**
@@ -5736,6 +5742,8 @@ interface VideoInferenceRequest {
5736
5742
  skipPolling?: boolean | null;
5737
5743
  /** Inputs for the video generation process. */
5738
5744
  inputs?: VideoInputs;
5745
+ /** Contains additional settings that customize the behavior of the generation process. */
5746
+ settings?: Record<string, any> | null;
5739
5747
  }
5740
5748
  declare enum OutputFormat {
5741
5749
  UNKNOWN_OUTPUT_FORMAT = "UNKNOWN_OUTPUT_FORMAT",
@@ -5798,6 +5806,12 @@ interface VideoInputs {
5798
5806
  * @maxLength 100000
5799
5807
  */
5800
5808
  referenceVideos?: string[] | null;
5809
+ /**
5810
+ * Specifies the input video to be used for the generation process.
5811
+ * Must be a URL pointing to the video. The video must be accessible publicly.
5812
+ * @maxLength 100000
5813
+ */
5814
+ video?: string | null;
5801
5815
  }
5802
5816
  interface V1OpenAiResponsesRequest {
5803
5817
  /** ID of the model to use. */
@@ -7880,7 +7894,7 @@ interface GatewayContentBlockTypeOneOf {
7880
7894
  interface TextContent {
7881
7895
  /**
7882
7896
  * Generated text
7883
- * @maxLength 1000000
7897
+ * @maxLength 10000000
7884
7898
  */
7885
7899
  generatedText?: string | null;
7886
7900
  /**