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

This commit is contained in:
2026-07-16 13:09:34 -04:00
parent 2f303fe7a8
commit 4024672327
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"]