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

GLM 4.6V Is Now Available in Puter.js

On this page

We're excited to announce that Puter.js now supports GLM 4.6V, Z.AI's latest vision model.

What is GLM 4.6V?

GLM 4.6V is designed for high-fidelity visual understanding and long-context reasoning. It excels at understanding visual content, making it ideal for applications that require detailed image interpretation.

Examples

Basic Image Description

puter.ai.chat(
    "What do you see in this image?",
    "https://assets.puter.site/doge.jpeg",
    { model: 'z-ai/glm-4.6v' }
).then(response => {
    puter.print(response);
});

Reading Text From Image

puter.ai.chat(
    "What is written in this letter?",
    "https://assets.puter.site/letter.png",
    { model: 'z-ai/glm-4.6v' }
).then(response => {
    puter.print(response);
});

Get Started Now

Just add one script tag to your HTML:

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

No sign-ups, no API keys, no infrastructure setup. Start building with GLM 4.6V 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