Skip to main content
LLM Gateway calls are direct provider-compatible requests, not async generation tasks. Use the HTTP status code and response body to decide whether to fix the request or retry.

Common errors

Safe retry policy

Retry only transient failures such as 429, 500, 502, and 504.
Do not blindly retry:
  • Authentication failures
  • Invalid JSON or invalid request bodies
  • Missing required provider headers
  • Unsupported model names
  • Requests that already produced a successful streamed response

Debug checklist

  1. Confirm the base URL matches the compatible API.
  2. Confirm the API key is stored as APIXO_API_KEY.
  3. Confirm the model name is supported by that API format.
  4. Test the same request without streaming.
  5. Save the response body and status code before contacting support.
For generation task errors, use the general Error Codes page. This page is focused on direct LLM Gateway calls.