Ship a Full-Stack App with One Prompt

Copy this prompt into your AI coding agent, or open it in one below.

Give this to your AI Create a to-do list app using Puter.js

Coding manually? see the guide

Cognitive Computations: Dolphin Mistral 24B Venice Edition (Uncensored)

Access Dolphin Mistral 24B Venice Edition (Uncensored) from Cognitive Computations using Puter.js AI API.

Get Started
// npm install @heyputer/puter.js
import { puter } from '@heyputer/puter.js';

puter.ai.chat("Explain quantum computing in simple terms", {
    model: "cognitivecomputations/dolphin-mistral-24b-venice-edition"
}).then(response => {
    document.body.innerHTML = response.message.content;
});
<html>
<body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
        puter.ai.chat("Explain quantum computing in simple terms", {
            model: "cognitivecomputations/dolphin-mistral-24b-venice-edition"
        }).then(response => {
            document.body.innerHTML = response.message.content;
        });
    </script>
</body>
</html>
# pip install openai
from openai import OpenAI

client = OpenAI(
    base_url="https://api.puter.com/puterai/openai/v1/",
    api_key="YOUR_PUTER_AUTH_TOKEN",
)

response = client.chat.completions.create(
    model="cognitivecomputations/dolphin-mistral-24b-venice-edition",
    messages=[
        {"role": "user", "content": "Explain quantum computing in simple terms"}
    ],
)

print(response.choices[0].message.content)
curl https://api.puter.com/puterai/openai/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_PUTER_AUTH_TOKEN" \
  -d '{
    "model": "cognitivecomputations/dolphin-mistral-24b-venice-edition",
    "messages": [
      {"role": "user", "content": "Explain quantum computing in simple terms"}
    ]
  }'

Model Card

Dolphin Mistral 24B Venice Edition is a 24 billion parameter, uncensored general-purpose language model fine-tuned from Mistral Small 24B (Instruct-2501), built by Cognitive Computations (the Dolphin project, founded by Eric Hartford) in collaboration with Venice.ai. This paid API variant offers a 128K context window and an April 2024 knowledge cutoff.

On Venice's uncensored benchmark, it recorded a 2.2% refusal rate, the lowest among tested models and well below Llama 4 Maverick (11.11%), Gemini 2.5 Flash Preview (53.33%), GPT-4o-mini (64.44%), and Claude Sonnet 3.7 (71.11%).

While base Mistral Small 24B leaned STEM-heavy, this fine-tune adds strong creative writing and storytelling, with consistent character and narrative memory, plus steerable tone control that defaults to neutral and polite.

Suited for developers who need minimal refusals, custom alignment, or unrestricted content generation via API.

Context Window 128K

tokens

Max Output 8K

tokens

Input Cost $0.2

per million tokens

Output Cost $0.9

per million tokens

Release Date Jul 9, 2025

 

Model Playground

Try Dolphin Mistral 24B Venice Edition (Uncensored) instantly in your browser.
This playground uses the Puter.js AI API — no API keys or setup required.

Chat cognitivecomputations/dolphin-mistral-24b-venice-edition
Chat with Dolphin Mistral 24B Venice Edition (Uncensored)
Powered by Puter.js

Frequently Asked Questions

How do I use Dolphin Mistral 24B Venice Edition (Uncensored)?

You can access Dolphin Mistral 24B Venice Edition (Uncensored) by Cognitive Computations through Puter.js AI API. Include the library in your web app or Node.js project and start making calls with just a few lines of JavaScript — no backend and no configuration required. You can also use it with Python or cURL via Puter's OpenAI-compatible API.

Is Dolphin Mistral 24B Venice Edition (Uncensored) free?

Yes, it is free if you're using it through Puter.js. With the User-Pays Model, you can add Dolphin Mistral 24B Venice Edition (Uncensored) to your app at no cost — your users pay for their own AI usage directly, making it completely free for you as a developer.

What is the pricing for Dolphin Mistral 24B Venice Edition (Uncensored)?
Dolphin Mistral 24B Venice Edition (Uncensored) costs $0.2 per 1M input tokens and $0.9 per 1M output tokens.
Price per 1M tokens
Input$0.2
Output$0.9
Who created Dolphin Mistral 24B Venice Edition (Uncensored)?

Dolphin Mistral 24B Venice Edition (Uncensored) was created by Cognitive Computations and released on Jul 9, 2025.

What is the context window of Dolphin Mistral 24B Venice Edition (Uncensored)?

Dolphin Mistral 24B Venice Edition (Uncensored) supports a context window of 128K tokens. For reference, that is roughly equivalent to 256 pages of text.

What is the max output length of Dolphin Mistral 24B Venice Edition (Uncensored)?

Dolphin Mistral 24B Venice Edition (Uncensored) can generate up to 8K tokens in a single response.

Does it work with React / Vue / Vanilla JS / Node / etc.?

Yes — the Dolphin Mistral 24B Venice Edition (Uncensored) API works with any JavaScript framework, Node.js, or plain HTML through Puter.js. Just include the library and start building. See the documentation for more details.

Get started with Puter.js

Add Dolphin Mistral 24B Venice Edition (Uncensored) to your app without worrying about API keys or setup.

Read the Docs View Tutorials