Skip to content
All systems operationalStatus
ChatGPT · OpenAIFrontier tierLatest

GPT-6 Astra

gpt-astra-6

The most capable GPT model, built for the hardest end-to-end work.

Specs & rates

Context window
262K
262,144 tokens
Input
$4.20
per 1M tokens
Output
$28.00
per 1M tokens
Cached input
$2.45
per 1M tokens
Cache write · 5m
$4.20
per 1M tokens
Cache write · 1h
$4.20
per 1M tokens

Use GPT-6 Astra

Native endpoint: /v1/responses. Also available on /v1/chat/completions.

# ~/.codex/config.toml
model = "gpt-astra-6"
model_provider = "evolved"

[model_providers.evolved]
name = "evolved.to"
base_url = "https://api.evolved.to/v1"
env_key = "EVOLVED_API_KEY"
wire_api = "responses"
curl https://api.evolved.to/v1/chat/completions \
  -H "Authorization: Bearer $EVOLVED_API_KEY" \
  -H "content-type: application/json" \
  -d '{
    "model": "gpt-astra-6",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'
import os
from openai import OpenAI

client = OpenAI(
    base_url="https://api.evolved.to/v1",
    api_key=os.environ["EVOLVED_API_KEY"],
)

response = client.responses.create(
    model="gpt-astra-6",
    input="Hello!",
)

print(response.output_text)
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.evolved.to/v1",
  apiKey: process.env.EVOLVED_API_KEY,
});

const response = await client.responses.create({
  model: "gpt-astra-6",
  input: "Hello!",
});

console.log(response.output_text);