File size: 553 Bytes
974e338
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "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"
  ]
}