GPT-4o Mini
Önceki nesil GPT-3.5'in yerini alan bu model, görsel anlayabilme yeteneğiyle çok daha akıllı, hızlı ve ucuzdur.
Ücretli
multimodal
Proprietary
Teknik Özellikler
Bağlam Penceresi
128K token
Maks. Çıktı
16K token
Parametre Sayısı
Unknown
Eğitim Kesimi
2023-10
Lisans
Proprietary
Mimari
Transformer
Modaliteler: text image
Diller: tr en de fr es
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ı
📌 Maliyet odaklı chatbotlar
📌 Hızlı API işlemleri
📌 Basit özetleme
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": "openai/gpt-4o-mini",
"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: 'openai/gpt-4o-mini',
messages: [{ role: 'user', content: 'Merhaba!' }],
}),
});
const data = await response.json();
console.log(data.choices[0].message.content);