InternLM 2.5 20B
Özellikle araç kullanımı (tool calling) ve otonom görevlerde 20B sınıfının ötesinde bir performans sergiler.
Ücretsiz
text
Apache 2.0
Teknik Özellikler
Bağlam Penceresi
1.0M token
Maks. Çıktı
8K token
Parametre Sayısı
20B
Eğitim Kesimi
2024-05
Lisans
Apache 2.0
Mimari
Transformer
Modaliteler: text
Diller: en zh
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ı
📌 Ajan platformları
📌 Büyük belge arama
📌 Matematiksel mantık
Araç Seti & IDE'ler
🌐 Platformlar
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": "internlm/internlm2.5-20b-chat",
"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: 'internlm/internlm2.5-20b-chat',
messages: [{ role: 'user', content: 'Merhaba!' }],
}),
});
const data = await response.json();
console.log(data.choices[0].message.content);