cognitivecomputations
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...
Context
128k tokens
Input / 1M tokens
$0.20
Output / 1M tokens
$0.90
Benchmark
—
Pricing
Input tokens$0.20 per 1M tokens
Output tokens$0.90 per 1M tokens
Technical details
Model IDcognitivecomputations/dolphin-mistral-24b-venice-edition
Context window128k tokens
Input modalitiestext
Output modalitiestext
TokenizerOther
Max output tokens8,192
Use with MegaBrain
import OpenAI from 'openai'
const client = new OpenAI({
baseURL: 'https://getmegabrain.com/api/gateway/v1',
apiKey: process.env.MEGABRAIN_API_KEY,
})
const response = await client.chat.completions.create({
model: 'cognitivecomputations/dolphin-mistral-24b-venice-edition',
messages: [{ role: 'user', content: 'Hello!' }],
})