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

Blog

Mistral Large 3 Is Now Available in Puter.js

On this page

Puter.js now supports Mistral Large 3, the state-of-the-art general-purpose model by Mistral. Add it to your application for free without any API keys.

What is Mistral Large 3?

Mistral Large 3 is the state-of-the-art open-weight model by Mistral. It excels at everyday workloads, while also supporting multilingual conversations and image understanding.

Examples

Basic Chat

puter.ai.chat("Explain the concept of quantum computing in simple terms",
    { model: "mistralai/mistral-large-2512" }
)

Image Analysis

puter.ai.chat("What do you see in this image?",
    "https://assets.puter.site/doge.jpeg",
    { model: "mistralai/mistral-large-2512" }
)

Multilingual Support

puter.ai.chat(
    "请解释一下人工智能在医疗领域的应用前景",
    { model: "mistralai/mistral-large-2512" }
)

Get Started Now

Just add one script tag to your HTML:

<script src="https://js.puter.com/v2/"></script>

No API keys or infrastructure setup needed. Start building with Mistral Large 3 immediately.

Learn more:

Ship a Full-Stack App with One Prompt

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

Coding manually? see the guide