Cohere's enterprise flagship model building on Command A with stronger reasoning, agentic tool use, and multilingual performance across 23 languages. Optimized for secure, high-throughput RAG, retrieval, and long-horizon agent workflows in regulated environments, with private and on-premise deployment options.
256K tokens
1
Доступна
Самый доступный
Cohere
$12.50/1M tokens
Cohere
Сортировка по общей стоимости входных и выходных токенов за 1 млн. Выберите строку, чтобы открыть страницу провайдера.
| Провайдер | Цена за 1 млн | Лимиты | Регионы | Состояние | Задержка |
|---|---|---|---|---|---|
Вход: $2.50Выход: $10.00 | 500 RPM / 600K TPM | us-east-1eu-west-1global | Работает | 0ms |
Используйте эту модель через Cohere с OpenAI-совместимым SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.cohere.com/v1",
apiKey: process.env.COHERE_API_KEY,
});
const response = await client.chat.completions.create({
model: "command-a-plus-08-2026",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);API Cohere · OpenAI-совместимый SDK