All models

Claude Opus 5 Fast

anthropic/claude-opus-5-fast
textVisionFilesReasoning

Fast-mode Opus 5 — identical capabilities, higher output speed, 2× price. For interactive work where responsiveness matters. Text, image & file, 1M context.

Pricing

Request / 1M
Response / 1M

Parameters

messagesrequired
reasoning_effortoff · low · medium · high · xhigh · max
temperature0–2
max_tokensoptional
streamtrue · false
image_urlimage (data: URL)
filePDF · DOCX · TXT · CSV · XLSX · PPTX (data: URL)

How to use via API

from openai import OpenAI
client = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")
resp = client.chat.completions.create(
model="anthropic/claude-opus-5-fast",
messages=[{"role": "user", "content": "Привет"}],
reasoning_effort="low", # off · low · medium · high · xhigh · max
temperature=0.7,
max_tokens=1024,
stream=False,
)
print(resp.choices[0].message.content)
# Стриминг: stream=True — ответ приходит чанками
for chunk in client.chat.completions.create(
model="anthropic/claude-opus-5-fast",
messages=[{"role": "user", "content": "Привет"}],
stream=True,
):
print(chunk.choices[0].delta.content or "", end="", flush=True)
Try in the botAPI docs