{
  "provider": "openai-compatible",
  "name": "LiberGrid",
  "base_url": "https://libergrid.org/v1",
  "api_key": "libergrid-test",
  "model": "libergrid-auto",
  "models_url": "https://libergrid.org/v1/models",
  "chat_completions_url": "https://libergrid.org/v1/chat/completions",
  "status_url": "https://libergrid.org/api/status",
  "notes": [
    "MVP test network; API key is currently a placeholder.",
    "Requests are queued and answered by online LiberGrid nodes.",
    "Use timeoutMs around 40000 for OpenClaw or agent calls."
  ],
  "curl": "curl -s https://libergrid.org/v1/chat/completions \\\n  -H 'content-type: application/json' \\\n  -H 'authorization: Bearer libergrid-test' \\\n  -d '{\"model\":\"libergrid-auto\",\"messages\":[{\"role\":\"user\",\"content\":\"Say hello from LiberGrid\"}],\"timeoutMs\":40000}'"
}