Anthropic's balanced model offering strong performance at lower cost and latency than Opus. Excellent for everyday coding, analysis, and content generation tasks with good reasoning capabilities.
200K tokens
2
可用
价格最低
Amazon Bedrock
$18.00/1M tokens
速度最快
Anthropic
667ms TTFT
Amazon Bedrock, Anthropic
按每百万输入与输出 token 的总成本排序。选择一行可查看提供商详情。
| 提供商 | 价格(每百万) | 速率限制 | 区域 | 状态 | 延迟 |
|---|---|---|---|---|---|
输入: $3.00输出: $15.00 | 100 RPM / 200K TPM | us-east-1us-west-2eu-west-1 | 正常 | 0ms | |
输入: $3.00输出: $15.00 | 100 RPM / 200K TPM | us-east-1eu-west-1 | 正常 | 667ms |
通过 Amazon Bedrock 使用此模型,兼容 OpenAI SDK。
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.amazon-bedrock.com/v1",
apiKey: process.env.AMAZON_BEDROCK_API_KEY,
});
const response = await client.chat.completions.create({
model: "anthropic.claude-sonnet-4-6-20260301-v1:0",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);使用 Amazon Bedrock API · 兼容 OpenAI SDK