@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.
@@ -4813,6 +4813,12 @@ interface Inputs {
4813
4813
  * @maxLength 10000
4814
4814
  */
4815
4815
  seedImage?: string | null;
4816
+ /**
4817
+ * Specifies the input video to be used for the generation process.
4818
+ * Must be a URL pointing to the video. The video must be accessible publicly.
4819
+ * @maxLength 10000
4820
+ */
4821
+ video?: string | null;
4816
4822
  }
4817
4823
  interface InvokeMlPlatformLlamaModelRequest {
4818
4824
  /**
@@ -5684,7 +5690,7 @@ interface VideoInferenceRequest {
5684
5690
  /**
5685
5691
  * The length of the generated video in seconds.
5686
5692
  * @min 1
5687
- * @max 10
5693
+ * @max 300
5688
5694
  */
5689
5695
  duration?: number | null;
5690
5696
  /**
@@ -5733,6 +5739,8 @@ interface VideoInferenceRequest {
5733
5739
  skipPolling?: boolean | null;
5734
5740
  /** Inputs for the video generation process. */
5735
5741
  inputs?: VideoInputs;
5742
+ /** Contains additional settings that customize the behavior of the generation process. */
5743
+ settings?: Record<string, any> | null;
5736
5744
  }
5737
5745
  declare enum OutputFormat {
5738
5746
  UNKNOWN_OUTPUT_FORMAT = "UNKNOWN_OUTPUT_FORMAT",
@@ -5795,6 +5803,12 @@ interface VideoInputs {
5795
5803
  * @maxLength 100000
5796
5804
  */
5797
5805
  referenceVideos?: string[] | null;
5806
+ /**
5807
+ * Specifies the input video to be used for the generation process.
5808
+ * Must be a URL pointing to the video. The video must be accessible publicly.
5809
+ * @maxLength 100000
5810
+ */
5811
+ video?: string | null;
5798
5812
  }
5799
5813
  interface V1OpenAiResponsesRequest {
5800
5814
  /** ID of the model to use. */
@@ -7877,7 +7891,7 @@ interface GatewayContentBlockTypeOneOf {
7877
7891
  interface TextContent {
7878
7892
  /**
7879
7893
  * Generated text
7880
- * @maxLength 1000000
7894
+ * @maxLength 10000000
7881
7895
  */
7882
7896
  generatedText?: string | null;
7883
7897
  /**