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

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

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

anthropic/claude-3.7-sonnet

在线对话

发布时间

-

模型系列

输入模态

输出模态

上下文窗口

200,000

最大输出长度

64,000

输入价格

¥0 / 1M tokens

输出价格

¥0 / 1M tokens

anthropic 最新的功能最强大的多模态模型,支持文本、图片输入,适用于复杂、多步骤的任务

anthropic/claude-3.7-sonnet的供应商

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

亚
亚马逊 Amazon AWS
国内

首字延迟

2.70s

吞吐量

223tps

可用性

75.00%

供应商模型名

amazon/claude-3.7-sonnet

支持的参数

include_reasoning
max_tokens
reasoning
stop
temperature
tool_choice
tools
top_k
top_p

近期可用性

3月4日 6 PM75.00%
暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据暂无数据3月2日 1 PM: 100.00%3月2日 3 PM: 100.00%3月2日 3 PM: 100.00%3月2日 4 PM: 100.00%3月4日 6 PM: 75.00%

推理

-

支持的响应格式

OpenAI Chat Completions
OpenAI Responses
Anthropic Messages
Google VertexAI

请求日志收集

-

可用于蒸馏

-

上下文长度

128,000

最大输出

128,000

输入价格

¥0 / 1M tokens

输出价格

¥0 / 1M tokens

anthropic/claude-3.7-sonnet的性能

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

吞吐量

65.50 tok/s

首字延迟

3.21 s

anthropic/claude-3.7-sonnet的可用性

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

anthropic/claude-3.7-sonnet示例代码与 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-3.7-sonnet",
  messages: [
    { role: "user", content: "Hello, how are you?" }
  ],
  temperature: 0.7,
  max_tokens: 1000,
});

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