diff --git a/blog/asset-sources/claude-fable-5-1-token-station-cover.svg b/blog/asset-sources/claude-fable-5-1-token-station-cover.svg
new file mode 100644
index 0000000..ef77370
--- /dev/null
+++ b/blog/asset-sources/claude-fable-5-1-token-station-cover.svg
@@ -0,0 +1,70 @@
+
diff --git a/blog/claude-fable-5-1-token-station-cover.png b/blog/claude-fable-5-1-token-station-cover.png
new file mode 100644
index 0000000..b0beb6c
Binary files /dev/null and b/blog/claude-fable-5-1-token-station-cover.png differ
diff --git a/sitemap.xml b/sitemap.xml
index 53999cb..76a2743 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -485,4 +485,25 @@
2026-09-050.6
+
+ https://bytefuture.ai/blog/claude-fable-5-1-token-station.html
+ 2026-09-05
+ 0.7
+
+
+ https://bytefuture.ai/blog/claude-fable-5-1-token-station-zh.html
+ 2026-09-05
+ 0.6
+
+
+ https://bytefuture.ai/blog/claude-fable-5-1-token-station-ja.html
+ 2026-09-05
+ 0.6
+
+
+ https://bytefuture.ai/blog/claude-fable-5-1-token-station-ko.html
+ 2026-09-05
+ 0.6
+
+
diff --git a/src/content/writings/en/claude-fable-5-1-token-station.md b/src/content/writings/en/claude-fable-5-1-token-station.md
new file mode 100644
index 0000000..e1618f3
--- /dev/null
+++ b/src/content/writings/en/claude-fable-5-1-token-station.md
@@ -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)
diff --git a/src/content/writings/ja/claude-fable-5-1-token-station.md b/src/content/writings/ja/claude-fable-5-1-token-station.md
new file mode 100644
index 0000000..378b3e7
--- /dev/null
+++ b/src/content/writings/ja/claude-fable-5-1-token-station.md
@@ -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)
diff --git a/src/content/writings/ko/claude-fable-5-1-token-station.md b/src/content/writings/ko/claude-fable-5-1-token-station.md
new file mode 100644
index 0000000..f100c99
--- /dev/null
+++ b/src/content/writings/ko/claude-fable-5-1-token-station.md
@@ -0,0 +1,79 @@
+---
+slug: claude-fable-5-1-token-station
+lang: ko
+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용으로 작성된 코드를 마이그레이션하는 경우 세 가지가 달라집니다. 강제 도구 사용(`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)
diff --git a/src/content/writings/zh/claude-fable-5-1-token-station.md b/src/content/writings/zh/claude-fable-5-1-token-station.md
new file mode 100644
index 0000000..2067cf1
--- /dev/null
+++ b/src/content/writings/zh/claude-fable-5-1-token-station.md
@@ -0,0 +1,79 @@
+---
+slug: claude-fable-5-1-token-station
+lang: zh
+title: "Claude Fable 5.1 现已登陆 Token Station"
+summary: "Anthropic 目前能力最强的模型已作为 anthropic/claude-fable-5-1 在 Token Station 上线:价格与 Claude Fable 5 相同,缓存读取费用降至四分之一,长时间运行的智能体编码与研究能力也更强。本文介绍具体变化、定价,以及何时应选择它而非 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 现已在 Token Station 上线,路由为 `anthropic/claude-fable-5-1`,与已经承载 Claude Opus 5 和 Claude Sonnet 5 的 Anthropic 兼容接口相同。
+
+Anthropic 官方的建议值得原文重申,而不是一笔带过:对于大多数工作负载,应首先使用 Claude Opus 5。只有在需要高强度推理和长周期智能体任务时,或者在提高 Opus 5 的推理强度后仍无法通过你的评测时,才应该选用 Fable 5.1。它是为那困难的 10% 任务准备的模型,而不是一次全面升级。
+
+## 相较 Claude Fable 5 的变化
+
+Fable 5.1 在输入和输出价格不变的基础上对 Fable 5 进行了扩展。具体改进如下:
+
+- **缓存读取费用降至 $0.25/M**,为 Fable 5 的 $1/M 的四分之一。对于每一轮都要重新发送不断增长的对话或代码库上下文的智能体工作负载来说,这才是真正影响账单的变化,比任何能力提升都更明显。
+- **更强的长时间运行智能体编码与多步骤研究能力**,文档、表格和幻灯片生成质量也有所提升。
+- **按消息设置推理强度**(测试版):可在对话中途调整推理深度,且不会使提示缓存失效。
+- **工具调用之间的进度更新**(测试版):在长时间的智能体运行过程中提供可读的状态说明,而不是让你静默等待。
+- **限定单轮的系统消息**(测试版):操作员指令仅在当前一轮生效,之后会自动从对话记录中清除。
+
+如果你正在迁移为 Fable 5 编写的代码,还有三处变化会导致中断:强制工具调用(`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)