NexAGI Nex N2.5 Pro
Llama veya Qwen tabanlı ince ayarlı mimarisiyle genel amaçlı sohbet, kod ve içerik üretimi için idealdir.
Ücretsiz
text
Open Source Custom
Teknik Özellikler
Bağlam Penceresi
33K token
Maks. Çıktı
4K token
Parametre Sayısı
72B
Eğitim Kesimi
2024-06
Lisans
Open Source Custom
Mimari
Transformer
Modaliteler: text
Diller: en tr
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ı
📌 Günlük sohbet
📌 Hikaye yazma
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": "nexagi/nex-n2.5-pro:free",
"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: 'nexagi/nex-n2.5-pro:free',
messages: [{ role: 'user', content: 'Merhaba!' }],
}),
});
const data = await response.json();
console.log(data.choices[0].message.content);