Claude

Anthropic: Claude Fable 5Chat

anthropic/claude-fable-5

Anthropic's most powerful generally available model — the first public Mythos-class model, a new tier above Opus.

1M context window
128K max output tokens
Released: 2026-06-09
Protocols:OpenAIAnthropic
Capabilities:VisionFunction CallingReasoningPrompt CachingPDF InputWeb Search

定价

价格1.5折
HaoAI
官方
输入 Token
$1.5/M
$10/M
输出 Token
$7.5/M
$50/M
缓存读取
$0.15/M
$1/M
缓存写入
$1.88/M
$12.5/M
缓存写入 5 分钟
$1.88/M
$12.5/M
缓存写入 1 小时
$3/M
$20/M

Code Examples

import anthropic

client = anthropic.Anthropic(
    base_url="https://api.hao.ai/anthropic",
    api_key="YOUR_HAOAI_API_KEY",
)

message = client.messages.create(
    model="anthropic/claude-fable-5",
    max_tokens=1024,
    messages=[
        {"role": "user", "content": "Hello!"}
    ],
)

print(message.content[0].text)

Related Models