feat(prompts): implement TOML-backed prompt loading and refactor message generation

This commit is contained in:
2026-07-16 11:56:32 -04:00
parent ec85f34402
commit a1780e7aa3
7 changed files with 83 additions and 24 deletions
+8
View File
@@ -0,0 +1,8 @@
"""LLM prompt templates for EPUB search."""
from python.ebook_search.prompts.lib import (
Prompt,
load_prompt,
)
__all__ = ["Prompt", "load_prompt"]