Claude Fable 5.1 在 NextModel 中是什么?
Claude Fable 5.1 是 NextModel 目录中的 Anthropic 模型,常用于 图像理解、multimodal chat 工作负载。当前展示价格为 $10 / 1M tokens、输出 $50 / 1M tokens,上下文窗口为 1M token。
适用场景
- 图像理解
- multimodal chat
OpenAI 兼容调用示例
保持 OpenAI SDK 调用方式不变,把 base_url 改为 NextModel,并使用模型目录 ID anthropic--claude-fable-5.1。
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.nextmodel.app/v1"
)
resp = client.chat.completions.create(
model="anthropic/claude-fable-5.1",
messages=[{"role": "user", "content": "Hello from NextModel"}]
)
print(resp.choices[0].message.content)相似替代项
Gemini 3.8 Flash 是现阶段综合性能最为出色的主力模型。相较 Gemini 3.7 Flash,该模型在软件工程、智能代理任务以及专业领域复杂多步骤核心推理能力方面,均实现全方位大幅升级。
Anthropic Claude 4.5 Haiku,极速低成本模型。性能接近 Claude Sonnet 4,适合大规模部署、多智能体协作和对延迟敏感的场景。支持视觉理解和函数调用。
Anthropic Claude 4.5 Opus,强大推理能力。支持最高 1M token 上下文窗口(特殊模式),擅长处理整个代码库、长文档和多日对话历史。扩展思考模式下可进行深度推理。
参考
相关文章
上线前如何估算 AI API 成本
Listed price only tells you the unit cost. This walkthrough turns that into a traffic estimate.
Lin Qiming
LLM Gateway: Compare Options and Alternatives
Same OpenAI-compatible base URL, with routing and billing sitting in front of the model.
Zhao Yu'an
给开发者的 OpenRouter 替代方案:当团队还需要 AI API 成本治理时
If the buying question is cost control rather than one model, start here.
Zhao Yu'an
常见问题