Uncensored (free)
Cognitive ComputationsReleased Jul 9, 2025Free
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 window
- 33K tokens
- Input
- text
- Output
- text
- Tokenizer
- Other
- Knowledge cutoff
- Apr 30, 2024
- Released
- Jul 9, 2025
Pricing
Per 1M tokens. The provider price and our flat 3% fee are separate columns — what you pay is their sum.
| Per 1M tokens | Provider | + 3% fee | You pay |
|---|---|---|---|
| Input | Free | — | Free |
| Output | Free | — | Free |
Supported parameters
- frequency_penalty
- max_tokens
- presence_penalty
- response_format
- stop
- structured_outputs
- temperature
- top_k
- top_p
Call it
OpenAI-compatible: point your SDK at api.openkey.ai/v1 and use model cognitivecomputations/dolphin-mistral-24b-venice-edition:free.
curl https://api.openkey.ai/v1/chat/completions \
-H "Authorization: Bearer $OPENKEY_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "cognitivecomputations/dolphin-mistral-24b-venice-edition:free",
"messages": [{"role": "user", "content": "Hello"}]
}'import os
from openai import OpenAI
client = OpenAI(
base_url="https://api.openkey.ai/v1",
api_key=os.environ["OPENKEY_API_KEY"],
)
completion = client.chat.completions.create(
model="cognitivecomputations/dolphin-mistral-24b-venice-edition:free",
messages=[{"role": "user", "content": "Hello"}],
)
print(completion.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.openkey.ai/v1",
apiKey: process.env.OPENKEY_API_KEY,
});
const completion = await client.chat.completions.create({
model: "cognitivecomputations/dolphin-mistral-24b-venice-edition:free",
messages: [{ role: "user", content: "Hello" }],
});
console.log(completion.choices[0].message.content);Questions
- How much does Uncensored (free) cost via API?
- Uncensored (free) is free through OpenKey while Cognitive Computations offers it at no charge. No fee applies to free models.
- What is Uncensored (free)'s context window?
- Uncensored (free) accepts up to 33K tokens of context.
- Is Uncensored (free) OpenAI-compatible?
- Yes. Send requests to OpenKey's /v1/chat/completions endpoint with model "cognitivecomputations/dolphin-mistral-24b-venice-edition:free" using any OpenAI SDK — only the base URL and API key change.
- What inputs does Uncensored (free) support?
- Uncensored (free) accepts text input and produces text output. Its knowledge cutoff is Apr 30, 2024.