IBM's largest dense decoder-only 30B parameter language model from the Granite 4.1 family. Trained on approximately 15T tokens with long-context extension up to 512K tokens. Supports tool calling, RAG, code generation, multilingual tasks across 12 languages. Released under Apache 2.0.
524K tokens
1
Kullanılabilir
En ucuz
IBM watsonx.ai
$1.80/1M tokens
IBM watsonx.ai
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ş: $0.60Çıkış: $1.20 | 50 RPM / 200K TPM | us-south-1eu-de-1eu-gb-1 | Sağlıklı | 0ms |
Bu modeli IBM watsonx.ai üzerinden OpenAI uyumlu bir SDK ile kullanın.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.ibm-watsonx.com/v1",
apiKey: process.env.IBM_WATSONX_API_KEY,
});
const response = await client.chat.completions.create({
model: "ibm/granite-4-1-30b-instruct",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);IBM watsonx.ai API kullanılıyor · OpenAI uyumlu SDK