Spaces:
Running on Zero
Running on Zero
| """hackathon-ia-visualnovel — an AI-improvised anime visual novel (Thousand Token Wood). | |
| The model proposes, code disposes: the LLM returns typed directives, `state.apply_directives` | |
| owns all mutation, `.md` files are a derived view. See docs/ARCHITECTURE.md. | |
| """ | |
| from __future__ import annotations | |
| from .engine import Engine | |
| from .schemas import GameState, SetupForm, ViewState | |
| __all__ = ["Engine", "GameState", "SetupForm", "ViewState"] | |
| __version__ = "0.1.0" | |