AI21's latest hybrid SSM-Transformer model with Mixture-of-Experts architecture. Features a 256K context window, improved grounding and instruction-following. 94B total parameters with 398B active, optimized for enterprise long-context tasks.
262K tokens
2
available
Cheapest
AI21 Labs
$10.00/1M tokens
AI21 Labs, OpenRouter
Sorted by total cost (input + output per 1M tokens). Click a row to view provider details.
| Provider | Pricing (per 1M) | Rate Limits | Regions | Health | Latency |
|---|---|---|---|---|---|
In: $2.00Out: $8.00 | 100 RPM / 500K TPM | us-east-1global | Healthy | 0ms | |
In: $2.00Out: $8.00 | 200 RPM / 800K TPM | us-east-1 | Healthy | 0ms |
Use this model via AI21 Labs with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.ai21.com/v1",
apiKey: process.env.AI21_API_KEY,
});
const response = await client.chat.completions.create({
model: "jamba-large-1.7",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using AI21 Labs API • OpenAI-compatible SDK