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/claude-fable-5-1-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/claude-fable-5-1-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.
21 changes: 21 additions & 0 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -485,4 +485,25 @@
<lastmod>2026-09-05</lastmod>
<priority>0.6</priority>
</url>
<url>
<loc>https://bytefuture.ai/blog/claude-fable-5-1-token-station.html</loc>
<lastmod>2026-09-05</lastmod>
<priority>0.7</priority>
</url>
<url>
<loc>https://bytefuture.ai/blog/claude-fable-5-1-token-station-zh.html</loc>
<lastmod>2026-09-05</lastmod>
<priority>0.6</priority>
</url>
<url>
<loc>https://bytefuture.ai/blog/claude-fable-5-1-token-station-ja.html</loc>
<lastmod>2026-09-05</lastmod>
<priority>0.6</priority>
</url>
<url>
<loc>https://bytefuture.ai/blog/claude-fable-5-1-token-station-ko.html</loc>
<lastmod>2026-09-05</lastmod>
<priority>0.6</priority>
</url>

</urlset>
79 changes: 79 additions & 0 deletions src/content/writings/en/claude-fable-5-1-token-station.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
---
slug: claude-fable-5-1-token-station
lang: en
title: "Claude Fable 5.1 is now on Token Station"
summary: "Anthropic's most capable model is live on Token Station as anthropic/claude-fable-5-1: the same price as Claude Fable 5, cache reads at a quarter of the cost, and stronger long-running agentic coding and research. Covers what changed, pricing, and when to reach for it over Claude Opus 5."
category: product
date: 2026-09-05
cta: https://models.bytefuture.ai/intro.html
cover: blog/claude-fable-5-1-token-station-cover.png
draft: false
---

Claude Fable 5.1 is now available on Token Station as `anthropic/claude-fable-5-1`, through the same Anthropic-compatible route already serving Claude Opus 5 and Claude Sonnet 5.

Anthropic's own guidance is worth repeating rather than glossing over: for most workloads, start with Claude Opus 5. Reach for Fable 5.1 specifically for demanding reasoning and long-horizon agentic work, or when Opus 5 at higher effort still falls short on your evals. It's a model for the hard 10% of tasks, not a blanket upgrade.

## What changed from Claude Fable 5

Fable 5.1 extends Fable 5 at the same input and output price. The concrete improvements:

- **Cache reads at $0.25/M**, a quarter of Fable 5's $1/M. For agentic workloads that resend a growing conversation or repository context on every turn, this is the change that actually moves a bill, more than any capability gain.
- **Stronger long-running agentic coding and multistep research**, plus better document, spreadsheet, and slide generation.
- **Per-message effort** (beta): change reasoning depth mid-conversation without invalidating the prompt cache.
- **Progress updates between tool calls** (beta): readable status notes during long agentic runs instead of a silent wait.
- **Turn-scoped system messages** (beta): operator instructions that apply for one turn and then clear themselves from the transcript.

Three things also break if you're migrating code written for Fable 5: forced tool use (`tool_choice: "any"` or a named tool) now returns an error, thinking blocks are tied to the model that produced them, and editing earlier turns in a conversation invalidates its thinking blocks. None of that affects a first integration through Token Station, it only matters if you're porting an existing Fable 5 harness.

## Specs

