Inception: Mercury 2.5 Preview inception/mercury-2.5-preview
Модель Inception: Mercury 2.5 Preview от Inception
(семейство mercury-2) доступна через единый OpenAI-совместимый API НейроГейт —
без VPN, с оплатой в рублях, единым ключом для всех 734 моделей платформы.
Доступны через единый API НейроГейт: 3 модели Inception.
О модели Inception: Mercury 2.5 Preview
Mercury 2.5 is the fastest reasoning LLM, and the latest diffusion LLM (dLLM) from Inception. Instead of generating tokens sequentially, Mercury 2.5 produces and refines multiple tokens in parallel, achieving...
Использование Inception: Mercury 2.5 Preview через НейроГейт
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": "inception/mercury-2.5-preview", "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="inception/mercury-2.5-preview", 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: "inception/mercury-2.5-preview", messages: [{ role: "user", content: "Привет!" }], }); console.log(resp.choices[0].message.content);
Похожие модели
Сравнить Inception: Mercury 2.5 Preview с другими
Кейсы использования
Где Inception: Mercury 2.5 Preview часто применяется:
Подключить Inception: Mercury 2.5 Preview через единый API
Без VPN. Оплата в рублях. 30 минут до первого запроса. Один ключ — 353 модели.
Получить API-ключ →