Llama 3.1 70B Instruct
Gelişmiş araç kullanımı, çok dilli yetenekler ve güvenilirliğiyle açık kaynak ekosisteminin temel direklerinden biridir.
Ücretsiz
text
Llama 3 License
Teknik Özellikler
Bağlam Penceresi
131K token
Maks. Çıktı
8K token
Parametre Sayısı
70B
Eğitim Kesimi
2024-03
Lisans
Llama 3 License
Mimari
Transformer
Modaliteler: text
Diller: tr en es de fr
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ı
📌 Genel amaçlı botlar
📌 İçerik üretimi
📌 Veri sınıflandırma
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": "meta-llama/llama-3.1-70b-instruct: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: 'meta-llama/llama-3.1-70b-instruct:free',
messages: [{ role: 'user', content: 'Merhaba!' }],
}),
});
const data = await response.json();
console.log(data.choices[0].message.content);