mirror of
https://github.com/vegu-ai/talemate.git
synced 2026-07-10 04:19:00 +02:00
0.37.0 - **Director Planning** — Multi-step todo lists in director chat plus a Generate long progress action for multi-beat scene arcs. - **Auto Narration** — Unified auto-narration replacing the old Narrate after Dialogue toggle, with a chance slider and weighted action mix. - **LLM Prompt Templates Manager** — Dedicated UI tab for viewing, creating, editing, and deleting prompt templates. - **Character Folders** — Collapsible folders in the World Editor character list, synced across linked scenes. - **OpenAI Compatible TTS** — Connect any number of OpenAI-compatible TTS servers in parallel. - **KoboldCpp TTS Auto-Setup** — KoboldCpp clients with a TTS model loaded register themselves as a TTS backend. - **Model Testing Harness** — Bundled scene that runs basic capability tests against any connected LLM. Plus 27 improvements and 28 bug fixes
22 lines
730 B
YAML
22 lines
730 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
talemate:
|
|
image: ghcr.io/vegu-ai/talemate:latest
|
|
ports:
|
|
- "${TALEMATE_FRONTEND_PORT:-8082}:${TALEMATE_FRONTEND_PORT:-8082}"
|
|
- "${TALEMATE_BACKEND_PORT:-5050}:${TALEMATE_BACKEND_PORT:-5050}"
|
|
volumes:
|
|
- ./config.yaml:/app/config.yaml
|
|
- ./secrets:/app/secrets
|
|
- ./scenes:/app/scenes
|
|
- ./templates:/app/templates
|
|
- ./chroma:/app/chroma
|
|
- ./tts:/app/tts
|
|
environment:
|
|
- PYTHONUNBUFFERED=1
|
|
- PYTHONPATH=/app/src:$PYTHONPATH
|
|
- VITE_TALEMATE_BACKEND_WEBSOCKET_URL=${VITE_TALEMATE_BACKEND_WEBSOCKET_URL:-}
|
|
- TALEMATE_FRONTEND_PORT=${TALEMATE_FRONTEND_PORT:-8082}
|
|
- TALEMATE_BACKEND_PORT=${TALEMATE_BACKEND_PORT:-5050}
|