Cohere's flagship 111B parameter model optimized for demanding enterprises requiring fast, secure, and high-quality AI. Excels at RAG, tool use, and multilingual tasks with strong reasoning capabilities.
256K tokens
1
Kullanılabilir
En ucuz
Cohere
$12.50/1M tokens
Cohere
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ş: $2.50Çıkış: $10.00 | 300 RPM / 500K TPM | us-east-1eu-west-1global | Sağlıklı | 0ms |
Bu modeli Cohere üzerinden OpenAI uyumlu bir SDK ile kullanın.
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-03-2025",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Cohere API kullanılıyor · OpenAI uyumlu SDK