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