Sber's compact Mixture-of-Experts model with 10B total parameters and 1.8B active. Designed for fast multilingual assistant workloads, reasoning, code, function calling, and product-style deployment on edge devices.
8K tokens
1
available
Cheapest
Sber
$0.30/1M tokens
Sber
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: $0.10Out: $0.20 | 300 RPM / 500K TPM | ru-central-1 | Unhealthy | 0ms |
Use this model via Sber with an OpenAI-compatible SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.sber.com/v1",
apiKey: process.env.SBER_API_KEY,
});
const response = await client.chat.completions.create({
model: "GigaChat-Lightning",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);Using Sber API • OpenAI-compatible SDK