Solar 10.7B
7B modellerin derinleştirilmesiyle elde edilen Solar, 10.7 milyar parametresiyle çok daha büyük modellere kafa tutar.
Ücretli
text
Apache 2.0
Teknik Özellikler
Bağlam Penceresi
4K token
Maks. Çıktı
2K token
Parametre Sayısı
10.7B
Eğitim Kesimi
2023-11
Lisans
Apache 2.0
Mimari
Transformer
Modaliteler: text
Diller: en ko
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ı
📌 Yerel chatbot
📌 Hafif görevler
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": "upstage/solar-10.7b-instruct",
"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: 'upstage/solar-10.7b-instruct',
messages: [{ role: 'user', content: 'Merhaba!' }],
}),
});
const data = await response.json();
console.log(data.choices[0].message.content);