Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions blog/asset-sources/gpt-6-astra-token-station-cover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added blog/gpt-6-astra-token-station-cover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -465,4 +465,24 @@
<lastmod>2026-09-01</lastmod>
<priority>0.6</priority>
</url>
<url>
<loc>https://bytefuture.ai/blog/gpt-6-astra-token-station.html</loc>
<lastmod>2026-09-05</lastmod>
<priority>0.7</priority>
</url>
<url>
<loc>https://bytefuture.ai/blog/gpt-6-astra-token-station-zh.html</loc>
<lastmod>2026-09-05</lastmod>
<priority>0.6</priority>
</url>
<url>
<loc>https://bytefuture.ai/blog/gpt-6-astra-token-station-ja.html</loc>
<lastmod>2026-09-05</lastmod>
<priority>0.6</priority>
</url>
<url>
<loc>https://bytefuture.ai/blog/gpt-6-astra-token-station-ko.html</loc>
<lastmod>2026-09-05</lastmod>
<priority>0.6</priority>
</url>
</urlset>
80 changes: 80 additions & 0 deletions src/content/writings/en/gpt-6-astra-token-station.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
slug: gpt-6-astra-token-station
lang: en
title: "GPT-6 Astra is now on Token Station"
summary: "OpenAI's new flagship model is live on Token Station: agentic coding, computer use, and long terminal sessions through the same OpenAI-compatible route you already use. Covers what changed from GPT-5.6 Sol, pricing, and where Astra actually earns its higher rate."
category: product
date: 2026-09-05
cta: https://models.bytefuture.ai/intro.html
cover: blog/gpt-6-astra-token-station-cover.png
draft: false
---

GPT-6 Astra is now available on Token Station as `openai/gpt-6-astra`, through the same OpenAI-compatible endpoint you already use for the rest of the GPT-5.6 family.

OpenAI built Astra around agentic work: long coding sessions, computer and browser use, and terminal-heavy operations, rather than a single-turn quality bump. That shows up less in any one benchmark and more in how far the model gets through a multi-step task before it needs a human to step back in.

## What's actually new

Astra's headline gains are concentrated in long-horizon and agentic benchmarks rather than general knowledge:

- **FrontierMath Tier 4**: 97.6%, the hardest published math benchmark, and ahead of Claude Fable 5.1's 87.8% on the same test.
- **ExploitBench**: 100%, a benchmark for defensive cybersecurity work (finding and patching vulnerabilities, not writing exploits).
- **OSWorld 2.0** (computer and browser use): 72.6%, completed in roughly 47% less time per task than GPT-5.6 Sol.
- **SRE-Bench** (incident response and systems tasks): 88.0% solved on the first attempt and 99.2% within four attempts, up from 55.9% and 68.7% for GPT-5.6 Sol.
- **Terminal-Bench 4.0**: 57.7%, a benchmark built around long, messy terminal sessions.

The pattern across all five: Astra isn't just answering better. It's staying on task longer without drifting from the original instructions, which is the actual bottleneck in agentic coding and computer-use workflows.

Astra is also the first OpenAI model to cross the "Critical" threshold on cybersecurity capability, so its most advanced offensive-security behavior ships gated behind OpenAI's Daybreak access program. Nothing about routing it through Token Station changes that gating: it's an OpenAI-side access control, not a Token Station one.

## Specs

| | |
|---|---|
| Context window | 1.05M tokens |
| Max input | 922K tokens |
| Max output | 128K tokens |
| Modalities | Text and image in, text out |
| Knowledge cutoff | April 30, 2026 |

## Try it

```bash
curl https://models.bytefuture.ai/v1/chat/completions \
-H "Authorization: Bearer TOKEN_STATION_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-6-astra",
"messages": [
{"role": "user", "content": "Plan a safe refactor for a pricing module, list the tests to run, and flag anything that touches billing."}
]
}'
```

Swap `openai/gpt-6-astra` for `openai/gpt-5.6-sol` in the same request to compare them on your own workload without changing anything else about your integration.

