17 lines
722 B
Python
17 lines
722 B
Python
from __future__ import annotations
|
|
|
|
from .paths import CHAR_PATH, WORLD_PATH
|
|
from .prompts import SYSTEM_PROMPT
|
|
from . import state
|
|
|
|
|
|
def build_system_prompt(recent_narrative: str | None = None, recent_log: str | None = None) -> str:
|
|
"""Assemble the system prompt with current game state."""
|
|
char = state.read_file(CHAR_PATH) or "*No character sheet.*"
|
|
world = state.truncate_world(state.read_file(WORLD_PATH) or "") or "*No world state.*"
|
|
log = recent_log if recent_log is not None else state.read_recent_log()
|
|
story = recent_narrative if recent_narrative is not None else state.read_recent_book(2)
|
|
return SYSTEM_PROMPT.substitute(
|
|
character=char, world=world, log=log, story=story,
|
|
)
|