Seedream 5.0 Pro уже здесь | Попробуйте в Генераторе изображений →
openai
openai/gpt-5.6-luna

openai/gpt-5.6-luna

Дата выпуска: 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.

Цены

Оплата по факту использования

Никаких авансовых платежей — платите только за то, чем пользуетесь

Ввод$1.00 / M Tokens
Вывод$6.00 / M Tokens
Cache Read$0.10 / M Tokens
Cache Write$1.25 / M Tokens

Попробовать модель

openai/gpt-5.6-luna
В сети
openai
Привет! Я полезный ИИ-ассистент. Чем могу помочь?
Готовы использовать эту модель в локальном coding agent?Настройка агента

Использование API

Используйте следующие примеры кода для интеграции с нашим API:

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)

Описание модели

OpenAI: GPT-5.6 Luna

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.


Why Use GPT-5.6 Luna

  • Lightweight GPT-5.6 model for high-volume workloads
  • Cost-efficient reasoning and coding for large-scale production use
  • Well suited for agentic workflows, tool use, and structured outputs
  • Supports long-context workloads such as document analysis and extended multi-turn sessions
  • Works with both Chat Completions and Responses API workflows

Key Features

  • Context Window: 1,050,000 tokens
  • Max Output: 128,000 tokens
  • Vision Input: Supported
  • Function Calling: Supported
  • Structured Outputs: Supported
  • Best Fit: cost-sensitive reasoning, coding, agents, high-throughput tasks

Specifications

SpecificationValue
ProviderOpenAI
Model IDopenai/gpt-5.6-luna
Model FamilyGPT-5.6
PositioningLightweight model
Context Window1,050,000 tokens
Max Output128,000 tokens
VisionSupported
Function CallingSupported
Structured OutputsSupported
Recommended Workloadscost-sensitive reasoning, coding, agentic workflows, high-throughput tasks

Pricing

Token TypeCost
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.


How to Use

Chat Completions

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."}
    ]
  }'

Pro Mode

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:

  • higher reasoning depth
  • better consistency on difficult tasks
  • more token usage
  • higher latency than standard requests

Responses API Example

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"
    }
  }'

When to Use Pro Mode

Choose Pro mode for:

  • multi-step coding and debugging
  • agent workflows with tools or long chains of reasoning
  • tasks that require deeper analysis instead of quick turnaround
  • prompts where higher accuracy is worth additional cost and latency

Use standard mode when:

  • latency matters more than depth
  • the task is simple or repetitive
  • you are optimizing for throughput or cost

Notes

  • Designed as the most cost-efficient option within the GPT-5.6 family
  • Best paired with the Responses API when reasoning, tool use, or multi-turn state matters

Информация

Провайдерopenai
Типllm

Поддерживаемые возможности

Ввод
ТекстИзображение
Вывод
Текст
Контекст1,050,000
Макс. вывод128,000
Vision✓ Поддерживается
Function Calling✓ Поддерживается

Руководство по доступу к API

Base URLhttps://llm.wavespeed.ai/v1
API Endpointchat/completions
ID моделиopenai/gpt-5.6-luna

GPT 5.6 Luna API

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.

Ввод

$1 /M

Вывод

$6 /M

Контекст

1050K

Макс. вывод

128K

Vision

Поддерживается

Использование инструментов

Поддерживается

Попробуйте GPT 5.6 Luna на WaveSpeedAI

Доступ к GPT 5.6 Luna через наш единый API — совместимость с OpenAI, без холодных стартов, прозрачные цены.

Часто задаваемые вопросы о GPT 5.6 Luna

Сколько стоит GPT 5.6 Luna через API?+

Цены на WaveSpeedAI: $1.00 за миллион входных токенов и $6.00 за миллион выходных токенов. Prompt caching и batch processing тарифицируются отдельно и снижают эффективную стоимость длинных повторяющихся нагрузок.

Каково контекстное окно GPT 5.6 Luna?+

GPT 5.6 Luna поддерживает до 1050K токенов контекста и до 128K токенов вывода на запрос.

Совместим ли GPT 5.6 Luna с OpenAI?+

Да. WaveSpeedAI предоставляет GPT 5.6 Luna через OpenAI-совместимый endpoint по адресу https://llm.wavespeed.ai/v1. Направьте официальный OpenAI SDK на этот base URL с ключом API WaveSpeedAI — других изменений в коде не требуется.

Как начать работу с GPT 5.6 Luna?+

Войдите в WaveSpeedAI, создайте API-ключ в Access Keys и отправьте запрос на https://llm.wavespeed.ai/v1/chat/completions с указанным выше model id. Новые аккаунты получают бесплатные кредиты для оценки GPT 5.6 Luna.

Связанные LLM API

GPT-5.6 Luna | OpenAI Frontier LLM API Pricing | WaveSpeedAI