feat: use just 'blog post' for the writing pipeline

This commit is contained in:
Gigi
2025-03-29 23:28:58 +00:00
parent f672b61c34
commit 4ec18e3e9f

View File

@@ -16,7 +16,7 @@ def load_prompt_template(transcript_text: str) -> str:
prompt_dir = Path("prompts")
# Check transcript content to determine appropriate prompt
if "write" in transcript_text.lower() and "blog post" in transcript_text.lower():
if "blog post" in transcript_text.lower():
# "I want to write a blog post"
prompt_file = prompt_dir / "blog_post.md"
elif "idea" in transcript_text.lower() and "app" in transcript_text.lower():