Files
talemate/tests/prompts/baselines_xml/test_editor_baselines.py
veguAI f5d41c04c8 0.37.0 (#267)
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
2026-05-12 21:01:51 +03:00

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