Per-person briefings (Eric + Angela) with configurable weather locations
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/env python3
|
||||
"""Eric's Daily Briefing — wrapper for the daily briefing engine."""
|
||||
|
||||
from daily_briefing import run
|
||||
|
||||
CONFIG = {
|
||||
"person": "Eric",
|
||||
"agent_id": "eric-daily-briefing",
|
||||
"wiki_parent_doc_id": "2a891fe8-579b-450b-a663-de93915896b7",
|
||||
"location": {
|
||||
"name": "Providence",
|
||||
"state": "Utah",
|
||||
"country": "US",
|
||||
"lat": 41.7064,
|
||||
"lon": -111.8133,
|
||||
},
|
||||
}
|
||||
|
||||
if __name__ == "__main__":
|
||||
run(CONFIG)
|
||||
Reference in New Issue
Block a user