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:

Free, Serverless AI and Cloud

Start creating powerful web applications with Puter.js in seconds!

Get Started Now

Read the Docs Try the Playground