Command R+

Özellikle veri tabanlarında arama yapıp yanıt üretme (RAG) konusunda endüstri lideri. İşletmelerin kendi verileriyle harika çalışır.

Ücretli text CC BY-NC 4.0

Teknik Özellikler

Bağlam Penceresi 128K token
Maks. Çıktı 4K token
Parametre Sayısı 104B
Eğitim Kesimi 2024-03
Lisans CC BY-NC 4.0
Mimari Transformer
Modaliteler: text
Diller: tr en es fr de it pt ja ko ar

Kabiliyetler

💬 Sohbet
💻 Kod Üretimi
👁️ Görsel Anlama
🎨 Görsel Üretimi
🔧 Fonksiyon Çağırma
Streaming
📋 JSON Modu
🧠 Akıl Yürütme
🔍 Web Arama
📁 Dosya Yükleme

Kullanım Alanları

📌 RAG tabanlı botlar
📌 İş süreci otomasyonu
📌 Çok dilli müşteri hizmetleri

Araç Seti & IDE'ler

🌐 Platformlar

Cohere APIOpenRouter

API Kullanımı

cURL
curl https://openrouter.ai/api/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "cohere/command-r-plus",
    "messages": [
      {"role": "user", "content": "Merhaba!"}
    ]
  }'
JavaScript (fetch)
const response = await fetch('https://openrouter.ai/api/v1/chat/completions', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    model: 'cohere/command-r-plus',
    messages: [{ role: 'user', content: 'Merhaba!' }],
  }),
});
const data = await response.json();
console.log(data.choices[0].message.content);