智脑API服务平台
智脑API服务平台
  • 模型广场
  • API 文档
智脑API服务平台

让企业用 AI,像用水电一样简单

更多链接
模型广场控制台API Keys用量查询文档
© 2026 智脑API服务平台. 保留所有权利。|ICP备案号|隐私政策|服务条款

anthropic/claude-sonnet-4-6

在线对话

发布时间

-

模型系列

输入模态

输出模态

上下文窗口

1,000,000

最大输出长度

128,000

输入价格

¥0 / 1M tokens

输出价格

¥0 / 1M tokens

Claude Sonnet 4.6 是迄今为止功能最强大的 Sonnet 模型。该版本在编程、计算机操作、长上下文推理、智能体规划、知识工作及设计等技能领域实现了全面升级。

anthropic/claude-sonnet-4-6的供应商

智脑 API 根据调度策略向最合适的供应商发起请求,并自动回退至可用性最高的供应商。

七
七牛云
国内

首字延迟

16.17s

吞吐量

606.27tps

可用性

100.00%

供应商模型名

qiniu/claude-sonnet-4-6

支持的参数

近期可用性

3月4日 11 PM100.00%
3月3日 12 PM: 100.00%3月3日 1 PM: 100.00%3月3日 1 PM: 100.00%3月3日 2 PM: 100.00%3月3日 2 PM: 100.00%3月3日 3 PM: 100.00%3月3日 3 PM: 100.00%3月3日 3 PM: 100.00%3月3日 3 PM: 100.00%3月3日 4 PM: 100.00%3月3日 4 PM: 98.45%3月3日 5 PM: 100.00%3月3日 5 PM: 100.00%3月3日 5 PM: 100.00%3月3日 5 PM: 100.00%3月3日 6 PM: 100.00%3月3日 6 PM: 100.00%3月3日 6 PM: 100.00%3月3日 7 PM: 100.00%3月3日 7 PM: 80.65%3月3日 8 PM: 74.07%3月3日 8 PM: 84.21%3月3日 9 PM: 96.43%3月3日 10 PM: 87.36%3月3日 10 PM: 89.02%3月3日 11 PM: 97.06%3月3日 11 PM: 90.67%3月4日 8 AM: 100.00%3月4日 8 AM: 100.00%3月4日 9 AM: 100.00%3月4日 9 AM: 100.00%3月4日 10 AM: 100.00%3月4日 10 AM: 96.43%3月4日 11 AM: 97.87%3月4日 11 AM: 100.00%3月4日 12 PM: 97.50%3月4日 12 PM: 100.00%3月4日 1 PM: 100.00%3月4日 1 PM: 100.00%3月4日 1 PM: 100.00%3月4日 1 PM: 100.00%3月4日 2 PM: 100.00%3月4日 2 PM: 100.00%3月4日 3 PM: 100.00%3月4日 3 PM: 100.00%3月4日 4 PM: 100.00%3月4日 4 PM: 100.00%3月4日 4 PM: 100.00%3月4日 5 PM: 100.00%3月4日 5 PM: 100.00%3月4日 5 PM: 100.00%3月4日 5 PM: 100.00%3月4日 6 PM: 100.00%3月4日 6 PM: 100.00%3月4日 6 PM: 100.00%3月4日 6 PM: 100.00%3月4日 7 PM: 100.00%3月4日 7 PM: 92.31%3月4日 7 PM: 100.00%3月4日 8 PM: 87.50%3月4日 8 PM: 100.00%3月4日 8 PM: 100.00%3月4日 9 PM: 100.00%3月4日 9 PM: 100.00%3月4日 9 PM: 95.24%3月4日 10 PM: 100.00%3月4日 10 PM: 100.00%3月4日 10 PM: 100.00%3月4日 10 PM: 100.00%3月4日 11 PM: 100.00%3月4日 11 PM: 100.00%3月4日 11 PM: 100.00%

推理

-

支持的响应格式

OpenAI Chat Completions
OpenAI Responses
Anthropic Messages
Google VertexAI

请求日志收集

-

可用于蒸馏

-

上下文长度

128,000

最大输出

128,000

输入价格

¥0 / 1M tokens

输出价格

¥0 / 1M tokens

anthropic/claude-sonnet-4-6的性能

在智脑 API 上对比不同供应商的表现

吞吐量

606.27 tok/s

首字延迟

16.17 s

anthropic/claude-sonnet-4-6的可用性

anthropic/claude-sonnet-4-6的各供应商可用性

anthropic/claude-sonnet-4-6示例代码与 API

获取 API Key

智脑 API 为您统一各供应商的请求与响应格式

import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.360.cn/v1",
  apiKey: process.env.ZHINAO_API_KEY,
});

const response = await client.chat.completions.create({
  model: "anthropic/claude-sonnet-4-6",
  messages: [
    { role: "user", content: "Hello, how are you?" }
  ],
  temperature: 0.7,
  max_tokens: 1000,
});

console.log(response.choices[0].message.content);