| | |
|---|---|
| Context window | 1M tokens |
| Max output | 128K tokens |
| Thinking | Adaptive, always on |
| Default effort | High |
| Knowledge cutoff | June 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": "anthropic/claude-fable-5-1",
"messages": [
{"role": "user", "content": "Audit this repository for a safe path to remove the deprecated auth module, and list every call site that needs to change."}
]
}'
```

Swap `anthropic/claude-fable-5-1` for `anthropic/claude-opus-5` in the same request to see whether the harder route actually earns its price on your workload before committing to it.

## Pricing

| | Input | Output | Cache read | Cache write (5m) | Cache write (1h) |
|---|---|---|---|---|---|
| Claude Fable 5.1 | $10/M | $50/M | $0.25/M | $12.50/M | $20/M |
| Claude Opus 5 | $5/M | $25/M | - | - | - |
| Claude Sonnet 5 | $2/M | $10/M | - | - | - |

Token Station passes these rates through directly, no markup, metered per request and visible on your own dashboard.

## When to reach for it

Fable 5.1 is worth its price on tasks where the failure mode is giving up early or losing the thread, not tasks where the answer is simply hard to compute in one shot:

- **Long-running agentic coding**: multi-file refactors, repository-wide audits, and sessions that chain planning, implementation, and test repair across many tool calls.
- **Multistep research**: pulling together findings across many sources where a shorter context window or a less patient model would summarize too early.
- **Document, spreadsheet, and slide work** that requires holding a large amount of source material in view while producing a long, structured output.

For a single hard question, a classification task, or most day-to-day chat and coding, Claude Opus 5 at a higher effort setting is the cheaper starting point, and Anthropic's own comparison table backs that up: Opus 5 shares the same 1M context and 128K output ceiling at half Fable 5.1's price.

## 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 Anthropic-compatible integration at `anthropic/claude-fable-5-1`.

[Try Token Station](https://models.bytefuture.ai/intro.html)
79 changes: 79 additions & 0 deletions src/content/writings/ja/claude-fable-5-1-token-station.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
---
slug: claude-fable-5-1-token-station
lang: ja
title: "Claude Fable 5.1 が Token Station で利用可能に"
summary: "Anthropic の最も高性能なモデルが、anthropic/claude-fable-5-1 として Token Station で利用可能になりました。価格は Claude Fable 5 と同じで、キャッシュ読み取りは4分の1のコストになり、長時間実行されるエージェント型コーディングやリサーチもより強力になっています。変更点、料金、そして Claude Opus 5 ではなくこちらを選ぶべき場面について解説します。"
category: product
date: 2026-09-05
cta: https://models.bytefuture.ai/intro.html
cover: blog/claude-fable-5-1-token-station-cover.png
draft: false
---

Claude Fable 5.1 は `anthropic/claude-fable-5-1` として Token Station で利用可能になりました。すでに Claude Opus 5 や Claude Sonnet 5 を提供している、同じ Anthropic 互換ルートを通じて提供されます。

Anthropic 自身のガイダンスは、読み流さずにきちんと繰り返しておく価値があります。ほとんどのワークロードでは、まず Claude Opus 5 から始めるべきだということです。Fable 5.1 を使うべきなのは、高度な推論や長時間にわたるエージェント型タスクが求められる場合、あるいは Opus 5 の推論強度を上げても自社の評価基準を満たせない場合に限られます。これは困難な10%のタスクのためのモデルであり、一律のアップグレードではありません。

## Claude Fable 5 からの変更点

Fable 5.1 は、入力と出力の価格を据え置いたまま Fable 5 を拡張したものです。具体的な改善点は次のとおりです。

- **キャッシュ読み取りが $0.25/M に**。Fable 5 の $1/M の4分の1です。会話やリポジトリのコンテキストが増え続け、それを毎ターン再送信するエージェント型ワークロードでは、能力向上以上に請求額へ直接効いてくる変更です。
- **長時間実行のエージェント型コーディングと複数ステップのリサーチが強化**され、文書、スプレッドシート、スライドの生成品質も向上しています。
- **メッセージ単位の推論強度**(ベータ版):会話の途中で、プロンプトキャッシュを無効にすることなく推論の深さを変更できます。
- **ツール呼び出し間の進捗更新**(ベータ版):長時間のエージェント実行中に、黙って待たされる代わりに読みやすい状態メッセージが表示されます。
- **ターン限定のシステムメッセージ**(ベータ版):そのターンだけ適用される運用者向けの指示で、適用後は会話履歴から自動的に消去されます。

Fable 5 向けに書かれたコードを移行する場合、さらに3点が影響を受けます。強制的なツール使用(`tool_choice: "any"` や特定のツール名の指定)はエラーを返すようになったこと、思考ブロックはそれを生成したモデルに紐づくこと、会話の以前のターンを編集するとそのターンの思考ブロックが無効になることです。これらは Token Station を通じた最初の統合には影響せず、既存の Fable 5 用の実装を移植する場合にのみ関係します。

## スペック

| | |
|---|---|
| コンテキストウィンドウ | 1M tokens |
| 最大出力 | 128K tokens |
| 思考モード | 適応的、常時オン |
| デフォルトの推論強度 | 高 |
| 知識のカットオフ | 2026年6月 |

## 試してみる

```bash
curl https://models.bytefuture.ai/v1/chat/completions \
-H "Authorization: Bearer TOKEN_STATION_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "anthropic/claude-fable-5-1",
"messages": [
{"role": "user", "content": "Audit this repository for a safe path to remove the deprecated auth module, and list every call site that needs to change."}
]
}'
```

同じリクエストで `anthropic/claude-fable-5-1` を `anthropic/claude-opus-5` に置き換えれば、本採用の前に、より高価なルートが自社のワークロードでその価格に見合う価値を発揮するかどうかを確認できます。

## 料金

| | 入力 | 出力 | キャッシュ読み取り | キャッシュ書き込み(5分) | キャッシュ書き込み(1時間) |
|---|---|---|---|---|---|
| Claude Fable 5.1 | $10/M | $50/M | $0.25/M | $12.50/M | $20/M |
| Claude Opus 5 | $5/M | $25/M | - | - | - |
| Claude Sonnet 5 | $2/M | $10/M | - | - | - |

Token Station はこれらの料金をそのまま、マークアップなしでパススルーします。リクエスト単位で計測され、自分のダッシュボードで確認できます。

## こんな場面で選ぶ

Fable 5.1 が価格に見合うのは、失敗のパターンが早々に諦めてしまうことや話の筋を見失うことにあるタスクであり、単に一度で答えを出すのが難しいタスクではありません。

- **長時間実行のエージェント型コーディング**:複数ファイルにまたがるリファクタリング、リポジトリ全体の監査、そして多数のツール呼び出しにわたって計画、実装、テスト修正を連鎖させるセッション。
- **複数ステップのリサーチ**:多数の情報源にまたがる調査結果をまとめる作業。コンテキストウィンドウが短いモデルや、根気のないモデルでは早々に要約してしまうような場面。
- **文書、スプレッドシート、スライドの作成**:大量の元資料を参照し続けながら、長く構造化された出力を作成する必要がある作業。

単発の難しい質問や分類タスク、あるいは日々のチャットやコーディングの大半については、推論強度を上げた Claude Opus 5 の方が安価な出発点になります。Anthropic 自身の比較表もこれを裏づけており、Opus 5 は Fable 5.1 と同じ 1M のコンテキストと 128K の出力上限を持ちながら、価格はその半分です。

## はじめ方

[models.bytefuture.ai](https://models.bytefuture.ai/signup) で登録すると、クレジットカード不要で $1 分の無料クレジットがもらえ、初回のチャージでは最大 $50 分のボーナスクレジットも付与されます。キーをエクスポートし、既存の Anthropic 互換の実装を `anthropic/claude-fable-5-1` に向けてください。

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