26 lines
729 B
Python
26 lines
729 B
Python
#!/usr/bin/env python3
|
|
"""Angela's Daily Briefing — wrapper for the daily briefing engine."""
|
|
|
|
from daily_briefing import run
|
|
|
|
INSTANCE_ID = int(__import__('os').environ.get("ANGELA_INSTANCE_ID", "0"))
|
|
|
|
CONFIG = {
|
|
"person": "Angela",
|
|
"agent_id": "angela-daily-briefing",
|
|
"instance_id": INSTANCE_ID,
|
|
"user_id": 3,
|
|
"wiki_collection_id": "b6efa6b9-44b5-48c1-b82e-2e6efe36e3eb", # Angela's ScratchPad
|
|
"wiki_parent_doc_id": "410759a9-4a3b-4881-8ad1-3190cefa760f", # Daily Briefings in Angela's ScratchPad
|
|
"location": {
|
|
"name": "Providence",
|
|
"state": "Utah",
|
|
"country": "US",
|
|
"lat": 41.7064,
|
|
"lon": -111.8133,
|
|
},
|
|
}
|
|
|
|
if __name__ == "__main__":
|
|
run(CONFIG)
|