| { | |
| "note": "IronClaw is configured via environment variables written to ~/.ironclaw/.env by `ironclaw onboard`. No JSON config file is used.", | |
| "env": { | |
| "DATABASE_URL": "postgresql://postgres:postgres@localhost:5432/ironclaw", | |
| "LLM_BACKEND": "openai_compatible", | |
| "LLM_BASE_URL": "https://researchengineering-agi.hf.space/v1", | |
| "LLM_API_KEY": "${LLM_SPACE_API_KEY}", | |
| "LLM_MODEL": "deepseek-chat" | |
| }, | |
| "setup": [ | |
| "createdb ironclaw", | |
| "psql ironclaw -c 'CREATE EXTENSION IF NOT EXISTS vector;'", | |
| "ironclaw onboard" | |
| ] | |
| } | |