Anthropic's most powerful model in the Claude 3 family, excelling at complex analysis, nuanced content generation, scientific reasoning, and code generation with extended context support.
200K tokens
1
Kullanılabilir
En ucuz
Anthropic
$90.00/1M tokens
En hızlı
Anthropic
501ms TTFT
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ş: $15.00Çıkış: $75.00 | 50 RPM / 40K TPM | us-east-1eu-west-1 | Sağlıklı | 501ms |
Bu modeli Anthropic üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.anthropic.com/v1",
apiKey: process.env.ANTHROPIC_API_KEY,
});
const response = await client.chat.completions.create({
model: "claude-3-opus-20240229",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Anthropic API kullanılıyor · OpenAI uyumlu SDK