#!/usr/bin/env python3 """Eric's Daily Briefing — wrapper for the daily briefing engine.""" from daily_briefing import run # Instance ID will be set after migration (updated by deploy script) INSTANCE_ID = int(__import__('os').environ.get("ERIC_INSTANCE_ID", "0")) CONFIG = { "person": "Eric", "agent_id": "eric-daily-briefing", "instance_id": INSTANCE_ID, "user_id": 2, "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)