## Pricing

| | Input | Output | Cached input | Cache writes |
|---|---|---|---|---|
| GPT-6 Astra | $10/M | $50/M | $1/M | $12.50/M |
| GPT-5.6 Sol (`openai/gpt-5.6`) | $5/M | $30/M | $0.50/M | $6.25/M |

Astra's rates hold up to 272K input tokens. Past that, OpenAI bills a long-context tier for the *entire* request, not just the tokens over the line: 2x the input and cached-input rate, 1.5x the output rate. A 273K-token prompt costs roughly double a 271K-token one on the input side. Token Station passes these rates through directly, with no markup, so long-context agent sessions are worth watching if they regularly cross that threshold.

## Where Astra earns its price, and where it doesn't

Astra costs twice what GPT-5.6 Sol does per token. That premium is easiest to justify on the workloads its benchmarks target directly:

- **Long agentic coding sessions in Codex-style workflows**, where the gain isn't one-shot code quality so much as needing fewer correction rounds to reach something production-ready.
- **Computer-use and browser automation**, where OSWorld's near-50% time reduction compounds across a long session.
- **Terminal-heavy operations work**: log triage, systems debugging, the kind of task that used to need a human watching every step.

For a single Q&A call, a classification task, or anything that doesn't chain many steps together, the efficiency gains that justify Astra's price don't really apply, and a cheaper route in the GPT-5.6 family or Claude Sonnet 5 will do the job for less.

## Get started

