The official model page confirms Luna's current API ID, pricing, reasoning tiers, tool surface, and rate limits. It can serve as a configuration baseline for high-throughput routing, but a single request above 272K tokens incurs a surcharge on the entire request.
Suitable tasks: cost-sensitive, high-volume classification, extraction, summarization, tagging, lightweight code explanations, and verifiable pipeline steps.
Unsuitable tasks: audio/video, fine-tuning, and tasks requiring complex cross-file architectural judgment; the page describes capabilities and billing only and does not promise business accuracy.
Applicable model version: gpt-5.6-luna.
Applicable client, Agent, or API: OpenAI API; the Responses API supports the tools listed on the page, and Chat Completions is also available.
Recommended reasoning tiers and parameters: start batch tasks with none or low; use medium as the default tier; try high, xhigh, or max only when acceptance fails and the improvement can be quantified.
This is a minimal configuration checklist organized from the official fields; the application must fill in authentication, SDK initialization, and business-tool implementation.
model = "gpt-5.6-luna"
reasoning.effort = "low" # none | low | medium | high | xhigh | max
endpoint = "/v1/responses"
price_per_1M:
input = 0.20
cached_input = 0.02
output = 1.20The Responses API tools page marks web search, file search, image generation, code interpreter, hosted shell, apply patch, skills, computer use, MCP, and tool search as Supported; function calling, structured outputs, and streaming outputs are also marked Supported.
Fix gpt-5.6-luna and low first, then select a batch of tasks with clear labels or test criteria. Record input/output tokens, elapsed time, pass rate, and retry count for each run.
Run a small-sample A/B test with none, low, and medium on the same task set; record the pass-rate improvement together with the additional tokens and latency.
Put static system instructions, tool definitions, and reference materials in a stable prefix, and place changing user input at the end to observe cache hits.
Budget first for requests with more than 272K input tokens; the official rule bills the entire request at 2x input and 1.5x output rates. Test chunking when necessary.
If the model's output will trigger file writes, message sending, payments, or data deletion, add human confirmation, a sandbox, or rollback; a low unit price does not change the risk of the action.
After running for a week, evaluate by the cost of each passed and human-accepted result, rather than routing directly based on the per-token price.
Positioning: OpenAI describes Luna as intended for cost-sensitive, high-volume workloads, roughly corresponding to the nano tier of the earlier GPT-5 family.
Reasoning: none, low, medium (default), high, xhigh, max.
Context/output: 1,050,000-token context window, 128,000 maximum output tokens; knowledge cutoff 2026-02-16.
Pricing: $0.20 input, $0.02 cached input, and $1.20 output (per 1M tokens).
Long inputs: when input exceeds 272K tokens, the full request is billed at 2x input and 1.5x output rates.
Modalities: text input/output and image input; audio and video are not supported.
API: streaming, function calling, and structured outputs are supported; fine-tuning is not supported.
Responses tools: web search, file search, image generation, code interpreter, hosted shell, apply patch, skills, computer use, MCP, and tool search are all Supported.
Tier 1: 500 RPM, 500,000 TPM, and a 5,000,000 batch queue limit; see the account page for higher tiers.
The model catalog page does not provide Luna's accuracy, first-pass success rate, or average latency for your business; do not treat “Fast” as an SLA.
The 272K rule applies a multiplier to the entire request, not only the excess; long-document tasks must test chunking and caching in practice.
Tool support is confirmed only in the Responses API tool table; individual tool calls still require handling permissions, failures, malicious tool output, and human confirmation.
The page displays an alias; to reproduce an experiment, record the collection date and the actually available snapshot. The current page does not disclose an independent snapshot name.
The official positioning is “designed for cost-sensitive, high-volume workloads”; it indicates the intended direction, not low risk or zero rework.
GPT-5.6 Luna