@ai-sdk/provider 3.0.11 → 3.0.12
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/CHANGELOG.md
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -3888,6 +3888,10 @@ type VideoModelV3CallOptions = {
|
|
|
3888
3888
|
* The image serves as the starting frame that the model will animate.
|
|
3889
3889
|
*/
|
|
3890
3890
|
image: VideoModelV3File | undefined;
|
|
3891
|
+
/**
|
|
3892
|
+
* Whether the model should generate audio alongside the video.
|
|
3893
|
+
*/
|
|
3894
|
+
generateAudio: boolean | undefined;
|
|
3891
3895
|
/**
|
|
3892
3896
|
* Additional provider-specific options that are passed through to the provider
|
|
3893
3897
|
* as body parameters.
|
package/dist/index.d.ts
CHANGED
|
@@ -3888,6 +3888,10 @@ type VideoModelV3CallOptions = {
|
|
|
3888
3888
|
* The image serves as the starting frame that the model will animate.
|
|
3889
3889
|
*/
|
|
3890
3890
|
image: VideoModelV3File | undefined;
|
|
3891
|
+
/**
|
|
3892
|
+
* Whether the model should generate audio alongside the video.
|
|
3893
|
+
*/
|
|
3894
|
+
generateAudio: boolean | undefined;
|
|
3891
3895
|
/**
|
|
3892
3896
|
* Additional provider-specific options that are passed through to the provider
|
|
3893
3897
|
* as body parameters.
|
package/package.json
CHANGED
|
@@ -54,6 +54,11 @@ export type VideoModelV3CallOptions = {
|
|
|
54
54
|
*/
|
|
55
55
|
image: VideoModelV3File | undefined;
|
|
56
56
|
|
|
57
|
+
/**
|
|
58
|
+
* Whether the model should generate audio alongside the video.
|
|
59
|
+
*/
|
|
60
|
+
generateAudio: boolean | undefined;
|
|
61
|
+
|
|
57
62
|
/**
|
|
58
63
|
* Additional provider-specific options that are passed through to the provider
|
|
59
64
|
* as body parameters.
|