openai/gpt-5.6-luna
Tanggal rilis: 2026-07-09
1,050,000 context · $1.00/M input tokens · $6.00/M output tokens
GPT-5.6 Luna is the lightweight model in OpenAI's GPT-5.6 series, designed for cost-efficient reasoning, coding, and agentic workflows at scale. It is well suited for high-throughput production workloads, lightweight automation, and large-volume application traffic where responsiveness and efficiency matter most.
Bayar sesuai pemakaian
Tanpa biaya di muka, bayar hanya sesuai penggunaan
Gunakan contoh kode berikut untuk integrasi dengan API kami:
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="openai/gpt-5.6-luna",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)GPT-5.6 Luna is the lightweight model in OpenAI's GPT-5.6 series. It is designed for cost-efficient reasoning, coding, and agentic workflows where throughput and responsiveness matter more than using the highest-capability tier.
WaveSpeed AI exposes openai/gpt-5.6-luna through an OpenAI-compatible API, so it can be used with standard OpenAI SDKs and existing chat-completions-based application flows.
| Specification | Value |
|---|---|
| Provider | OpenAI |
| Model ID | openai/gpt-5.6-luna |
| Model Family | GPT-5.6 |
| Positioning | Lightweight model |
| Context Window | 1,050,000 tokens |
| Max Output | 128,000 tokens |
| Vision | Supported |
| Function Calling | Supported |
| Structured Outputs | Supported |
| Recommended Workloads | cost-sensitive reasoning, coding, agentic workflows, high-throughput tasks |
| Token Type | Cost |
|---|---|
| Input | $1 per million tokens |
| Cached Input | $0.10 per million tokens |
| Cache Write | $1.25 per million tokens |
| Output | $6 per million tokens |
Pricing should still be reviewed against your active upstream configuration before publishing.
Use Chat Completions when you want a straightforward OpenAI-compatible integration path for standard conversational and coding workflows.
Python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="openai/gpt-5.6-luna",
messages=[
{"role": "user", "content": "Summarize this issue in one paragraph."}
]
)
print(response.choices[0].message.content)
cURL
curl https://llm.wavespeed.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "openai/gpt-5.6-luna",
"messages": [
{"role": "user", "content": "Summarize this issue in one paragraph."}
]
}'
GPT-5.6 Luna supports a stronger reasoning path through Pro mode.
Pro mode is not a separate core model that you need to configure independently. Instead, use the same base model, openai/gpt-5.6-luna, and enable Pro mode in the Responses API with:
{
"reasoning": {
"mode": "pro"
}
}
Use Pro mode when you want the model to spend more effort on difficult reasoning, planning, and tool-using tasks. It is a better fit for complex coding, high-stakes decision logic, and multi-step agent workflows where answer quality matters more than speed or token efficiency.
In practice, Pro mode usually means:
Python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.responses.create(
model="openai/gpt-5.6-luna",
input="Review this automation design and identify the main reliability risk.",
reasoning={
"mode": "pro",
"effort": "medium"
}
)
print(response.output_text)
cURL
curl https://llm.wavespeed.ai/v1/responses \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "openai/gpt-5.6-luna",
"input": "Review this automation design and identify the main reliability risk.",
"reasoning": {
"mode": "pro",
"effort": "medium"
}
}'
Choose Pro mode for:
Use standard mode when:
openai/gpt-5.6-luna
GPT-5.6 Luna is the lightweight model in OpenAI's GPT-5.6 series, designed for cost-efficient reasoning, coding, and agentic workflows at scale. It is well suited for high-throughput production workloads, lightweight automation, and large-volume application traffic where responsiveness and efficiency matter most.
Input
$1 /M
Output
$6 /M
Konteks
1050K
Output Maks.
128K
Vision
Didukung
Penggunaan Tool
Didukung
Akses GPT 5.6 Luna melalui API terpadu kami — kompatibel dengan OpenAI, tanpa cold start, harga transparan.
Harga di WaveSpeedAI: $1.00 per juta token input dan $6.00 per juta token output. Prompt caching dan batch processing ditagih terpisah dan mengurangi biaya efektif pada beban kerja yang panjang dan berulang.
GPT 5.6 Luna mendukung hingga 1050K token konteks dengan hingga 128K token output per permintaan.
Ya. WaveSpeedAI menyediakan GPT 5.6 Luna melalui endpoint yang kompatibel dengan OpenAI di https://llm.wavespeed.ai/v1. Arahkan OpenAI SDK resmi ke base URL ini dengan API key WaveSpeedAI Anda — tanpa perubahan kode lainnya.
Masuk ke WaveSpeedAI, buat API key di Access Keys, lalu kirim permintaan ke https://llm.wavespeed.ai/v1/chat/completions dengan model id seperti ditampilkan di atas. Akun baru menerima kredit gratis untuk menguji GPT 5.6 Luna.