mirror of
https://github.com/vegu-ai/talemate.git
synced 2026-05-01 21:11:05 +00:00
Major features: - Autonomous scene direction via director agent (replaces auto-direct) - Inline image display in scene feed - Character visuals tab for portrait/cover image management - Character message avatars with dynamic portrait selection - Pocket TTS and llama.cpp client support - Message appearance overhaul with configurable markdown display Improvements: - KoboldCpp: adaptive-p, min-p, presence/frequency penalty support - Setup wizard for initial configuration - Director chat action toggles - Visual agent: resolution presets, prompt revision, auto-analysis - Experimental concurrent requests for hosted LLM clients - Node editor alignment shortcuts (X/Y) and color picker Bugfixes: - Empty response retry loop - Client system prompt display - Character detail pins loading - ComfyUI workflow charset encoding - Various layout and state issues Breaking: Removed INSTRUCTOR embeddings
21 lines
No EOL
683 B
YAML
21 lines
No EOL
683 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
talemate:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "${FRONTEND_PORT:-8080}:8080"
|
|
- "${BACKEND_PORT:-5050}:5050"
|
|
volumes:
|
|
- ./config.yaml:/app/config.yaml
|
|
- ./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:-}
|
|
command: ["uv", "run", "src/talemate/server/run.py", "runserver", "--host", "0.0.0.0", "--port", "5050", "--frontend-host", "0.0.0.0", "--frontend-port", "8080"] |