惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
小众软件
小众软件
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园_首页
N
Netflix TechBlog - Medium
B
Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Your Story: Local Gemma 4 Interactive Fiction That Rememb...
Tuan Dinh · 2026-05-20 · via DEV Community

This is a submission for the Gemma 4 Challenge: Build with Gemma 4

What I Built

Your Story is a Flutter mobile app for interactive fiction powered by local Gemma 4 models.

The app starts from structured story templates, then lets players act in natural language. Instead of branching only through fixed choices, the player can type actions like "I hide the beans and tell Mother the truth" or "I ask the giant's wife for help." The story engine evaluates what is possible, Gemma 4 writes the next passage, and deterministic state logic records permanent consequences.

The goal is to make AI storytelling feel less like a loose chatbot and more like a playable novel:

  • formal beat structure keeps pacing coherent
  • entity state tracks relationships, inventory, locations, and decisions
  • Gemma 4 writes contextual prose and dialogue
  • autosave preserves each turn
  • local inference keeps core play available without depending on a server

The first story is Jack and the Beanstalk, with 13 beats, 6 characters, 7 locations, and a state model for choices such as trading the cow, taking treasure, earning trust, or angering the giant.

Demo

Video walkthrough: https://github.com/tuandinh0801/your-story/blob/main/docs/assets/your-story-mobile-demo.mp4

Your Story screenshots

Planned walkthrough:

  • open the story library
  • start Jack and the Beanstalk
  • choose local Gemma 4 mode
  • play several natural-language turns
  • show character and journal state updating from choices
  • show router/model status for local and cloud agent routes

Code

Repository: https://github.com/tuandinh0801/your-story/tree/main

How I Used Gemma 4

Gemma 4 powers the core storytelling loop. It is not just used for a side feature.

I use two local Gemma 4 LiteRT-LM models through flutter_gemma:

Model Use Reason
Gemma 4 E2B IT fast local turns good fit for latency-sensitive narration, action interpretation, and summaries
Gemma 4 E4B IT quality local turns better fit for richer prose and reasoning-heavy story moments

The app also has a Firebase AI cloud route for fallback and enhanced tasks. Each agent request declares a routing policy:

  • local fast for latency-sensitive story turns
  • local quality for richer narration
  • cloud quality for complex branching or when local is unavailable
  • cloud image route for visual generation work

The router records which backend and model served each request. That makes the multi-agent system visible for debugging while keeping the reader experience simple.

Your Story agent architecture

Why Gemma 4 fits this project

Interactive fiction needs low-latency language generation, but it also needs long-running coherence. A pure cloud chatbot can produce prose, but it can drift from prior choices. A fixed branching engine can preserve state, but it limits the player's imagination.

Your Story splits the job:

  • Gemma 4 handles prose, dialogue, interpretation, and summaries.
  • Dart engine code handles state, preconditions, effects, beat progression, persistence, and validation.
  • Context packing keeps the current world, beat, memories, and action inside the model budget.

This lets Gemma 4 do the creative language work while the app keeps the world consistent.

What makes it original

The app treats a story like a living state machine, not a chat transcript. The AI receives story rules and state context, then the engine validates what changed. Choices become durable facts that later turns can reference.

For example, if Jack trades Daisy for beans, that inventory change and relationship impact are stored as state. Later narration can reflect Mother's disappointment or trust because those values are no longer just text in an earlier paragraph.

Technical highlights

  • Flutter mobile app with Riverpod.
  • Local Gemma 4 E2B/E4B through flutter_gemma.
  • Firebase AI fallback route.
  • Drift for relational story state.
  • Hive for long prose and summaries.
  • Pure Dart engine for beat progression and effect validation.
  • Template-driven story format.
  • Mobile design system built around a calm storybook reading experience.