Blog

GLM 5 Turbo Is Now Available in Puter.js

On this page

Puter.js now supports GLM-5 Turbo, Z.AI's agent-optimized variant of the GLM-5 flagship model, purpose-built for fast inference and real-world agentic workflows.

What is GLM-5 Turbo?

GLM-5 Turbo builds on the GLM-5 architecture (744B total parameters, 40B active in a Mixture of Experts design) with optimizations targeting speed and agentic reliability. Key highlights include:

  • Agent-First Design: Excels at tool invocation, complex instruction decomposition, and long-chain task execution in OpenClaw scenarios
  • 205K Context Window: Extended context for massive document processing and multi-step workflows
  • Reasoning Mode: Built-in thinking/reasoning mode for step-by-step problem solving
  • DeepSeek Sparse Attention: Reduces deployment cost while preserving long-context performance
  • Persistent & Scheduled Operations: Designed for high-throughput, persistent, and scheduled agentic tasks

Examples

Multi-step agentic task

puter.ai.chat(`Research the top 5 competitors in the CRM market, compare their pricing tiers,
and generate a recommendation report for a 50-person startup`,
  { model: 'z-ai/glm-5-turbo', stream: true }
);

Tool invocation and task decomposition

puter.ai.chat(`I need you to:
1. Parse this CSV of 10,000 customer records
2. Identify churn risk based on usage patterns
3. Draft personalized retention emails for the top 100 at-risk customers
4. Summarize findings in a dashboard-ready JSON format`,
  { model: 'z-ai/glm-5-turbo' }
);

Complex reasoning with thinking mode

puter.ai.chat("Analyze the trade-offs between microservices and monolithic architecture for a real-time trading platform handling 1M transactions per second",
  { model: 'z-ai/glm-5-turbo' }
);

Long context processing

puter.ai.chat(`Review this entire API specification and generate a complete test suite covering edge cases:
${apiSpec}`,
  { model: 'z-ai/glm-5-turbo' }
);

Get Started Now

Just add one library to your project:

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

Or add one script tag to your HTML:

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

No API keys needed. Start building with GLM-5 Turbo 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