Skip to main content
Raziel exposes an OpenAI-compatible API at https://raziel.fun/gateway/openai/v1. Any client that accepts a custom base URL works out of the box — the OpenAI Python and Node SDKs, Hermes, Continue, LibreChat, and others.

Connection details

Available models

Retrieve the live list at any time with GET /gateway/openai/v1/models.

Code examples

Supported request fields

These fields are forwarded to the upstream model: messages, model, max_tokens, temperature, stream, tools, tool_choice, stop, top_p These fields are silently ignored: logprobs, n, response_format, presence_penalty, frequency_penalty, seed

Streaming

Pass stream: true (Python) or stream: true (TypeScript/JSON) in the request body. The endpoint returns server-sent events in the standard OpenAI delta format.

Compatible clients

The following clients work without modification — point them at the Raziel base URL and use your rz_live_… key:
  • OpenAI Python SDK
  • OpenAI Node / TypeScript SDK
  • Hermes
  • Continue
  • LibreChat
  • Any client that accepts a custom base_url and api_key