| { | |
| "service": "odysseus", | |
| "source": "https://github.com/pewdiepie-archdaemon/odysseus", | |
| "note": "Self-hosted FastAPI/uvicorn AI workspace, configured via .env + in-app Settings (SQLite-backed) rather than CLI flags. scripts/run_odysseus.py seeds .env from the `env` block below on first boot only — it never overwrites an existing .env, so changes made in the app's Settings UI persist across restarts.", | |
| "env": { | |
| "LLM_HOST": "researchengineering-agi.hf.space", | |
| "OPENAI_API_KEY": "${LLM_SPACE_API_KEY}", | |
| "AUTH_ENABLED": "true", | |
| "LOCALHOST_BYPASS": "false", | |
| "SECURE_COOKIES": "false", | |
| "DATABASE_URL": "sqlite:///./data/app.db" | |
| }, | |
| "gateway": { | |
| "host": "127.0.0.1", | |
| "port": 18796 | |
| } | |
| } | |