Blog

Qwen3 Max Thinking Is Now Available in Puter.js

On this page

Puter.js now supports Qwen3 Max Thinking, Alibaba Cloud's flagship proprietary reasoning model that competes with GPT-5.2 and Gemini 3 Pro.

What is Qwen3 Max Thinking?

Qwen3 Max Thinking is Alibaba Cloud's most powerful reasoning model, featuring test-time scaling and adaptive tool-use capabilities that allow it to reason iteratively and autonomously. Key features include:

  • 256K Context Window: Handles massive inputs for complex, long-context tasks
  • Test-Time Scaling: Dynamically allocates more compute to harder problems for better accuracy
  • Competitive Benchmarks: Scores competitively against GPT-5.2 and Gemini 3 Pro on Humanity's Last Exam and HMMT, with perfect scores on AIME 2025

Examples

Complex reasoning

puter.ai.chat("Prove that for any prime p > 3, p^2 - 1 is divisible by 24",
  { model: 'qwen/qwen3-max-thinking' }
);

Math problem solving

puter.ai.chat("Solve: Find all functions f: R -> R such that f(x + y) = f(x) + f(y) for all real x, y",
  { model: 'qwen/qwen3-max-thinking' }
);

Code generation with reasoning

puter.ai.chat("Design and implement a lock-free concurrent queue in C++ with memory ordering guarantees",
  { model: 'qwen/qwen3-max-thinking' }
);

Multi-step analysis

puter.ai.chat("Analyze the time and space complexity of Dijkstra's algorithm with a Fibonacci heap vs a binary heap, and explain when each is preferable",
  { model: 'qwen/qwen3-max-thinking' }
);

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 Qwen3 Max Thinking 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