← All models
OpenAI: GPT-5.6 Terra
openai/gpt-5.6-terratextVisionFilesReasoning
Balanced GPT-5.6 — between the Sol flagship and the cost-efficient Luna. Everyday coding, reasoning and agentic tasks. Text, image & file input, 1M context.
Pricing
Request / 1M
Response / 1M
Parameters
messagesrequiredreasoning_effortoff · low · medium · high · xhigh · maxtemperature0–2max_tokensoptionalstreamtrue · falseimage_urlimage (data: URL)filePDF · DOCX · TXT · CSV · XLSX · PPTX (data: URL)How to use via API
from openai import OpenAIclient = OpenAI(base_url="https://api.mixen.ai/v1", api_key="mxn-...")resp = client.chat.completions.create(model="openai/gpt-5.6-terra",messages=[{"role": "user", "content": "Привет"}],reasoning_effort="low", # off · low · medium · high · xhigh · maxtemperature=0.7,max_tokens=1024,stream=False,)print(resp.choices[0].message.content)# Стриминг: stream=True — ответ приходит чанкамиfor chunk in client.chat.completions.create(model="openai/gpt-5.6-terra",messages=[{"role": "user", "content": "Привет"}],stream=True,):print(chunk.choices[0].delta.content or "", end="", flush=True)


