OpenAI: GPT-6 Luna Pro

OpenRouterQuality: 40/100Unverified
Try in Playground
✓ Vision✗ Reasoning✓ Tool Use✓ Streaming✓ System Messages

Overview

OpenAI: GPT-6 Luna Pro is a efficient model from OpenRouter with a 1.1M context window, supporting vision understanding, function calling. Priced at $0.000100/1K input, $0.000500/1K output.

ANT Routing Intelligence

Limited routing data available for OpenAI: GPT-6 Luna Pro. Intelligence insights will appear as more requests are routed through ANT.

Quick Start

from openai import OpenAI

client = OpenAI(
    base_url="https://api.antbase.ai/v1",
    api_key="YOUR_ANT_API_KEY",
)

response = client.chat.completions.create(
    model="openai/gpt-6-luna-pro",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)