Anthropic's previous-generation balanced model with strong coding and analysis capabilities. Offers excellent price-performance ratio for production workloads requiring reliable quality.
200K tokens
1
Доступна
Самый доступный
Anthropic
$18.00/1M tokens
Самый быстрый
Anthropic
667ms TTFT
Anthropic
Сортировка по общей стоимости входных и выходных токенов за 1 млн. Выберите строку, чтобы открыть страницу провайдера.
| Провайдер | Цена за 1 млн | Лимиты | Регионы | Состояние | Задержка |
|---|---|---|---|---|---|
Вход: $3.00Выход: $15.00 | 100 RPM / 200K TPM | us-east-1eu-west-1 | Работает | 667ms |
Используйте эту модель через Anthropic с OpenAI-совместимым SDK.
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-sonnet-4-5-20251001",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);API Anthropic · OpenAI-совместимый SDK