@koda-sl/baker-cli 0.81.1 → 0.82.0

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/dist/cli.js CHANGED
@@ -9,7 +9,7 @@ import {
9
9
  defaultRegistry,
10
10
  generateCatalog,
11
11
  validateCanvasDeep
12
- } from "./chunk-NBNUNCY7.js";
12
+ } from "./chunk-KIL2ZJST.js";
13
13
 
14
14
  // src/cli.ts
15
15
  import { defineCommand as defineCommand141, runMain } from "citty";
@@ -9686,7 +9686,11 @@ function fail2(code, message) {
9686
9686
  function resolveModels2(args) {
9687
9687
  const pick = (flag, kind, fallback) => args[flag] ? String(args[flag]) : resolveModel2(kind, fallback);
9688
9688
  return {
9689
- deconstructModel: pick("deconstruct-model", "video_deconstruct", "~google/gemini-pro-latest"),
9689
+ // Flash by default: ~2- faster per call than Pro, which keeps each
9690
+ // per-scene deconstruct step well inside the action time budget and turns a
9691
+ // ~9 min run into ~3-4 min. Override with --deconstruct-model
9692
+ // ~google/gemini-pro-latest for the densest extraction when speed matters less.
9693
+ deconstructModel: pick("deconstruct-model", "video_deconstruct", "~google/gemini-flash-latest"),
9690
9694
  selectModel: pick("select-model", "text_generate", "~google/gemini-flash-latest"),
9691
9695
  // Default to the strongest image model (matches the static-ad scaffold); the
9692
9696
  // frame generators need the most faithful text/identity reproduction. Override