global-leaders / engine /__init__.py
Leonardo Camilo
Global Leaders β€” political-strategy game on a ≀32B model
cc5d530
Raw
History Blame Contribute Delete
489 Bytes
"""Global Leaders β€” headless game engine.
Deterministic core: the World State is the source of truth; the SLM only proposes
(narration, options, judgement). Everything here is stdlib-only and testable without
a model via the FakeLLM stub in `engine.llm`.
See GAME_DESIGN.md and GAME_RULES.md at the repo root for the design.
"""
from engine.state import INDICATORS, FACTION_KEYS, WorldState
from engine.game import Game
__all__ = ["INDICATORS", "FACTION_KEYS", "WorldState", "Game"]