Claude Fable 5.1 是 Anthropic 当前能力最强的模型,2026 年 9 月 1 日发布,面向高难度推理与长程智能体工作。
- 输入
- 文本 图像 $10/M
- 输出
- 文本 $50/M
- 缓存读取
- $0.25/M
- 上下文
- 1M
- 知识截止
- 2026-06
Benchmark 成绩
厂商公布: Alibaba (Qwen) Anthropic DeepSeek Google MiniMax Moonshot OpenAI Z.ai
价格在同类中的位置
价格在 65 个同类模型中的位置
这条线显示该模型的价格,在 Synthorai 上同类模型里处于什么位置。两端标出了最便宜和最贵的那个。这里是基础价,批量、区域和缓存写入的折扣见价格页。
规格与限制
Token
| 上下文窗口(厂商规格) | 1,000,000 |
|---|---|
| 最大输出(厂商规格) | 128,000 |
| 知识截止 | 2026-06 |
提示词缓存
| 缓存方式 | 显式(需开启) |
|---|---|
| 最低前缀 | 1,024 |
| 存活时间 | 默认 5 分钟,可选 1 小时 |
| 写入成本 | 1.25x (5m) / 2x (1h) |
思考
| 厂商参数 | output_config.effort (thinking is adaptive-only and always on) |
|---|---|
| 可选值 | effort low · medium · high · xhigh · max |
| 默认值 | thinking always on (adaptive); effort high 请求未指定时生效 |
| 可关闭 | 不支持 |
| 思考行为 | Effort can be changed per message mid-conversation without invalidating the prompt cache (beta). Turn-scoped system messages and readable progress updates between tool calls are the other additions, both beta. |
| 参数 | reasoning_effort |
| 取值 | minimal · low · medium · high 网关侧参数面——以上方厂商映射为准 |
模型
| 模态 | 文本 + 图像 → 文本 |
|---|
- Extends Claude Fable 5 at the same input and output prices with cache reads at a quarter of the cost
- three changes break callers moving from Fable 5, because forced tool use returns an error, thinking blocks are tied to the model that produced them, and editing an earlier turn invalidates them
30 秒用上 Claude Fable 5.1
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-1",
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-1",
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-1",
"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-1",
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-1")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 Claude Fable 5.1
- Anthropic 自己的选型指引仍建议多数负载从 Claude Opus 5 起步,只有当 Opus 5 在更高力度下仍不达标时才用这一档。
- 它完整沿用了 Claude Fable 5 的形态:1M token 上下文窗口、128K 输出 token、文本与图像输入、文本输出,以及常开的自适应思考,力度默认为 high。
- 升级的理由是成本表现与长程续航,而不是更大的窗口。
- 输入与输出维持每百万 token 10 美元与 50 美元,而缓存读取降到此前的四分之一;Anthropic 称典型负载成本下降约 25%,高度智能体化的负载下降约 45%。
- 从 Fable 5 迁移有三处破坏性变更:强制工具调用现在会报错;思考块与产生它的模型绑定,更早的 Claude 模型无法读取;编辑更早的对话轮次会使其失效。
- 新增能力都向后兼容,五项中有三项处于 beta:逐条消息的力度设置、仅作用于当前轮次的系统消息,以及工具调用之间可读的进度更新;更低的缓存读价和内容溯源则已正式提供。
- Claude Mythos 5.1 仅向 Project Glasswing 参与者提供同等能力。
- 在 Synthorai 上它通过 OpenAI 兼容的对话端点提供,目前为邀请制内测。
常见问题
Claude Fable 5.1 API 可以免费试用吗?
Claude Fable 5.1 目前处于邀请测试阶段:需申请开通,而非开放注册。在 Synthorai 控制台提交申请,通过后即按标准量付费计费,无需订阅。
Claude Fable 5.1 最擅长什么?
1M token 上下文窗口,128K 输出、缓存读取价为 Fable 5 的四分之一、不再支持强制工具调用。完整能力请见「关于」部分,内容取自厂商官方发布说明。
Claude Fable 5.1 的价格是多少?
在 Synthorai 上,Claude Fable 5.1 输入 $10/百万 token、输出 $50/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.25/M 计费。
Claude Fable 5.1 支持提示词缓存(prompt caching)吗?
支持,需主动开启:用 cache_control 断点标记稳定前缀。缓存命中的输入 token 按 $0.25/M 计费(未命中 $10/M);提示词需有 1,024 token 以上的稳定前缀才能命中缓存(TTL 默认 5 分钟,可选 1 小时)。 提示词缓存指南 →
如何开通 Claude Fable 5.1?
Claude Fable 5.1 处于邀请测试阶段:在 Synthorai 控制台申请开通。审批通过后与其他模型用法一致:把 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "claude-fable-5-1" 即可。
Claude Fable 5.1 的知识截止日期是什么时候?
Claude Fable 5.1 的知识截止日期为 2026-06,依据厂商官方文档(数据核验于 2026-09-05)。
相关模型
对比
本页每个值都转录自厂商自己的文档(链接见上),并带有核对日期。价格在全目录范围内比较;各厂商定义不同的规格值,只说明差异而不作图表对比。此处没有任何由我们测量的数据,也不做评分。