explainx.ainewsletter3.5k
TrendingNewsPathwaysSkills
Pricing
explainx.ai

Upskill in AI — 16 free pathways, live workshops & bootcamps, and 50+ courses from practitioners. Plus the skills, tools, and MCP servers to practice on.

follow us

custom AI agents

[email protected]

get started

Find your pathTake Free Evaluation

learn

pathways — start freeworkshopsbootcampscoursescertificationsmock testsexplainx universitycorporate traininglearn skills & mcp

discover

skillsmcp serversexplainx mcptoolsagentsllmsdesignsagi trackerranks

company

aboutvisionmissionteaminstructorscommunityhackathonscareers

content

daily AI newsstate of AI — live resultsblogreleasespromptsgeneratorsresource librarydemofor LLMs

solutions

all solutionsdeveloper upskillingmarketing upskillingproduct manager upskillingleadership upskilling

More from us

InfloqInfluencer marketingBgBlurPrivacy-first blurOlly SocialSocial AI copilotCeptoryVideo intelligenceBgRemoverBackground removal

newsletter · weekly

Get AI news, tools, and insights in your inbox.

supportprivacytermsdata rightssubmission guidelines

© 2026 AISOLO Technologies Pvt Ltd

On this page

  • Beyond the Chatbot: The Rise of Autonomous Foundation Models
  • Performance: Dominating the Agent Benchmarks
  • Long-Horizon Autonomy: The 35-Hour Feat
  • The "Agent Scaling" Methodology
  • Ecosystem Integration: A Drop-in Backbone
  • Real-World Use Cases and Performance
  • Limitations and Areas for Improvement
  • Pricing and Availability
  • Future Roadmap
  • Getting Started Guide
  • Summary
← Back to blog

explainx / blog

Qwen 3.7-Max: The Agent Frontier and Long-Horizon Autonomy

Alibaba's Qwen 3.7-Max sets new records in coding agents and long-horizon tasks, including a 35-hour autonomous kernel optimization feat.

May 22, 2026·16 min read·Yash Thakker
QwenAlibaba CloudAI AgentsCoding AgentsBenchmarks
go deep
Qwen 3.7-Max: The Agent Frontier and Long-Horizon Autonomy

Update — July 19, 2026: Qwen 3.8-Max-Preview is live on Token Plan (2.4T params, open weights soon). This post remains the 3.7-Max benchmark and harness baseline until independent 3.8 evals ship.

Beyond the Chatbot: The Rise of Autonomous Foundation Models

On May 20, 2026, Alibaba Cloud unveiled Qwen 3.7-Max, a model that signals a fundamental shift in the AI landscape. While the industry has spent years chasing MMLU scores and attempting to dominate general-purpose benchmarks, Qwen 3.7-Max is built for a different metric: autonomous execution.

It is designed to be a "versatile agent foundation"—a model that doesn't just answer questions but sustains coherent reasoning across extremely long horizons. Whether it's a 35-hour kernel optimization run or a year-long simulated startup management task, Qwen 3.7-Max is built to "let the agent cook."

This model represents Alibaba's bet that the future of AI isn't about who can score highest on abstract reasoning tests, but about who can build systems that reliably complete complex, multi-step tasks in the real world.

Qwen 3.7-Max | API: Alibaba Cloud Model Studio

Weekly digest3.5k readers

Catch up on AI

Curated AI updates on agents, skills, and MCP — delivered to your inbox. Unsubscribe anytime.


Performance: Dominating the Agent Benchmarks

Qwen 3.7-Max doesn't just perform well on general benchmarks; it excels where agents live—in the terminal and the codebase. These benchmarks are specifically designed to measure agentic capabilities: the ability to use tools, maintain long-term context, recover from errors, and complete complex multi-step tasks.

Coding Agents

BenchmarkQwen 3.7-MaxOpus 4.6 MaxDeepSeek V4 Pro
Terminal Bench 2.069.765.467.9
SWE-bench Verified80.480.880.6
SWE-bench Pro60.657.359.0
SciCode53.551.9--

Understanding These Benchmarks

Terminal Bench 2.0-Terminus: Measures an agent's ability to accomplish tasks using command-line interfaces. Tasks include:

  • File system navigation and manipulation
  • Text processing with Unix tools (grep, awk, sed)
  • Version control operations (git workflows)
  • Package management (npm, pip, cargo)
  • System administration (process management, network configuration)

Qwen 3.7-Max's leading score of 69.7 means it successfully completes nearly 70% of realistic terminal tasks that professional developers encounter daily.

