@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 && !("narration" in scene)) {
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
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createTextDeltaVideoPlanner
3
- } from "./chunk-RXHW4EP4.js";
3
+ } from "./chunk-LLPMVDJZ.js";
4
4
  import {
5
5
  createVideo
6
6
  } from "./chunk-RE4IMWJR.js";
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-FW4BLBAL.js");
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();
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  createTextDeltaVideoPlanner
3
- } from "./chunk-RXHW4EP4.js";
3
+ } from "./chunk-LLPMVDJZ.js";
4
4
  import "./chunk-E7CL7UPB.js";
5
5
  import "./chunk-MMUXVA47.js";
6
6
  import "./chunk-AOWSXU2K.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vanillaskyai/video",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Open-source voice-and-video chat SDK for AI applications.",
5
5
  "keywords": [
6
6
  "video-chat",
@@ -9,7 +9,7 @@
9
9
  "preview": "vite preview"
10
10
  },
11
11
  "dependencies": {
12
- "@vanillaskyai/video": "0.7.0",
12
+ "@vanillaskyai/video": "0.7.1",
13
13
  "react": "^19.2.8",
14
14
  "react-dom": "^19.2.8",
15
15
  "@ai-sdk/anthropic": "^3.0.0",