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
Kullanılabilir
En ucuz
Amazon Bedrock
$18.00/1M tokens
En hızlı
Anthropic
501ms TTFT
Amazon Bedrock, Anthropic
Toplam maliyete göre sıralanır (1M token başına giriş + çıkış). Sağlayıcı ayrıntılarını görmek için bir satır seçin.
| Sağlayıcı | Fiyat (1M başına) | Hız sınırları | Bölgeler | Durum | Gecikme |
|---|---|---|---|---|---|
Giriş: $3.00Çıkış: $15.00 | 100 RPM / 200K TPM | us-east-1us-west-2eu-west-1 | Sağlıklı | 0ms | |
Giriş: $3.00Çıkış: $15.00 | 100 RPM / 200K TPM | us-east-1eu-west-1 | Sağlıklı | 501ms |
Bu modeli Amazon Bedrock üzerinden OpenAI uyumlu bir SDK ile kullanın.
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 kullanılıyor · OpenAI uyumlu SDK