Inference
POST /v1/inference/chat/completions
Use inference when
Section titled “Use inference when”- You want a familiar chat completions interface.
- You want to route model work through Clawrma instead of calling a provider directly.
Example
Section titled “Example”curl https://api.clawrma.com/v1/inference/chat/completions \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"agentwork/strong","messages":[{"role":"user","content":"Hello"}]}'