Per-person briefings (Eric + Angela) with configurable weather locations

This commit is contained in:
2026-04-13 01:38:03 +00:00
parent e07341faf9
commit 1dcfc9f46e
4 changed files with 149 additions and 54 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/usr/bin/env python3
"""Angela's Daily Briefing — wrapper for the daily briefing engine."""
from daily_briefing import run
CONFIG = {
"person": "Angela",
"agent_id": "angela-daily-briefing",
"wiki_parent_doc_id": "65966bd6-4ef8-4b79-9b79-e4aa62b94e96",
"location": {
"name": "Providence",
"state": "Utah",
"country": "US",
"lat": 41.7064,
"lon": -111.8133,
},
}
if __name__ == "__main__":
run(CONFIG)