mirror of
https://github.com/vegu-ai/talemate.git
synced 2026-05-18 13:16:15 +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
18 lines
500 B
Python
18 lines
500 B
Python
"""
|
|
Baseline snapshot tests for editor agent prompt templates (XML section format).
|
|
|
|
Inherits all tests from baselines/ — only the mock client and baseline directory differ.
|
|
"""
|
|
|
|
from ..test_editor_templates import ( # noqa: F401
|
|
mock_scene,
|
|
mock_memory_agent,
|
|
mock_summarizer_agent,
|
|
mock_narrator_agent_for_registry,
|
|
mock_director_agent,
|
|
editor_agent,
|
|
setup_agents,
|
|
active_context,
|
|
)
|
|
from ..baselines.test_editor_baselines import TestEditorBaselines # noqa: F401
|