- Home
- AI Gateway
- GPT-5.6 Luna
GPT-5.6 Luna
azure
openai/gpt-5.6-luna
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