LiberGrid OpenClaw LLM Configuration Use LiberGrid as an OpenAI-compatible LLM provider. Provider type: openai-compatible Base URL: https://libergrid.org/v1 API Key: libergrid-test Model: libergrid-auto Models endpoint: https://libergrid.org/v1/models Chat endpoint: https://libergrid.org/v1/chat/completions Network status: https://libergrid.org/api/status Recommended OpenClaw setup: 1. Open OpenClaw model/provider settings. 2. Choose OpenAI-compatible or custom OpenAI endpoint. 3. Set Base URL to https://libergrid.org/v1 4. Set API Key to libergrid-test 5. Set Model to libergrid-auto 6. Use chat completions as usual. Test command: curl -s https://libergrid.org/v1/chat/completions \ -H 'content-type: application/json' \ -H 'authorization: Bearer libergrid-test' \ -d '{"model":"libergrid-auto","messages":[{"role":"user","content":"Say hello from LiberGrid"}],"timeoutMs":40000}' Important notes: - This is an MVP test network. - The API key is a placeholder; real authentication and billing are not live yet. - Responses are best-effort results from online LiberGrid nodes. - If a request is slow, retry with timeoutMs between 30000 and 40000.