Build with Mira

Mira is a family of large language models exposed through an OpenAI-compatible HTTP API. If your code already talks to OpenAI's Chat Completions endpoint, point its base URL at https://api.vmira.ai/v1 and use an sk-mira-… key — the official Python and JavaScript SDKs work unchanged.

The model line

  • mirathe default. A fast model for chat, generation, light coding, classification, and most tool-using agents.
  • mira-thinkinga deeper, slower model that allocates extra compute to step-by-step reasoning. Use when correctness matters more than latency.

The API shape

One canonical endpoint: POST /v1/chat/completions. Send the usual { model, messages }payload, get the OpenAI-shape response back. Streaming is server-sent events, identical to OpenAI's.

Get started