Sign up at [models.bytefuture.ai](https://models.bytefuture.ai/signup): $1 in free credit, no card required, with up to $50 in bonus credit on your first top-up. Export your key and point your existing OpenAI-compatible integration at `openai/gpt-6-astra`.

[Try Token Station](https://models.bytefuture.ai/intro.html)
80 changes: 80 additions & 0 deletions src/content/writings/ja/gpt-6-astra-token-station.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
slug: gpt-6-astra-token-station
lang: ja
title: "GPT-6 Astra が Token Station に登場"
summary: "OpenAIの新しいフラッグシップモデルがToken Stationで利用可能になりました。エージェント型コーディング、コンピュータ操作、長時間のターミナルセッションを、これまでと同じOpenAI互換ルートで扱えます。GPT-5.6 Solからの変更点、価格、そしてAstraが高い料金に見合う場面はどこかを解説します。"
category: product
date: 2026-09-05
cta: https://models.bytefuture.ai/intro.html
cover: blog/gpt-6-astra-token-station-cover.png
draft: false
---

GPT-6 Astraが`openai/gpt-6-astra`としてToken Stationで利用可能になりました。GPT-5.6ファミリーの他のモデルで使っているのと同じOpenAI互換エンドポイントからアクセスできます。

OpenAIがAstraで重視したのは、単発の応答品質の向上ではなく、長時間のコーディングセッション、コンピュータやブラウザの操作、ターミナル中心の作業といったエージェント型のタスクです。その成果は単一のベンチマークよりも、人間が介入するまでに複数ステップのタスクをどこまで進められるかという点に表れています。

## 実際に何が変わったのか

Astraの主な向上点は、一般知識ではなく長期タスクとエージェント型のベンチマークに集中しています。

- **FrontierMath Tier 4**:97.6%。公開されている数学ベンチマークの中で最も難易度が高く、同じテストでのClaude Fable 5.1のスコア87.8%を上回っています。
- **ExploitBench**:100%。防御的なサイバーセキュリティ作業(脆弱性の発見と修正であり、エクスプロイトの作成ではない)を測るベンチマークです。
- **OSWorld 2.0**(コンピュータおよびブラウザ操作):72.6%。GPT-5.6 Solと比べ、タスクあたりの所要時間が約47%短縮されています。
- **SRE-Bench**(インシデント対応とシステム運用タスク):初回試行での解決率は88.0%、4回以内では99.2%。GPT-5.6 Solの55.9%と68.7%から向上しています。
- **Terminal-Bench 4.0**:57.7%。長く煩雑なターミナルセッションを想定して設計されたベンチマークです。

この5つのベンチマークに共通するパターンがあります。Astraは単に応答の質が上がっただけではありません。当初の指示から逸れることなく、タスクに長く取り組み続けられるようになっており、これこそがエージェント型コーディングやコンピュータ操作のワークフローにおける実際のボトルネックです。

AstraはまたOpenAIのモデルとして初めて、サイバーセキュリティ能力で「Critical」の基準を超えました。そのため、最も高度な攻撃的セキュリティ機能はOpenAIのDaybreakアクセスプログラムの制限下で提供されます。Token Station経由で利用しても、この制限が変わることはありません。これはOpenAI側のアクセス制御であり、Token Station側の制約ではありません。

## スペック

| | |
|---|---|
| コンテキストウィンドウ | 1.05M tokens |
| 最大入力 | 922K tokens |
| 最大出力 | 128K tokens |
| 対応モダリティ | テキストと画像を入力、テキストを出力 |
| 知識カットオフ | 2026年4月30日 |

## 試してみる

```bash
curl https://models.bytefuture.ai/v1/chat/completions \
-H "Authorization: Bearer TOKEN_STATION_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-6-astra",
"messages": [
{"role": "user", "content": "Plan a safe refactor for a pricing module, list the tests to run, and flag anything that touches billing."}
]
}'
```

同じリクエスト内で`openai/gpt-6-astra`を`openai/gpt-5.6-sol`に置き換えるだけで、他の実装を変更することなく、自分のワークロードで両者を比較できます。

## 価格

| | 入力 | 出力 | キャッシュ入力 | キャッシュ書き込み |
|---|---|---|---|---|
| GPT-6 Astra | $10/M | $50/M | $1/M | $12.50/M |
| GPT-5.6 Sol(`openai/gpt-5.6`) | $5/M | $30/M | $0.50/M | $6.25/M |

Astraの料金は入力272Kトークンまでは変わりません。それを超えると、OpenAIは超過分だけでなく*リクエスト全体*にロングコンテキスト料金を適用します。入力とキャッシュ入力は2倍、出力は1.5倍です。273Kトークンのプロンプトは、入力側で271Kトークンのプロンプトのおよそ2倍の費用がかかることになります。Token Stationはこれらの料金をマークアップなしでそのまま適用しているため、長いコンテキストを扱うエージェントセッションがこの閾値を常態的に超える場合は注意が必要です。

## Astraの価格に見合う場面、見合わない場面

Astraはトークンあたりの料金がGPT-5.6 Solの2倍です。この上乗せ分が最も正当化しやすいのは、ベンチマークが直接対象としているワークロードです。

- **Codexスタイルのワークフローにおける長時間のエージェント型コーディングセッション**:ここでの利点は一発でのコード品質というより、本番投入できる水準に達するまでの修正回数が少なくて済むことです。
- **コンピュータ操作とブラウザ自動化**:OSWorldで見られる約50%の時間短縮効果は、長いセッションの中で積み重なっていきます。
- **ターミナル中心の運用作業**:ログの選別やシステムデバッグなど、これまで人間が一つひとつの手順を見守る必要があったタスクです。

単発のQ&A呼び出し、分類タスク、あるいは多くのステップを連鎖させない用途では、Astraの価格を正当化する効率面の利点はほとんど当てはまりません。そうした場合は、GPT-5.6ファミリーの安価なルートやClaude Sonnet 5の方が、より低コストで同じ仕事をこなせます。

## 始めるには

[models.bytefuture.ai](https://models.bytefuture.ai/signup)でサインアップすると、カード登録不要で$1分の無料クレジットが付与され、初回チャージ時には最大$50分のボーナスクレジットも受け取れます。APIキーを取得し、既存のOpenAI互換の実装を`openai/gpt-6-astra`に向けるだけです。

[Token Station を試す](https://models.bytefuture.ai/intro.html)
Loading