RS Infer
Server Endpoints

Usage

Interactive reference for every HTTP endpoint, generated from the server's OpenAPI 3.1 schema.

These pages are generated from docs-site/openapi.yaml in the repository with Fumadocs OpenAPI. Each operation page includes the request/response JSON Schema, sample payloads, and an interactive playground that hits the configured server URL (default: http://localhost:8080).

Endpoint families

Error format

Errors return a JSON body shaped like:

{
  "error": {
    "message": "model not found: my-model",
    "type": "model_not_found",
    "code": 404
  }
}
StatusWhen
400Invalid body / parameters (input empty, wrong kind for endpoint, …).
404Requested model not loaded, or a different kind than the endpoint.
408server.request_timeout_ms exceeded.
413Body larger than server.max_body_mb.
429Too many waiters for the model (server.max_queue reached).
503Waited longer than server.queue_timeout_ms for a session slot.

On this page