Thinking Machines: Inkling Small thinkingmachines/inkling-small
Модель Thinking Machines: Inkling Small от Thinkingmachines
(семейство inkling-small) доступна через единый OpenAI-совместимый API НейроГейт —
без VPN, с оплатой в рублях, единым ключом для всех 656 моделей платформы.
О модели Thinking Machines: Inkling Small
Inkling Small is an open-weight multimodal mixture-of-experts model from Thinking Machines Lab, with 12B active parameters out of 276B total. It is positioned as the smaller, more efficient member of...
Использование Thinking Machines: Inkling Small через НейроГейт
OpenAI-совместимый эндпоинт https://api.neuralgate.ru/v1 — замени base_url в любом
SDK и используй модель по её id.
# Chat completion curl https://api.neuralgate.ru/v1/chat/completions \ -H "Authorization: Bearer $NEURALGATE_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "thinkingmachines/inkling-small", "messages": [{"role":"user","content":"Привет!"}] }'
from openai import OpenAI client = OpenAI( api_key="sk-...your-neuralgate-key...", base_url="https://api.neuralgate.ru/v1", ) response = client.chat.completions.create( model="thinkingmachines/inkling-small", messages=[{"role": "user", "content": "Привет!"}], ) print(response.choices[0].message.content)
import OpenAI from "openai"; const client = new OpenAI({ apiKey: process.env.NEURALGATE_API_KEY, baseURL: "https://api.neuralgate.ru/v1", }); const resp = await client.chat.completions.create({ model: "thinkingmachines/inkling-small", messages: [{ role: "user", content: "Привет!" }], }); console.log(resp.choices[0].message.content);
Похожие модели
Сравнить Thinking Machines: Inkling Small с другими
Кейсы использования
Где Thinking Machines: Inkling Small часто применяется:
Подключить Thinking Machines: Inkling Small через единый API
Без VPN. Оплата в рублях. 30 минут до первого запроса. Один ключ — 353 модели.
Получить API-ключ →