Claude Sonnet 4.6 API
由 Anthropic 提供支持的 Claude Sonnet 4.6 大模型完整 API 参考。
模型版本
此 API 支持两种 Claude Sonnet 4.6 模型版本:
快速对比
Claude Sonnet 4.6 Text to Text
接口地址
POST /api/v1/chat/completions
请求参数
必填参数
消息支持
可选
请求示例
const response = await fetch('https://api.flaq.ai/api/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Accept': 'text/event-stream',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'claude-sonnet-4.6-text-to-text',
messages: [
{
role: 'user',
content: 'Write a concise product update for a developer audience.'
}
],
stream: true,
max_tokens: 2048,
top_p: 0.5,
top_k: 50
})
});
Claude Sonnet 4.6 File Analysis
接口地址
POST /api/v1/chat/completions
请求参数
必填参数
消息支持
可选
请求示例
const response = await fetch('https://api.flaq.ai/api/v1/chat/completions', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Accept': 'text/event-stream',
'Content-Type': 'application/json'
},
body: JSON.stringify({
model: 'claude-sonnet-4.6-file-analysis',
messages: [
{
role: 'user',
content: [
{ type: 'text', text: 'Summarize this file and extract the key risks.' },
{
type: 'file',
file: {
filename: 'demo.pdf',
file_data: 'https://example.com/demo.pdf'
}
}
]
}
],
stream: true,
max_tokens: 4096,
top_p: 0.5,
top_k: 50
})
});
响应格式
Claude Sonnet 4.6 大模型返回 OpenAI 兼容生成响应。stream: true 时响应为 Server-Sent Events;stream: false 时响应为单个 JSON 对象。
成功响应
data: {"id":"chatcmpl-...","object":"chat.completion.chunk","created":1710000000,"model":"claude-sonnet-4.6-file-analysis","choices":[{"index":0,"delta":{"role":"assistant"},"finish_reason":null}]}
data: {"id":"chatcmpl-...","object":"chat.completion.chunk","created":1710000000,"model":"claude-sonnet-4.6-file-analysis","choices":[{"index":0,"delta":{"content":"Here is a concise summary"},"finish_reason":null}]}
data: {"id":"chatcmpl-...","object":"chat.completion.chunk","created":1710000000,"model":"claude-sonnet-4.6-file-analysis","choices":[{"index":0,"delta":{},"finish_reason":"stop"}]}
data: {"id":"chatcmpl-...","object":"chat.completion.chunk","created":1710000000,"model":"claude-sonnet-4.6-file-analysis","choices":[],"usage":{"prompt_tokens":12,"completion_tokens":8,"total_tokens":20}}
data: [DONE]
错误响应
event: error
data: {"error":{"message":"API requests too frequent, exceeding rate limit","type":"rate_limit_error","code":"1302","param":null}}
最佳实践
- 使用结构化消息: 通过
messages[] 发送对话历史,而不是把上下文压平成一个 prompt。
- 选择正确的模型版本: 仅文本推理与写作使用 Text to Text,需要文件或图像时使用 File Analysis。
- 谨慎调整 Claude 参数: 支持
top_p 和 top_k,它们会影响输出多样性。
- 消费 SSE 事件: 追加
choices[0].delta.content 进行流式展示,并将 data: [DONE] 视为成功完成。
- 仅发送受支持的输入: 当前客户端中的 Text 模型会忽略不支持的文件和图像部分。