OpenAI logo
OpenAI

GPT-6 Astra

OpenAI's next-generation intelligence and alignment model for computer use, browsing, software engineering, cybersecurity, science, and professional work

Category Text Model ID gpt-6-astra
PositioningNext-generation intelligence and alignment model for complex professional work and multi-step agentic tasks
API AvailabilityAvailable through the OpenAI API and Amazon Bedrock
Core CapabilitiesComputer use, browsing, software engineering, cybersecurity, science, and professional work

Pricing & Specs

💰 Pricing

Input$10 / M tokens
Output$50 / M tokens
Cache Write$12.5 / M tokens
Cache Hit$1 / M tokens

⚙️ Specs

PositioningNext-generation intelligence and alignment model for complex professional work and multi-step agentic tasks
API AvailabilityAvailable through the OpenAI API and Amazon Bedrock
Core CapabilitiesComputer use, browsing, software engineering, cybersecurity, science, and professional work
Standard PricingInput $10; cached input $1; cache write $12.50; output $50 / M tokens
Fast ModeUp to 2.5x the speed of Standard processing at 2x the Standard price
Alignment and SafetyStronger user-intent understanding, task-boundary adherence, transparent communication, and cybersecurity safeguards
AvailabilityRolling out to ChatGPT Plus, Pro, Business, and Enterprise users and API customers

API Examples

Python

from openai import OpenAI

client = OpenAI(
    base_url="https://api.zairouter.com/v1",
    api_key="your-api-key"
)

response = client.chat.completions.create(
    model="gpt-6-astra",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)

cURL

curl https://api.zairouter.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "gpt-6-astra",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'