Turkish-specialized 9B language model developed by WiroAI, built on Google's Gemma 2 architecture. Fine-tuned with Supervised Fine-Tuning (SFT) on over 500,000 carefully curated high-quality Turkish instructions, specifically adapted to Turkish culture and local context. Demonstrates superior performance on Turkish language processing tasks including conversation, reasoning, and instruction following.
8K tokens
3
Kullanılabilir
En ucuz
Azure AI
$0.00/1M tokens
Azure AI, Featherless, Hugging Face Inference
Toplam maliyete göre sıralanır (1M token başına giriş + çıkış). Sağlayıcı ayrıntılarını görmek için bir satır seçin.
| Sağlayıcı | Fiyat (1M başına) | Hız sınırları | Bölgeler | Durum | Gecikme |
|---|---|---|---|---|---|
Giriş: ÜcretsizÇıkış: Ücretsiz | 60 RPM / 300K TPM | us-east-1us-west-2eu-west-1ap-southeast-1 | Sağlıklı | 0ms | |
Giriş: ÜcretsizÇıkış: Ücretsiz | 60 RPM / 300K TPM | global | Sağlıklı | 0ms | |
Giriş: ÜcretsizÇıkış: Ücretsiz | 60 RPM / 300K TPM | us-east-1eu-west-1 | Sağlıklı | 0ms |
Bu modeli Azure AI üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.azure-ai.com/v1",
apiKey: process.env.AZURE_AI_API_KEY,
});
const response = await client.chat.completions.create({
model: "wiroai-wiroai-turkish-llm-9b",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Azure AI API kullanılıyor · OpenAI uyumlu SDK