OpenAI-Compatible REST API

API Reference

Drop-in compatible with standard OpenAI client libraries (`/v1/chat/completions`, `/v1/embeddings`, `/v1/models`).

cURL Requestbash
curl http://localhost:11434/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "everestq-coder",
    "messages": [{"role": "user", "content": "Write a Go worker pool"}],
    "temperature": 0.7
  }'