Claude Fable 5
ベンダー定価。プラットフォーム手数料なし、従量課金。 これらは公式 list 価格です。ログイン中のお客様は /console/pricing でワークスペース割引を含む実効価格を確認できます。 キャッシュヒット率 70% 時の実効入力単価:$3.7/M. 明示的な cache_control ブレークポイント方式です。キャッシュ読み取りは入力価格の 0.1 倍で課金され、キャッシュ書き込みには 1.25 倍(5 分 TTL)または 2 倍(1 時間 TTL)の割増が付き、モデルごとに最小プレフィックスサイズが適用されます。 Runs adaptive thinking always-on with effort-based depth control; includes safety classifiers with documented fallback and billing-credit mechanics.
30 秒で Claude Fable 5 を使う
OpenAI 互換。base_url を差し替えるだけで、SDK はそのまま。POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="claude-fable-5",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "claude-fable-5",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "claude-fable-5",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "claude-fable-5",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("claude-fable-5")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));Claude Fable 5 について
Claude Fable 5 は Anthropic が広く一般提供する中で最も高性能なモデルで、最も要求の厳しい推論と長期のエージェント作業のために構築されています。
- 公式には「長時間稼働するエージェントのための次世代の知能」と位置づけられています。
- 適応的思考(adaptive thinking)を常時オンとし、エフォートベースの深さ制御を備え、1M トークンのコンテキストウィンドウ(ベンダー仕様。
- 実際の提供値はコンテキストタイルを参照)と 128K 出力トークンをベンダー仕様で持ちます(Synthorai では現在 200K コンテキスト / 64K 出力で提供)。
- メモリツール、コード実行、プログラマティックなツール呼び出し、コンパクション、ビジョンを備えて登場しました。
- 特徴的な点として、リクエストを拒否しうる安全性分類器を含み、フォールバックと課金クレジットの仕組みが文書化されています。
- Synthorai は Claude Fable 5(現在プラットフォーム上では招待制ベータ)を OpenAI 互換エンドポイント経由で提供します。
スペックと制限
| 最大出力(ベンダー仕様) | 128,000 |
| モダリティ | text + image → text |
| 機能 | tools · parallel_tool_calls · structured_output · streaming · vision · batch · caching · reasoning |
| 特記事項 | Runs adaptive thinking always-on with effort-based depth control; includes safety classifiers with documented fallback and billing-credit mechanics. |
| プロンプトキャッシュ | 明示(オプトイン) · 最小プレフィックス 512 トークン · TTL 5m default, 1h option · 書き込み 1.25x (5m) / 2x (1h) |
よくある質問
Claude Fable 5 API は無料で試せますか?
Claude Fable 5 は現在招待制ベータです。オープン登録ではなく申請制で、Synthorai コンソールから申請できます。承認後は標準の従量課金が適用され、サブスクリプションは不要です。
Claude Fable 5 は何が得意ですか?
適応的思考を常時オン、エフォートベース制御、さらに1M トークンのコンテキストウィンドウと 128K 出力とリクエストを拒否しうる安全性分類器。全体像はベンダー公式のリリースノートに基づく About セクションをご覧ください。
Claude Fable 5 の料金はいくらですか?
Synthorai 上の Claude Fable 5 は入力 100 万トークンあたり $10、出力 100 万トークンあたり $50 です。ベンダー定価のままで、プラットフォーム手数料はありません。キャッシュ済み入力トークンは $1/M で課金されます。
Claude Fable 5 はプロンプトキャッシュに対応していますか?
はい。オプトイン方式で、安定したプレフィックスを cache_control ブレークポイントでマークします。キャッシュ済み入力トークンは $1/M(未キャッシュは $10/M)で課金されます。なお、キャッシュには 512 トークン以上の安定したプレフィックスが必要です(TTL 5m default, 1h option)。 Claude Fable 5 キャッシュガイド →
Claude Fable 5 を利用するには?
Claude Fable 5 は招待制ベータです。Synthorai コンソールからアクセスを申請してください。承認後は他のモデルと同じ使い方です。OpenAI SDK の base_url を "https://synthorai.io/v1" に向け、model="claude-fable-5" を設定するだけです。
Claude Fable 5 の知識カットオフはいつですか?
ベンダー公式ドキュメントによると、Claude Fable 5 の知識カットオフは 2026-01 です(2026-07-09 時点)。