Llama 3.3 70B Instruct

Llama 3.3 70B Instruct, 400B sınıfı modellere rakip olabilecek performans sunarak endüstri standardı haline geldi.

Ücretsiz text Llama 3 License

Teknik Özellikler

Bağlam Penceresi 131K token
Maks. Çıktı 8K token
Parametre Sayısı 70B
Eğitim Kesimi 2024-12
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 sohbet
📌 Kapsamlı metin üretimi
📌 Veri çıkarma

Araç Seti & IDE'ler

🌐 Platformlar

OpenRouterGroq

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.3-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.3-70b-instruct:free',
    messages: [{ role: 'user', content: 'Merhaba!' }],
  }),
});
const data = await response.json();
console.log(data.choices[0].message.content);