@vanillaskyai/video 0.7.0 → 0.7.1
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
|
@@ -4,6 +4,13 @@ VanillaSky follows semantic versioning. This changelog begins with the 0.1 beta.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.7.1
|
|
8
|
+
|
|
9
|
+
- Keeps Full AI video responses running when a text provider repeats narration
|
|
10
|
+
beside a scene that already owns the canonical line. The redundant copy is
|
|
11
|
+
discarded before strict plan validation instead of aborting after the first
|
|
12
|
+
generated clip.
|
|
13
|
+
|
|
7
14
|
## 0.7.0
|
|
8
15
|
|
|
9
16
|
- Makes blank-folder onboarding one safe scoped command:
|
|
@@ -61,8 +61,8 @@ function parsePlanLine(line) {
|
|
|
61
61
|
delete planPart.timing;
|
|
62
62
|
repaired = true;
|
|
63
63
|
}
|
|
64
|
-
if (object.narration != null
|
|
65
|
-
repairedScene.narration = object.narration;
|
|
64
|
+
if (object.narration != null) {
|
|
65
|
+
if (!("narration" in scene)) repairedScene.narration = object.narration;
|
|
66
66
|
delete planPart.narration;
|
|
67
67
|
repaired = true;
|
|
68
68
|
}
|
package/dist/server.js
CHANGED
package/dist/test.js
CHANGED
|
@@ -234,7 +234,7 @@ async function* simulateVideoStream(parts, options = {}) {
|
|
|
234
234
|
throw new Error("Simulation timeoutMs must be a non-negative finite number");
|
|
235
235
|
}
|
|
236
236
|
const { createVideo } = await import("./compose-video-PD6LKKRK.js");
|
|
237
|
-
const { createTextDeltaVideoPlanner } = await import("./text-stream-
|
|
237
|
+
const { createTextDeltaVideoPlanner } = await import("./text-stream-ROTNGSD4.js");
|
|
238
238
|
const { BUILTIN_SERVER_TEMPLATE_KIT } = await import("./builtin-server-KB7FKF6A.js");
|
|
239
239
|
const { createTemplateSceneValidator } = await import("./validate-T7GBU2YF.js");
|
|
240
240
|
const controller = new AbortController();
|
package/package.json
CHANGED