AIAny
AI Agent2023
Icon for item

Qwen-Agent

Agent framework for building tool-using applications on Qwen 3+ LLMs. Provides function calling, MCP, a Dockerized code interpreter, and RAG over documents up to 1M tokens; powers the Qwen Chat backend and a Chrome browser-assistant extension.

Introduction

Most agent frameworks chase model-agnosticism; this one makes the opposite bet. By co-designing its orchestration with the Qwen model family it targets, it can rely on capabilities generic wrappers must treat as optional — native function-calling templates, reasoning_content for thinking models, and context windows up to 1M tokens. The result is less glue code and behavior that tracks each new Qwen release rather than lagging behind it.

What Sets It Apart
  • Tool layer that assumes structured calling. Function calling, parallel calls, and MCP integration are first-class, so wiring up external tools is configuration rather than prompt hacking.
  • Sandboxed code interpreter. Generated Python runs inside a Docker sandbox, making autonomous write-execute loops safe enough to leave running unattended.
  • RAG built for very long documents. The retrieval path is tuned for inputs up to ~1M tokens, sidestepping the chunk-and-pray pipelines most stacks rely on.
  • Production pedigree. It backs the Qwen Chat service and ships BrowserQwen, a Chrome extension, so the framework is exercised by real traffic, not just demos.
Who It's For

Great fit if you are already committed to Qwen models — via DashScope, vLLM, or Ollama — and want an opinionated stack that exposes their full feature set with minimal wiring. Look elsewhere if you need vendor-neutral abstractions across GPT, Claude, and Gemini: the tight Qwen coupling that is its strength becomes a lock-in cost, and porting agents to other model families means giving up the very features it was built around.

Information

  • Websitegithub.com
  • OrganizationsAlibaba Cloud, Qwen Team
  • AuthorsQwen team (Alibaba Group), QwenLM (GitHub)
  • Published date2023/09/22

Categories

More Items

Hugging Face
AI Model2026

Open-weights LLM fine-tuned for phone-based voice agents that prioritizes low latency and reliable tool/function calling. Based on NVIDIA Nemotron 3 Nano (30B total, 3.5B active), supports very long contexts (262,144 tokens) and recommends temperature=0 with thinking disabled for deployment.

GitHub
AI Agent2026

A curated collection of production-ready Agent Skills that turn tasks—presentation production, image generation, local KB retrieval, article assembly, and web-design—into agent-loadable skill folders. Uses a SKILL.md contract, supports multiple agent runtimes (Claude Code, Cursor, Codex), and offers modular install paths with pinned release zips.

GitHub
AI Agent2026

Provides a ruleset and skills that make AI coding agents prefer the simplest correct implementation: reuse existing code, prefer stdlib/native features, and only write minimal new code. Cuts generated LOC, tokens, cost and time while preserving validation and safety.