mirror of
https://github.com/vegu-ai/talemate.git
synced 2026-09-01 19:48:52 +02:00
- **Per-Scene Agent Overrides** — Override agent configuration for a single scene without touching your global config. - **Message Revision History** — Browse and continue from previous regenerations / revisions. - **Scene Perspective Overrides** — Set distinct narrative perspectives for the player, NPCs, and narrator. - **Durable World State Snapshot** — The world state snapshot now persists and updates entities across refreshes. - **World State Highlights** — Characters, objects and places marked by the current world state snapshot are now clickable in the recent message(s) for additional detail. Plus 30 improvements and 17 bug fixes
9 lines
292 B
Bash
Executable File
9 lines
292 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# use the portable Node.js provisioned by install.sh (falls back to system Node)
|
|
source install-utils/node-env.sh
|
|
activate_embedded_node
|
|
|
|
cd talemate_frontend
|
|
export COREPACK_ENABLE_DOWNLOAD_PROMPT=0
|
|
corepack pnpm run serve --host 0.0.0.0 --port "${TALEMATE_FRONTEND_PORT:-8082}" |