New version available

Refresh to update

Could not apply changes

GPT-6 Luna

openai
openai/gpt-6-luna

OpenAI's most efficient GPT-6 model for focused, high-volume chat, extraction, classification, summarization, and coding tasks. Supports reasoning, vision, function calling, web search, and a 1.05M-token context window; served through Azure OpenAI.

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-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.10
Output tokens (per 1M)$0.50
Cached input (per 1M)$0.01

Limits

Context length922,000 tokens
Max output128,000 tokens