Wire dashboard context into Hearthkeeper

This commit is contained in:
2026-05-12 10:28:33 -05:00
parent c1d6032eb2
commit 74e3c0dcaa
7 changed files with 117 additions and 31 deletions

View File

@@ -105,6 +105,12 @@ class LLMClient:
Used when no provider is configured or for testing.
"""
logger.debug(f"Mock generation for prompt: {prompt[:50]}...")
if "content angle:" in prompt.lower():
for line in prompt.splitlines():
if line.lower().startswith("content angle:"):
angle = line.split(":", 1)[1].strip()
return f"The quiet here keeps circling back to {angle}."
# Simple deterministic responses for testing
if "hello" in prompt.lower():