A 32 billion parameter open-weights reasoning model by LLM360/MBZUAI, built on Qwen2.5-32B. Trained with reinforcement learning and verifiable rewards for long chain-of-thought reasoning, agentic planning, and complex problem solving in math, science, and code.
131K tokens
1
Доступна
Самый доступный
Cerebras
$1.20/1M tokens
Cerebras
Сортировка по общей стоимости входных и выходных токенов за 1 млн. Выберите строку, чтобы открыть страницу провайдера.
| Провайдер | Цена за 1 млн | Лимиты | Регионы | Состояние | Задержка |
|---|---|---|---|---|---|
Вход: $0.60Выход: $0.60 | 30 RPM / 60K TPM | us-east-1 | Работает | 0ms |
Используйте эту модель через Cerebras с OpenAI-совместимым SDK.
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.cerebras.ai/v1",
apiKey: process.env.CEREBRAS_API_KEY,
});
const response = await client.chat.completions.create({
model: "k2-think",
messages: [
{ role: "user", content: "Hello!" }
],
});
console.log(response.choices[0].message.content);API Cerebras · OpenAI-совместимый SDK