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