OpenAI: GPT-6 Astra Pro

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

Overview

OpenAI: GPT-6 Astra Pro is a capable model from OpenRouter with a 1.1M context window, supporting vision understanding, function calling. Priced at $0.010/1K input, $0.050/1K output.

ANT Routing Intelligence

Limited routing data available for OpenAI: GPT-6 Astra 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-astra-pro",
    messages=[{"role": "user", "content": "Hello!"}]
)
print(response.choices[0].message.content)