| # Copy to .env and fill in. NEVER commit the real .env. | |
| SPACE_URL=https://your-space.hf.space | |
| INGEST_TOKEN=change-me-to-match-the-space | |
| POLL_SECONDS=20 | |
| # Optional: comma-separated chat names/handles to watch (blank = all) | |
| WATCH_CHATS= | |
| # Path to the iMessage DB (default is correct on macOS) | |
| CHAT_DB=~/Library/Messages/chat.db | |
| # AGENT_MODE=1 posts to /agent (client-side autonomous push) instead of /ingest. | |
| # Prefer the server-side switch (run the backend with AUTONOMOUS=1) so logic lives | |
| # in one place; the collector now also reports is_from_me so the backend can fire | |
| # only on YOUR sent/accepted messages (backend env TRIGGER_ON=outgoing, the default). | |
| AGENT_MODE=0 | |