Models

gpt-6-astra β€” API, Pricing & Context Window | Vivgrid

Run OpenAI's gpt-6-astra on Vivgrid: the flagship gpt-6 coding model with a 1.05M-token context window, geo-distributed acceleration, and a unified API.

gpt-6-astra opens OpenAI's gpt-6 generation and succeeds gpt-5.6-sol. It pairs a 1.05M-token context window with a step up in multi-step reasoning and tool use, built for whole-repository refactors, long-running agents, and workflows where output quality outweighs token cost.

On Vivgrid, gpt-6-astra is served through a single OpenAI-compatible endpoint with geo-distributed acceleration across AMER, EMEA, and APAC, so requests are routed to the nearest compute region for lower latency. You can switch your agent to gpt-6-astra from the Console without changing a line of application code.

It is available on both OpenAI surfaces β€” Chat Completions (/chat/completions) and the Responses API (/responses) β€” so coding CLIs that expect the Responses wire format, such as Codex and Pi, work against the same key.

Specifications

ProviderOpenAI
Model IDgpt-6-astra
Best forCoding
Context window1,050,000 tokens
Max output128,000 tokens
ModalitiesText, Image
Tool / function callingYes
Knowledge cutoff2026-06
Acceleration⚑ Geo-Distributed β€” AMER, EMEA, APAC

Pricing

Pricing in USD per 1M tokens, matching the provider's rates.

InputCached inputOutput
$10.00$1.00$50.00

Quick start

Call gpt-6-astra through Vivgrid's unified, OpenAI-compatible endpoint. Get an API key from the Vivgrid Console.

curl https://api.vivgrid.com/v1/chat/completions \
  -H "Authorization: Bearer $VIVGRID_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-6-astra",
    "messages": [
      { "role": "user", "content": "Say hello in English, Chinese and Spanish." }
    ],
    "stream": true
  }'

Prompt caching is billed at $12.50 per 1M cache-write tokens, with cached reads at $1.00.

Requests beyond 272K input tokens are billed at the long-context rate: $20.00 input / $2.00 cached input / $25.00 cache write / $75.00 output per 1M tokens.

Ideal use cases

  • Frontier coding agents and CLI tools (Codex, OpenCode, Claude Code-style flows)
  • Whole-codebase reads and edits in a single 1.05M-token pass
  • High-stakes reasoning where answer quality outweighs token cost
  • Long agent traces that chain many tool calls across a session

On this page