New version available

Refresh to update

Could not apply changes

GPT-5.6 Luna

azure
openai/gpt-5.6-luna

Fast and cost-efficient GPT-5.6 tier for high-volume chat, extraction, classification, summarization, and lightweight coding tasks. Supports vision, reasoning, function calling, and web search with a large context window.

Quick start

TypeScript
cURL
import OpenAI from 'openai'

const openai = new OpenAI({
  apiKey: process.env.CODEPLATFORM_API_KEY,
  baseURL: 'https://ai.codeplatform.net/v1',
})

const response = await openai.chat.completions.create({
  model: 'openai/gpt-5.6-luna',
  messages: [{
    role: 'user',
    content: 'Hello world',
  }],
})

API details

Send requests to the OpenAI-compatible /v1/chat/completions endpoint.

Capabilities

Pricing

Input tokens (per 1M)$0.20
Output tokens (per 1M)$1.20
Cached input (per 1M)$0.02

Limits

Context length922,000 tokens
Max output128,000 tokens