Raziel exposes an OpenAI-compatible API atDocumentation Index
Fetch the complete documentation index at: https://docs.raziel.fun/llms.txt
Use this file to discover all available pages before exploring further.
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
| Field | Value |
|---|---|
| Base URL | https://raziel.fun/gateway/openai/v1 |
| Auth | Authorization: Bearer rz_live_… |
| Models | GET /gateway/openai/v1/models |
| Chat completions | POST /gateway/openai/v1/chat/completions |
| Streaming | Pass stream: true |
Available models
| Model ID | Description |
|---|---|
claude-opus-4-7 | Most capable |
claude-sonnet-4-6 | Balanced |
claude-haiku-4-5-20251001 | Fastest |
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
Passstream: 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 yourrz_live_… key:
- OpenAI Python SDK
- OpenAI Node / TypeScript SDK
- Hermes
- Continue
- LibreChat
- Any client that accepts a custom
base_urlandapi_key
