← All models
Aion-3.0 is a multi-model roleplaying and storytelling system from AionLabs, built on the GLM family of models. It uses a collaborative generation process in which multiple specialized models each contribute...
At a glance
- Context window
- 131Ktokens
- Max output
- 33Ktokens
- Knowledge to
- —
- Released
- 2026
Capabilities
CapabilitiesReasoningToolsStructured output
InputText
OutputText
ReasoningSupported
Performance
Reference uptime
100%
Aug 18Sep 16
Median latency
1,311 ms
Aug 18Sep 16
Throughput
47.1 tok/s
Aug 18Sep 16
IranRouter uptime comes from our own automated probes; the reference figures are daily measurements of this model's upstream routes. Each card shows a 30-day average, and a day without data stays empty.
Supported parameters
include_reasoningmax_tokensreasoningresponse_formattemperaturetool_choicetoolstop_p
Parameters this model accepts; anything else is ignored.
Quick start
from openai import OpenAI
client = OpenAI(
api_key="ir-...",
base_url="https://iranrouter.com/v1",
)
resp = client.chat.completions.create(
model="aion-labs/aion-3.0",
messages=[{"role": "user", "content": "سلام!"}],
)
print(resp.choices[0].message.content)Only base_url and the key change; the rest of your code stays as it is.