ai 6.0.211 → 6.0.213
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 +18 -0
- package/dist/index.d.mts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/dist/internal/index.js +1 -1
- package/dist/internal/index.mjs +1 -1
- package/docs/03-ai-sdk-core/38-video-generation.mdx +15 -0
- package/docs/07-reference/01-ai-sdk-core/13-generate-video.mdx +7 -0
- package/package.json +4 -4
- package/src/generate-video/generate-video.ts +8 -0
package/dist/index.mjs
CHANGED
|
@@ -1171,7 +1171,7 @@ import {
|
|
|
1171
1171
|
} from "@ai-sdk/provider-utils";
|
|
1172
1172
|
|
|
1173
1173
|
// src/version.ts
|
|
1174
|
-
var VERSION = true ? "6.0.
|
|
1174
|
+
var VERSION = true ? "6.0.213" : "0.0.0-test";
|
|
1175
1175
|
|
|
1176
1176
|
// src/util/download/download.ts
|
|
1177
1177
|
var download = async ({
|
|
@@ -11842,6 +11842,7 @@ async function experimental_generateVideo({
|
|
|
11842
11842
|
duration,
|
|
11843
11843
|
fps,
|
|
11844
11844
|
seed,
|
|
11845
|
+
generateAudio,
|
|
11845
11846
|
providerOptions,
|
|
11846
11847
|
maxRetries: maxRetriesArg,
|
|
11847
11848
|
abortSignal,
|
|
@@ -11876,6 +11877,7 @@ async function experimental_generateVideo({
|
|
|
11876
11877
|
duration,
|
|
11877
11878
|
fps,
|
|
11878
11879
|
seed,
|
|
11880
|
+
generateAudio,
|
|
11879
11881
|
image,
|
|
11880
11882
|
providerOptions: providerOptions != null ? providerOptions : {},
|
|
11881
11883
|
headers: headersWithUserAgent,
|