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 已广泛发布的最强模型,为最苛刻的推理与长程智能体工作打造,官方称之为「面向长时间运行智能体的下一代智能」。
- 它始终开启自适应思考并支持按力度分级控制,支持 1M token 上下文窗口(厂商规格;本站实际提供的规格见上下文卡片)和厂商规格下的 128K 输出 token(目前在 Synthorai 上按 200K 上下文 / 64K 输出提供),发布即带有记忆工具、代码执行、程序化工具调用、压缩(compaction)与视觉能力。
- 它独有可拒绝请求的安全分类器,并有文档化的回退与账单返还机制。
- Synthorai 通过其 OpenAI 兼容端点提供 Claude Fable 5,目前在平台上为邀请测试。
规格与限制
| 最大输出(厂商规格) | 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 token · TTL 5m default, 1h option · 写入 1.25x (5m) / 2x (1h) |
常见问题
Claude Fable 5 API 可以免费试用吗?
Claude Fable 5 目前处于邀请测试阶段:需申请开通,而非开放注册。在 Synthorai 控制台提交申请,通过后即按标准量付费计费,无需订阅。
Claude Fable 5 最擅长什么?
自适应思考常开,按力度控制,以及1M token 上下文窗口,128K 输出和安全分类器可拒绝请求。完整能力请见 About 部分,内容取自厂商官方发布说明。
Claude Fable 5 的价格是多少?
在 Synthorai 上,Claude Fable 5 输入 $10/百万 token、输出 $50/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $1/M 计费。
Claude Fable 5 支持提示词缓存(prompt caching)吗?
支持,需主动开启:用 cache_control 断点标记稳定前缀。缓存命中的输入 token 按 $1/M 计费(未命中 $10/M);提示词需有 512 token 以上的稳定前缀才能命中缓存(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)。