OpenAI
GPT-5.6 Luna
openai/gpt-5.6-luna
GPT-5.6 Luna is a fast, cost-efficient model in OpenAI's GPT-5.6 series. It is suited for high-volume, latency-sensitive tasks such as chat, classification, and lightweight agentic workflows.
Pricing
| Input | $0.1per 1M tokens |
|---|---|
| Output | $0.6per 1M tokens |
| Cached input | $0.05per 1M tokens read from cache |
Specifications
| Context window | 1Mtokens |
|---|---|
| Max output | 66Ktokens |
| Provider | OpenAI |
| Capabilities | Vision · Reasoning · Function calling |
| Input types | text, image |
Use GPT-5.6 Luna
Point your existing OpenAI SDK at xKiro and pass openai/gpt-5.6-luna as the model. Nothing else in your code changes.
from openai import OpenAI
client = OpenAI(
base_url="https://api.xkiro.com/v1",
api_key="YOUR_XKIRO_KEY",
)
response = client.chat.completions.create(
model="openai/gpt-5.6-luna",
messages=[{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)Supported parameters
max_tokens · temperature · top_p · stop · frequency_penalty · presence_penalty · seed · stream · tools · tool_choice · response_format · structured_outputs · reasoning · include_reasoning
Related models
Call GPT-5.6 Luna through the same endpoints you already use.
Get an API key