Qwen products: one model family, every surface
From a free chatbot to a coding agent, a research assistant, a production API, and full media generation - here's every product Alibaba's Tongyi Lab has built on top of Qwen, and which one fits your work.
One foundation, eight products
Everything in the Qwen ecosystem traces back to a single family of models - what changes is the surface you meet them on.
Qwen is the family of large language models built by Tongyi Lab, the AI division of Alibaba Cloud, first released in 2023 under the Chinese name Tongyi Qianwen. Over the years it has grown from a single chat model into one of the most widely deployed model families in the world, and Alibaba has wrapped those models in a suite of products aimed at very different audiences - casual users who just want to ask questions, developers shipping production software, researchers digging through literature, and creators generating video and voice. The unifying idea is simple: build the strongest possible foundation models, then meet people wherever their work actually happens.
That is why there is no single "Qwen app" you must learn. Instead there are eight core products, each tuned to a job. A few you open in a browser and never think about the plumbing; others you install, script against, or wire into a production pipeline. The same account links them all, so a custom prompt you save in the chat, a voice you clone, or an API key you generate is available everywhere you sign in. Below is the map, followed by a closer look at each one.
Qwen Chat
The free conversational assistant
Qwen Code
Coding agent & IDE tools
Qwen Research
Deep research toolkit
API Platform
Production API & SDKs
Video Generator
Text- & image-to-video
Qwen Voice
TTS, cloning & speech
Mobile App
iOS & Android
Android APK
Direct & sideload builds
Qwen Chat
The front door for everyone - a free, no-install AI workspace that does far more than answer questions.
The conversational flagship
Qwen Chat is the official conversational interface for the Qwen models. It is free, runs in any browser, and needs no setup - but calling it a chatbot undersells it. It is a complete AI workspace: you can hold long multi-turn conversations with memory, drop in a PDF and ask about page 47, paste a chart screenshot and have it recreate the underlying data, write and run code in a sandbox, search the live web with cited sources, and generate interactive artifacts you can preview and edit on the spot.
Under the hood it runs on the latest flagship Qwen model by default, with a model picker that lets you switch to specialists - a coding-tuned model for programming, a vision model for images, a math model for proofs. For the overwhelming majority of people, Qwen Chat is the only Qwen product they will ever need.
- Long-context conversation with history sync across devices
- Upload PDFs, docs, spreadsheets & slides up to 200 MB
- Read photos, screenshots, charts & diagrams natively
- Real-time browsing with source citations
- Generate, run, preview & download interactive artifacts
- Connect external tools for agentic, multi-step workflows
Who it's for
Students summarizing papers, writers drafting and editing across 130+ languages, analysts pasting a CSV for instant insight, developers debugging a stack trace, anyone who wants a capable assistant without touching a line of configuration. The free tier is generous; an optional Pro tier removes daily limits, raises upload sizes, and adds priority access. Because it is free to start and requires no account to try, Qwen Chat is also the cleanest way to evaluate whether Qwen's quality fits your needs before you commit to anything heavier.
Qwen Code
A coding assistant that understands whole repositories, not just the file in front of it.
- Code completion & generation across 100+ languages
- Repository-level understanding, not single-file context
- Code review, debugging & intelligent refactoring
- IDE integrations for VS Code and JetBrains
- Automated test generation & documentation
- Available as an extension, plugin, CLI, or open repo
Built for real software work
Qwen Code is the coding-specialized product in the family, built on Qwen's code-tuned foundation models and optimized for software development end to end. What separates it from a general chatbot's coding mode is scope: it understands an entire codebase rather than a single snippet, so it can plan a multi-file refactor, trace a bug across modules, generate tests for code it has read, and write documentation that reflects how the project actually works.
It meets developers in their existing tools - a VS Code extension, a JetBrains plugin, a command-line interface you can install with a package manager, and an open repository on GitHub for those who want to build on it directly. It posts strong scores on coding benchmarks and supports more than a hundred programming languages.
Getting started
Install the VS Code extension or JetBrains plugin from the marketplace, or grab the command-line tool through your package manager. The CLI is the natural choice for terminal-centric workflows and agentic, multi-step coding tasks where you want the model to run an edit-test-fix loop rather than autocomplete a line. For teams that want full control, the open GitHub repository hosts the tooling so you can inspect, fork, and integrate it into your own pipelines.
Qwen Research
A deep-research toolkit for the moment a single answer isn't enough and you need a sourced report.
From question to cited report
Qwen Research is the analytical product aimed at scientists, analysts, and anyone whose work involves synthesizing many sources rather than asking one question. It runs as a deep-research agent: it searches the web, reads and analyses academic papers, extracts and visualizes data, automates literature reviews, verifies facts across multiple sources, and assembles the result into a structured research report rather than a single chat reply.
The distinction from ordinary chat is the depth of the loop. Where a chatbot gives you a fast answer, the research agent is built to spend more effort - gathering, cross-checking, and organizing - so the output reads like a briefing you could hand to a colleague, complete with the sources behind each claim.
- Deep web research agent with multi-source gathering
- Academic paper analysis & summarization
- Data extraction and visualization
- Automated literature reviews
- Multi-source fact verification
- Comprehensive, structured report generation
Access is through a dedicated web platform and via API for teams that want to embed research workflows into their own products. It pairs naturally with the broad knowledge and long-context strengths of the underlying models: a large context window means the agent can hold many documents in mind at once instead of summarizing each away and losing detail.
The API Platform
The developer's entry point: production-grade access to the entire Qwen catalogue through one OpenAI-compatible endpoint.
- OpenAI-compatible - migrate with a base-URL swap
- Real-time streaming (SSE) & batch processing
- Model fine-tuning pipeline (LoRA, QLoRA, full)
- Usage analytics, monitoring & multi-region deploy
- Python and JavaScript / TypeScript SDKs
- Enterprise SLA options with high uptime guarantees
Build Qwen into anything
The API Platform - delivered through Alibaba Cloud Model Studio, with the underlying API surface called DashScope - is how developers put Qwen into their own apps, scripts, and products. Its headline feature is OpenAI compatibility: it works with the standard openai Python and JS SDKs, LangChain, LiteLLM, and anything else that speaks the OpenAI protocol, so migrating existing code usually means changing only the base URL, the API key, and the model name.
From there, the whole catalogue is one endpoint away - you simply change the model string to reach a balanced general model, a budget high-volume model, a reasoning flagship, or specialists for code, vision, and audio. Streaming, function calling, JSON mode, fine-tuning, and batch processing are all supported, and a generous free tier lets you prototype before paying a cent.
A first request
from openai import OpenAI client = OpenAI( api_key="YOUR_DASHSCOPE_API_KEY", base_url="https://dashscope-intl.aliyuncs.com/compatible-mode/v1", ) completion = client.chat.completions.create( model="qwen-plus", messages=[{"role": "user", "content": "Hello, Qwen!"}] ) print(completion.choices[0].message.content)
The model catalogue at a glance
All of these are reachable through the same key and endpoint - you change only the model string. Pricing varies by region and changes often, so always confirm current rates in Model Studio before committing a production workload.
| Model | Context | Best for |
|---|---|---|
| Qwen-Max | large | Complex reasoning, frontier quality |
| Qwen-Plus | up to 1M | Best general default |
| Qwen-Turbo | up to 1M | High-volume, low cost |
| Qwen-Flash | up to 1M | Tiered, lowest cost |
| Qwen-Coder | large | Code generation |
| Qwen-VL | large | Image & video understanding |
Creative media: Video & Voice
The same foundation, pointed at pixels and sound - turning prompts into cinematic clips and natural speech.
Qwen AI Video Generator
The Video Generator turns text prompts and reference images into high-fidelity video - short clips, animations, product demos, and social-ready content. It supports both text-to-video and image-to-video, outputs up to HD resolution, and gives you control over camera motion and style presets while maintaining character and scene consistency across a clip. Lip-sync and voice-over integration round it out, and it ships with commercial usage rights for the content you create.
- Text-to-video & image-to-video generation
- Up to 1080p HD output
- Camera motion & style presets
- Character & scene consistency
- Lip-sync & voice-over integration
- Commercial usage rights included
- Voice cloning from seconds of reference audio
- 50+ languages and 200+ voices
- Emotion & style control
- Real-time streaming text-to-speech
- Speech-to-text transcription
- Custom voice fine-tuning
Qwen AI Voice
Qwen Voice is the audio product: natural-sounding text-to-speech, voice cloning from a short sample, and real-time speech recognition. It is built for voice assistants, audiobooks, dubbing pipelines, and accessibility tools, with support for 50+ languages and 200+ voices plus emotion and style control. You can stream TTS in real time, transcribe speech to text, and fine-tune a custom voice for a consistent brand or character.
Together, Video and Voice extend the Qwen family beyond text into full multimodal creation - and because they share an account and platform with the rest of the ecosystem, they slot into the same workflows and billing.
Mobile app & Android APK
Every Qwen capability in your pocket - with a direct-download option for regions and devices without an app store.
Qwen AI App
The native mobile apps for iOS and Android bring the full chat experience to your phone, with a few capabilities that only make sense on mobile: camera-based visual Q&A (point your camera at something and ask about it), real-time meeting transcription, document and PDF scanning, and offline voice and vision modes. Everything syncs across devices through the same account, so you can start a conversation on your laptop and continue it on the train.
- iOS 15+ and Android 9+ support
- Offline voice & vision modes
- Camera-based visual Q&A
- Real-time meeting transcription
- Document & PDF scanning
- Seamless cross-device chat sync
- Latest stable & beta channels
- ARM64, ARMv7 & x86_64 builds
- Signed & checksum-verified
- Auto-update support
- Android 9+ (TV & tablet ready)
- No Google Services required
Qwen AI APK
The Android APK is a direct-download build for users in regions without Google Play access, or for sideloading onto Android TV, tablets, and custom ROMs. It comes in stable and beta channels, with ARM64, ARMv7, and x86_64 builds, signed and checksum-verified so you can confirm integrity before installing. It supports auto-update and runs without Google Services, which makes it the practical choice for devices that can't or don't use the Play Store.
One account, every Qwen tool
The ecosystem is designed so the products feel like one product wearing different clothes.
A single Qwen account works seamlessly across Chat, Code, Voice, the Video Generator, the mobile app, and the API Platform. Sign in once and your chats, files, and prompts sync across web, desktop, and mobile; you manage API keys, usage, and billing from one dashboard; and custom voices, video styles, and system prompts you save are available wherever you go. New accounts come with free API credits to get started, and the platform supports two-factor authentication and enterprise SSO for organizations that need it.
That shared backbone is the quiet advantage of the Qwen approach. Because every product is built on the same foundation models and the same account system, the skills and assets you develop in one carry over to the rest. A prompt pattern that works well in the chat translates to the API; a voice you clone is usable in the video generator; the model you trust in one place behaves consistently across the others. For individuals that means less friction; for teams it means a single vendor relationship, one security posture, and one billing relationship across a surprisingly broad set of capabilities.