Ajeya95 commited on
Commit
385cf23
·
verified ·
1 Parent(s): 4aa0fa4

Align docs around LLM-driven scenario generation

Browse files
Files changed (1) hide show
  1. docs/create_demo_video.py +3 -3
docs/create_demo_video.py CHANGED
@@ -54,12 +54,12 @@ def write_frames(writer, image: Image.Image, seconds: float) -> None:
54
 
55
  def main() -> None:
56
  cards = [
57
- (title_card("LifeChoice Simulator", "A causal decision simulator, not another chatbot.\nQwen2.5-7B + Gradio + deterministic state."), 3.0),
58
  (screenshot_card("onboarding.png", "Start in seconds", "One concrete calibration answer takes you directly into the simulation."), 4.0),
59
- (screenshot_card("simulation.png", "Immediate first scene", "The opening is deterministic; later nodes prefetch in the background."), 4.0),
60
  (screenshot_card("cascade.png", "Choices return later", "Facts, obligations, and closed options make branches materially different.", 500), 4.0),
61
  (screenshot_card("report.png", "A report grounded in behavior", "Five metrics, three cascade moments, and a bounded causal ledger.", 500), 4.0),
62
- (title_card("Small model. Real state.", "7.616B parameters. No 32B+ fallback.\nBuilt with Codex for the Build Small Hackathon."), 3.0),
63
  ]
64
  with imageio.get_writer(
65
  OUT,
 
54
 
55
  def main() -> None:
56
  cards = [
57
+ (title_card("LifeChoice Simulator", "An LLM-powered causal decision simulator.\nQwen2.5-7B + Gradio + deterministic state."), 3.0),
58
  (screenshot_card("onboarding.png", "Start in seconds", "One concrete calibration answer takes you directly into the simulation."), 4.0),
59
+ (screenshot_card("simulation.png", "Adaptive future nodes", "A 7B model generates bounded scenarios while deterministic state keeps score."), 4.0),
60
  (screenshot_card("cascade.png", "Choices return later", "Facts, obligations, and closed options make branches materially different.", 500), 4.0),
61
  (screenshot_card("report.png", "A report grounded in behavior", "Five metrics, three cascade moments, and a bounded causal ledger.", 500), 4.0),
62
+ (title_card("Small model. Real state.", "7.616B scenario model. No 32B+ fallback model.\nBuilt with Codex for the Build Small Hackathon."), 3.0),
63
  ]
64
  with imageio.get_writer(
65
  OUT,