Configuration — Quick Reference

Full reference: Configuration Guide (YAML schema, environment variables, provider setup, common patterns).

Minimal nano.yml

# ~/.soothe/config/nano.yml
providers:
  - name: openai
    provider_type: openai
    api_key: "${OPENAI_API_KEY}"

router:
  default: "openai:gpt-4o-mini"
  fast: "openai:gpt-4o-mini"
  think: "openai:o3"

workspace:
  root: "."

persistence:
  default_backend: sqlite  # or postgresql

Next Steps