Llama 3.2 11B Vision

Meta'nın görselleri analiz edip anlayabilen küçük boyutlu, ancak yetenekli modeli. OCR ve görsel soru cevaplama (VQA) konusunda iyidir.

Ücretsiz multimodal Llama 3.2 License

Teknik Özellikler

Bağlam Penceresi 131K token
Maks. Çıktı 8K token
Parametre Sayısı 11B
Eğitim Kesimi 2024-08
Lisans Llama 3.2 License
Mimari Transformer
Modaliteler: text image
Diller: tr en

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ı

📌 OCR işlemleri
📌 Görselden metne
📌 Menü/fiş okuma

Araç Seti & IDE'ler

🌐 Platformlar

OpenRouter

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