SWE-bench Verified & Pro: These benchmarks test an agent's ability to solve real GitHub issues from popular open-source projects. The agent must:

  1. Understand the issue description
  2. Navigate the codebase
  3. Identify the root cause
  4. Implement a fix
  5. Verify the fix with tests
  6. Submit a proper pull request

SWE-bench Verified contains 500 carefully vetted issues with known solutions. SWE-bench Pro contains 2,294 more challenging issues. Qwen's 60.6 on Pro (vs. Opus's 57.3) demonstrates superior ability to handle complex, real-world software engineering tasks.

SciCode: A benchmark focused on scientific computing tasks requiring mathematical reasoning, algorithm implementation, and numerical computation. Qwen's 53.5 score indicates strong performance on tasks like:

  • Implementing physics simulations
  • Numerical optimization algorithms
  • Statistical analysis pipelines
  • Machine learning model implementations

General-Purpose Agents

Qwen 3.7-Max shows exceptional strength in tool-use and productivity frameworks:

MCP-Mark (60.8 vs. GLM-5.1's 57.5): Measures an agent's ability to orchestrate multiple Model Context Protocol (MCP) servers. Tasks involve:

  • Database queries across multiple sources
  • API integration and data transformation
  • File system operations combined with web scraping
  • Multi-tool workflows with error recovery

SkillsBench (59.2 vs. K2.6's 56.2): Tests proficiency with the agentskills.io standard. Agents must:

  • Discover and load appropriate skills
  • Combine multiple skills to solve complex problems
  • Adapt when preferred skills are unavailable
  • Learn new skills from documentation

SpreadSheetBench (87.0): Evaluates office automation capabilities:

  • Formula creation and debugging
  • Data cleaning and transformation
  • Pivot table construction
  • Chart generation
  • Multi-sheet operations

Qwen's 87% success rate suggests it could handle the majority of spreadsheet tasks that knowledge workers perform daily.


Long-Horizon Autonomy: The 35-Hour Feat

The most impressive demonstration of Qwen 3.7-Max's capability is its autonomous kernel optimization. This achievement deserves deep analysis because it represents a qualitative leap in what we expect from AI systems.

The Challenge

Alibaba tasked Qwen 3.7-Max with optimizing a memory-bound "Extend Attention" kernel for the T-Head ZW-M890 hardware platform—custom silicon that the model had never encountered during training.

The kernel implements a critical operation in transformer models: the extension of attention mechanisms to handle longer context windows efficiently. The reference implementation was functional but unoptimized, running at baseline speed.

The Execution

Over 35 hours of continuous autonomous execution, Qwen 3.7-Max:

  1. Initial Analysis (Hours 0-3):

    • Profiled the reference implementation
    • Identified the bottleneck: memory bandwidth limitations
    • Analyzed the ZW-M890's architecture documentation
    • Formulated an optimization strategy
  2. First Optimization Attempts (Hours 3-12):

    • Implemented loop tiling to improve cache locality
    • Added vectorization directives
    • Ran benchmarks and discovered minimal improvement (1.2x speedup)
    • Diagnosed failure: The model realized tiling alone wasn't sufficient for memory-bound operations
  3. Architecture Redesign (Hours 12-20):

    • Researched ZW-M890's specialized memory hierarchy
    • Discovered the platform has a scratchpad memory with explicit management
    • Redesigned the kernel to explicitly stage data through scratchpad
    • Recovery from failure: When initial staging code caused crashes, the model debugged via binary search to isolate the problematic memory access pattern
  4. Fine-Grained Optimization (Hours 20-30):

    • Implemented double-buffering to overlap computation with memory transfers
    • Tuned buffer sizes through empirical testing (tried 18 different configurations)
    • Applied ZW-M890-specific SIMD instructions
    • Achieved 8.2x speedup
  5. Final Refinement (Hours 30-35):

    • Noticed that certain input shapes performed poorly
    • Implemented adaptive algorithms that select strategies based on input characteristics
    • Final result: 10.1x geometric mean speedup across the benchmark suite

Why This Matters

Sustained Context: Most LLMs exhibit "instruction drift" after a few dozen interactions. Qwen maintained a coherent optimization strategy across 1,158 tool calls—running profilers, modifying code, debugging, benchmarking, analyzing results, and iterating.

True Problem-Solving: This wasn't pattern matching against training data. The ZW-M890 architecture is proprietary and recent. Qwen had to:

  • Read and understand architecture manuals
  • Transfer knowledge from general optimization principles
  • Experiment, fail, diagnose, and try new approaches
  • Make architectural decisions ("should I use tiling or explicit staging?")

Error Recovery: The optimization wasn't linear. Qwen encountered:

  • Segmentation faults from incorrect memory access
  • Performance regressions from overly aggressive optimizations
  • Build failures from syntax errors in platform-specific intrinsics

Each time, it diagnosed the issue, adjusted its approach, and continued. This kind of resilience is essential for real-world agent applications where failure is common and recovery must be autonomous.

Computational Investment: At approximately $2-3 per million tokens (estimated Qwen API pricing), this 35-hour run likely consumed millions of tokens. The fact that Alibaba is willing to showcase such computationally intensive demonstrations suggests confidence in the model's reliability at scale.


The "Agent Scaling" Methodology

Qwen's secret sauce is Environment Scaling, a training methodology that Alibaba claims is as important to agent performance as data scale is to general LLMs.

The Core Insight

Traditional LLM training uses diverse text data. The model sees millions of documents spanning different topics, styles, and formats. This diversity enables generalization—the model learns language patterns that transfer across contexts.

Alibaba applies the same principle to agent training, but instead of diverse text, they provide diverse environments.

The Environment Scaling Framework

Alibaba decouples agent training instances into three components:

  1. Task: The objective (e.g., "Fix bug #1234 in the auth module")
  2. Harness: The execution environment and tool set (e.g., Claude Code, OpenClaw, terminal with bash, IDE with integrated tools)
  3. Verifier: The success criteria (e.g., "All tests pass" or "The API returns correct responses")

Traditional agent training uses fixed harnesses. A task might always be solved in the same environment with the same tools. This creates harness overfitting—the model learns harness-specific shortcuts rather than general problem-solving strategies.

Combinatorial Scaling

By decoupling these components, Alibaba creates exponentially more training diversity:

  • 1,000 tasks × 50 harnesses × 10 verifiers = 500,000 unique training instances

But the real benefit isn't just quantity—it's forced generalization.

Example: Consider the task "Add a feature flag for the dark mode toggle."

Traditional Training (fixed harness):

  • The model always solves this in environment A (e.g., Claude Code with specific plugins)
  • It learns: "When I see 'feature flag', I call the feature-flag plugin and use template X"
  • This is brittle pattern matching

Environment Scaling (varied harnesses):

  • Instance 1: Claude Code with feature-flag skill
  • Instance 2: Raw terminal with bash and grep
  • Instance 3: IDE with no plugins but access to documentation
  • Instance 4: OpenClaw with a different set of available tools
  • Instance 5: Qwen Code with Chinese-language documentation

The model can't rely on harness-specific shortcuts. Instead, it must learn the underlying problem-solving strategy:

  1. Understand what a feature flag is (conceptually)
  2. Find existing feature flag implementations (adaptable to any tool set)
  3. Replicate the pattern for the new flag
  4. Verify it works (using whatever verification tools are available)

Verified Results

Alibaba's paper shows that models trained with environment scaling:

  • Generalize better to new harnesses: 23% higher success rate on unseen execution environments
  • Require fewer examples: Achieve equivalent performance with 40% less task data when using diverse harnesses
  • Recover from tool failures: When a preferred tool is unavailable, they successfully use alternatives 67% of the time (vs. 31% for baseline)

Ecosystem Integration: A Drop-in Backbone

Qwen 3.7-Max is designed for immediate deployment across the agent ecosystem, with API compatibility that makes it a drop-in replacement for other frontier models.

Claude Code Integration

Because the Qwen API supports the Anthropic protocol, you can use it directly as your backend:

bash
export ANTHROPIC_MODEL="qwen3.7-max"
export ANTHROPIC_BASE_URL=https://dashscope-intl.aliyuncs.com/apps/anthropic
export ANTHROPIC_API_KEY="your-qwen-api-key"
claude

Performance in Claude Code: Users report that Qwen 3.7-Max in Claude Code:

  • Handles large codebases (100k+ lines) more reliably than GPT-5.5
  • Maintains context across longer sessions
  • Better at following custom instructions in CLAUDE.md files
  • Particularly strong at refactoring and architecture-level changes

Cost Comparison:

  • Claude Opus 4.6: $15 per million input tokens
  • Qwen 3.7-Max: $4 per million input tokens (estimated)
  • For a typical coding session (500k tokens): Opus costs $7.50, Qwen costs $2

OpenClaw Support

Qwen 3.7-Max is also a first-class citizen in OpenClaw, the high-performance agent orchestrator, where it serves as a reliable reasoning engine for complex multi-file engineering.

OpenClaw-Specific Optimizations:

  • Streaming responses with lower latency than Opus
  • Better handling of tool-use sequences (fewer redundant tool calls)
  • Improved ability to parallelize operations across files

Example OpenClaw Workflow:

bash
openclaw --model qwen3.7-max "Refactor the authentication system to use JWT tokens instead of sessions. Update all affected endpoints and add tests."

Qwen successfully:

  1. Identifies all files related to authentication (15 files)
  2. Plans the refactoring in stages
  3. Implements JWT generation and verification utilities
  4. Updates endpoint middleware
  5. Modifies session handling
  6. Generates comprehensive tests
  7. Runs tests and fixes issues

Total time: 8 minutes | Cost: $0.73 | Success rate: 100%

OpenAI-Compatible API

For tools that use the OpenAI API format:

python
from openai import OpenAI

client = OpenAI(
    api_key="your-qwen-api-key",
    base_url="https://dashscope-intl.aliyuncs.com/compatible-mode/v1"
)

response = client.chat.completions.create(
    model="qwen3.7-max",
    messages=[
        {"role": "system", "content": "You are a helpful coding assistant."},
        {"role": "user", "content": "Explain this code: [paste code]"}
    ],
    temperature=0.3
)

This compatibility means Qwen works with:

  • Cursor (as a custom model provider)
  • Continue.dev
  • Aider
  • AutoGPT and similar agent frameworks
  • LangChain
  • LlamaIndex

Real-World Use Cases and Performance

Beyond benchmarks, how does Qwen 3.7-Max perform on actual developer workflows?

Use Case 1: Legacy Codebase Migration

Scenario: A company needs to migrate a 50,000-line Python 2.7 codebase to Python 3.11.

Qwen 3.7-Max Approach:

  1. Analysis Phase (20 minutes):

    • Scans all files for Python 2-specific constructs
    • Identifies third-party dependencies and their Python 3 compatibility
    • Generates a migration plan with risk assessment for each module
  2. Automated Migration (3 hours):

    • Updates print statements, exception syntax, dictionary methods
    • Refactors Unicode/bytes handling
    • Updates deprecated library imports
    • Modernizes type annotations where beneficial
  3. Testing & Validation (1 hour):

    • Runs existing test suite, debugging failures
    • Adds tests for edge cases in modified code
    • Generates a report of changes with explanation

Result: 94% of the codebase migrated successfully. 6% required human review due to complex business logic. Estimated time saved: 3 weeks of developer time.

Use Case 2: API Design and Implementation

Scenario: Build a REST API for a real-time chat application with WebSocket support.

Qwen 3.7-Max Approach:

  1. Design (30 minutes):

    • Proposes API schema with OpenAPI specification
    • Suggests database schema
    • Designs WebSocket message protocol
    • Outlines authentication strategy (JWT)
  2. Implementation (2 hours):

    • Scaffolds FastAPI project structure
    • Implements endpoints with proper error handling
    • Sets up WebSocket connection manager with room support
    • Adds rate limiting and input validation
    • Integrates with PostgreSQL for persistence
  3. Documentation & Testing (1 hour):

    • Generates comprehensive API documentation
    • Creates integration tests for all endpoints
    • Adds load testing scripts (Locust)
    • Documents deployment instructions

Result: Production-ready API in 3.5 hours. Comparable developer time: 2-3 days.

Use Case 3: Bug Investigation in Production

Scenario: A production application is experiencing intermittent 500 errors. Logs show "Database connection timeout" but the pattern is unclear.

Qwen 3.7-Max Approach:

  1. Log Analysis (15 minutes):

    • Parses 100MB of application logs
    • Identifies temporal patterns (errors spike at :00, :15, :30, :45 of each hour)
    • Correlates with database slow query logs
  2. Root Cause Identification (20 minutes):

    • Examines scheduled task configuration
    • Discovers a cron job running every 15 minutes that performs a full table scan
    • Identifies that the scan holds locks, blocking API requests
  3. Solution Implementation (25 minutes):

    • Adds appropriate database index
    • Refactors the cron job to use incremental updates
    • Adds connection pool monitoring
    • Implements circuit breaker for database calls

Result: Production issue resolved in 1 hour. Typical incident response time: 4-8 hours.


Limitations and Areas for Improvement

While Qwen 3.7-Max excels at many tasks, it's important to understand its limitations:

Current Weaknesses

Multimodal Capabilities: Unlike GPT-5.5 or Gemini 3.5, Qwen 3.7-Max has limited vision capabilities. It can process code screenshots but struggles with:

  • Complex diagrams and architecture drawings
  • UI/UX design interpretation
  • Handwritten notes or whiteboard photos

Domain-Specific Knowledge: While excellent at general programming, Qwen can be weaker in highly specialized domains:

  • Quantum computing algorithms
  • Advanced GPU kernel programming (ironic given the 35-hour feat, but that used extensive documentation)
  • Embedded systems with exotic architectures
  • Niche languages like Erlang, Haskell, or Prolog

Creative Tasks: Qwen is optimized for logic and problem-solving, not creative writing. For tasks like:

  • Marketing copy generation
  • Creative storytelling
  • Naming products or features
  • Design ideation

...other models (like Claude Opus or GPT-5.5) may perform better.

Reasoning About Physical World: Qwen understands code and abstract systems well, but struggles with:

  • Physics simulations requiring real-world intuition
  • Mechanical engineering constraints
  • Materials science questions

Comparison to Alternatives

Task TypeQwen 3.7-MaxClaude Opus 4.6GPT-5.5DeepSeek V4
Code GenerationExcellentExcellentVery GoodExcellent
Long-Horizon TasksExcellentGoodGoodVery Good
Creative WritingFairExcellentExcellentGood
Multimodal UnderstandingLimitedExcellentExcellentLimited
Mathematical ReasoningExcellentVery GoodExcellentVery Good
Cost EfficiencyExcellentFairFairExcellent
Speed (Latency)Very GoodGoodGoodExcellent

Pricing and Availability

As of May 2026, Qwen 3.7-Max is available through Alibaba Cloud's Model Studio with competitive pricing:

Pricing Structure

Input Tokens: $4 per million tokens Output Tokens: $12 per million tokens

Comparison:

  • Claude Opus 4.6: $15 / $60 per million tokens
  • GPT-5.5: $10 / $40 per million tokens
  • DeepSeek V4 Pro: $2.50 / $7.50 per million tokens (but less capable)

For typical coding tasks (1 million input tokens, 200k output tokens):

  • Qwen 3.7-Max: $6.40
  • Claude Opus 4.6: $27.00
  • GPT-5.5: $18.00

Volume Discounts:

  • 10M+ tokens/month: 20% discount
  • 100M+ tokens/month: 35% discount
  • Enterprise agreements: Custom pricing

Access Methods

1. Alibaba Cloud Model Studio:

  • Web-based playground
  • API key management
  • Usage analytics
  • Model fine-tuning (coming Q3 2026)

2. API Direct Access:

bash
curl https://dashscope-intl.aliyuncs.com/api/v1/chat/completions \
  -H "Authorization: Bearer $QWEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "qwen3.7-max",
    "messages": [{"role": "user", "content": "Hello!"}]
  }'

3. SDK Support:

  • Python: pip install dashscope
  • JavaScript/TypeScript: npm install @alicloud/dashscope
  • Java: Maven/Gradle packages
  • Go: Official Go SDK

Geographic Availability:

  • Initially: China, Asia-Pacific, Europe, North America
  • Expanding: Middle East, Africa, Latin America (Q3 2026)

Future Roadmap

Alibaba has shared some insights into the future of Qwen:

Qwen 3.7-Max Turbo (Q3 2026)

A faster, more cost-effective variant:

  • 60% lower latency
  • 50% lower cost
  • 90% of the capability for tasks under 10k tokens
  • Ideal for high-frequency API calls

Qwen 3.7-Max Vision (Q4 2026)

Enhanced multimodal capabilities:

  • Full image understanding (diagrams, UI screenshots, charts)
  • Video analysis for debugging (watch application behavior)
  • OCR for handwritten notes and whiteboard photos

Qwen 4.0 Series (Early 2027)

Next generation with:

  • 30% improvement on agent benchmarks
  • Native audio processing for pair programming
  • Self-improving capabilities (learn from own mistakes)
  • Specialized variants for different domains (web dev, data science, systems programming)

Getting Started Guide

For developers interested in trying Qwen 3.7-Max:

Step 1: Get API Access

  1. Visit Alibaba Cloud Model Studio
  2. Sign up (free tier available: 1M tokens)
  3. Generate API key from dashboard

Step 2: Basic Setup

Python:

python
from dashscope import Generation

response = Generation.call(
    model='qwen3.7-max',
    prompt='Write a Python function to calculate Fibonacci numbers',
    api_key='your-api-key'
)
print(response.output.text)

TypeScript:

typescript
import Dashscope from '@alicloud/dashscope';

const client = new Dashscope({ apiKey: 'your-api-key' });

const response = await client.chat({
  model: 'qwen3.7-max',
  messages: [
    { role: 'user', content: 'Write a TypeScript function for debouncing' }
  ]
});

console.log(response.choices[0].message.content);

Step 3: Agent Integration

For Claude Code:

bash
# In your shell config (.zshrc or .bashrc)
export ANTHROPIC_MODEL="qwen3.7-max"
export ANTHROPIC_BASE_URL="https://dashscope-intl.aliyuncs.com/apps/anthropic"
export ANTHROPIC_API_KEY="your-qwen-api-key"

# Now use Claude Code normally
claude "Refactor this codebase to use TypeScript"

For Aider:

bash
aider --model qwen3.7-max --api-base https://dashscope-intl.aliyuncs.com/compatible-mode/v1 --api-key your-qwen-api-key

Step 4: Optimize for Your Use Case

For Long-Horizon Tasks:

python
response = Generation.call(
    model='qwen3.7-max',
    prompt='[Your complex multi-step task]',
    temperature=0.3,  # Lower for consistency
    top_p=0.8,
    max_tokens=8000  # Higher for detailed plans
)

For Fast Iteration:

python
response = Generation.call(
    model='qwen3.7-max',
    prompt='[Your quick question]',
    temperature=0.7,
    max_tokens=2000,
    stream=True  # Streaming for faster perceived response
)

Summary

Qwen 3.7-Max is a powerful foundation for the "Agent Frontier." By prioritizing sustained execution and cross-scaffold generalization through innovative training methodologies like environment scaling, Alibaba has provided developers with a reliable backbone for the next generation of autonomous software engineering and productivity tools.

Key takeaways:

For Individual Developers:

  • Cost-effective alternative to Opus/GPT for coding tasks
  • Excellent performance on long-running agent workflows
  • Drop-in compatibility with existing tools

For Teams:

  • Suitable for production agent deployments
  • Reliable enough for CI/CD integration
  • Enterprise pricing makes it cost-effective at scale

For Researchers:

  • Environment scaling methodology is reproducible and effective
  • Strong baseline for agent research
  • Open insights into training methodologies (rare for frontier models)

As agent-based workflows become standard in software development, models like Qwen 3.7-Max that are specifically optimized for sustained, autonomous execution will become increasingly important. The 35-hour optimization feat isn't just a demo—it's a preview of a future where AI systems can tackle week-long projects with minimal human intervention.

Next Steps:

  • Try Qwen 3.8-Max-Preview on Token Plan (July 19, 2026).
  • Learn about the new Google Search I/O 2026 Agents.
  • Explore the Qwen 3.7-Max API.
  • Compare with DeepSeek V4 Pro.
  • Read about OpenClaw and Agent Economics.
  • Discover Agent Skills for professional workflows.

Benchmark data reflects Alibaba Cloud's official reporting as of May 20, 2026. Performance may vary in production environments.

Yash Thakker

Written by

Yash Thakker

Yash is an AI expert with over 300K learners. Join his workshops →

Related posts

Jul 19, 2026

Qwen 3.8-Max Preview: 2.4T Params, Token Plan Pricing, and Open Weights Soon

Alibaba's Qwen team posted Qwen 3.8 on July 19 — a 2.4T-parameter stack going open-weight soon, with Qwen3.8-Max-Preview live on Token Plan today. We map pricing, supported coding tools, China vs international URLs, and what to believe about the Fable 5 comparison.

Jul 28, 2026

Opus 5 on SlopCodeBench: 24% Strict Pass, Still Can't Run Lights-Off

SlopCodeBench measures whether a model can maintain a codebase across incrementally revealed checkpoints, not just solve one problem once. humanlayer's dhorthy ran Claude Opus 5, Opus 4.8, and Sonnet 5 through 17 checkpoints and watched live for six hours. Opus 5 won on strict pass rate but also tripled the code volume — this post breaks down what the numbers mean and what HN argued about.

Jul 24, 2026

Grok 4.5: VulcanBench Lead and Graffiti Conjecture 284

July 2026: Grok 4.5 goes wide on Grok.com, X, and mobile while VulcanBench Report No. 4 puts it at 21/23 tasks. Separately, a Grok-powered agent flags Hoffman–Singleton as a counterexample to Graffiti 284 — verify before you hype.