Venice: Uncensored cognitivecomputations/dolphin-mistral-24b-venice-edition
Модель Venice: Uncensored от Cognitive Computations
(семейство dolphin-mistral) доступна через единый OpenAI-совместимый API НейроГейт —
без VPN, с оплатой в рублях, единым ключом для всех 656 моделей платформы.
Доступны через единый API НейроГейт: 1 модель Cognitive Computations.
О модели Venice: Uncensored
Venice Uncensored Dolphin Mistral 24B Venice Edition is a fine-tuned variant of Mistral-Small-24B-Instruct-2501, developed by dphn.ai in collaboration with Venice.ai. This model is designed as an “uncensored” instruct-tuned LLM, preserving...
Использование Venice: Uncensored через НейроГейт
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": "cognitivecomputations/dolphin-mistral-24b-venice-edition", "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="cognitivecomputations/dolphin-mistral-24b-venice-edition", 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: "cognitivecomputations/dolphin-mistral-24b-venice-edition", messages: [{ role: "user", content: "Привет!" }], }); console.log(resp.choices[0].message.content);
Похожие модели
Сравнить Venice: Uncensored с другими
Кейсы использования
Где Venice: Uncensored часто применяется:
Подключить Venice: Uncensored через единый API
Без VPN. Оплата в рублях. 30 минут до первого запроса. Один ключ — 353 модели.
Получить API-ключ →