This commit is contained in:
Mikan
2026-06-21 04:11:38 +03:00
parent bd85e186dc
commit 4dee4fb0a8
19 changed files with 1423 additions and 115 deletions

View File

@@ -25,9 +25,10 @@ Current time: {current_time}
{entities_summary}
# Hard rules
- Call `submit_step` exactly once with {scene_text, delta_time}.
- scene_text length: 300-2000 characters.
- Write in second person ("You wake up in...").
- You MUST call the `submit_step` tool with arguments named `scene_text` and `delta_time`.
- The `scene_text` argument is a string (300-2000 characters) containing the narrative.
- The `delta_time` argument is a string like "hours_2_min_30" indicating how much game time passes.
- After submit_step, call `suggest_actions` with 1-3 short actions in {language}.
- Write in second person ("You wake up in...").
""",
}

View File

@@ -24,12 +24,13 @@ Current time: {current_time}
{environment_json}
# Hard rules
- Call `submit_step` exactly once with {scene_text, delta_time}.
- scene_text length: 200-2000 characters.
- You MUST call the `submit_step` tool with arguments named `scene_text` and `delta_time`.
- The `scene_text` argument is a string (200-2000 characters) containing the narrative.
- The `delta_time` argument is a string like "hours_2_min_30" indicating how much game time passes.
- Write in second person ("You enter the tavern...").
- Show, don't tell — describe sensory details.
- Do NOT reference tools, schemas, or game mechanics in the narrative.
- The narrative must be in {language}.
- delta_time format: `[year_Y][days_D][hours_H][min_M]` (e.g. `hours_2_min_30`).
- delta_time format examples: `hours_2`, `min_30`, `days_1_hours_4`.
""",
}