GPT‑6 Astra is OpenAI’s most capable model to date for complex reasoning, coding, computer use, research and document creation, delivering outstanding performance in multi‑step workflows across code, browsers and professional software. It supports varying levels of reasoning.effort including low, medium, high, xhigh and max. While achieving excellent outcomes, it reduces estimated per‑task costs by cutting output token consumption. In addition, it is OpenAI’s most aligned model so far, designed to follow instructions precisely, respect task boundaries, adapt to evolving requirements and enable transparent communication.
This model is available from multiple providers. Select one to see its pricing and sample code.
Sourced from ChatGPT Pro Membership,Recommended for Codex
Transparent pay-as-you-go pricing by token usage — no subscriptions or hidden fees.
Your charge is determined by actual usage and the parameters selected for the request. The prices below stay in sync with this model's current configuration.
The token tier is selected from this request's input token count. Its input, output, and cache rates then apply to the whole request.
Copy an example below to start calling this model in minutes.
from openai import OpenAI
client = OpenAI(
base_url="https://api.apipod.ai/v1",
api_key="<YOUR_API_KEY>",
)
response = client.responses.create(
model="codex/gpt-6-astra",
input="What is the meaning of life?",
)
print(response.output_text)