Unsloth Update: Qwen-Image-2.1 Support and Agent Skills Added

At a Glance
| Item | Value |
|---|---|
| Repository | unslothai/unsloth |
| Version | v0.1.812-beta |
| Published | 2026-09-23 |
| License | Apache-2.0 |
| Source type | Primary source (the publisher itself) |
Values determined by this site’s code at collection time. Dates are JST.
Overview
Unsloth is a UI tool for running and training LLMs (Large Language Models) and diffusion models in local environments. It supports a wide range of models, including GGUF, MLX, Qwen3.8, DeepSeek-V4, Gemma 4, and FLUX.
In this release, in addition to adding support for Qwen-Image-2.1, the “Agent Skills" feature has been introduced to guide models in executing specific tasks. Furthermore, the speed of long reasoning blocks in inference has doubled from the conventional 30 FPS to 60 FPS, making this a major update for users who prioritize inference performance.
Key Changes
Addition of Agent Skills
Custom skills can now be added to steer models toward specific tasks. It is also possible to reuse existing skills from Claude Code or .agents folders. By using @ in the chat, you can easily select and invoke managed skills.
Improved Inference Performance
Processing speed for long reasoning blocks has been improved. Specifically, it achieves double the speed, going from the conventional 30 FPS to 60 FPS. A smoother experience can be expected for users utilizing models accompanied by a thinking process (Thinking).
Qwen-Image-2.1 Support
Support for Qwen-Image-2.1 has been added, enabling image generation and editing. Additionally, Vision models can now view images returned by MCP tools.
Improvements to Chat and Project Management
Chats in the sidebar can now be dragged to reorder, pinned, or moved into projects. It is also possible to directly edit project names, instructions, and folders from the project page. The Thinking UI/UX has also been revamped to provide a cleaner, more modern experience.
Improved Training Reliability
Reliability regarding training resumption (resume) and dataset preparation has been improved. Hugging Face datasets now work within recipes, making it possible to resume past training runs, accurately display remaining time after resumption, map dataset columns, and respect selected splits and subsets.
Linux/Desktop Environment Improvements
Distribution for Linux environments has been significantly improved. In-app updates for Debian installations have been added, along with a native Ubuntu 24.04+ installer for ARM64. Additionally, a new AMD ROCm Docker image including Unsloth Studio and JupyterLab is available.
Storage and Model Management
Chats can now reuse downloaded models, eliminating the need to fetch the same model twice. It is also now possible to check and delete cache occupying disk space from the settings screen.
Supported Models and Hardware
With this update, the supported model architectures and hardware environments have been significantly expanded.
Model Architectures and Features
Qwen-Image-2.1 is newly supported. This enables image generation and image editing. Additionally, regarding Vision models, they can now see images returned by MCP (Model Context Protocol) tools, enabling more advanced multimodal reasoning.
Hardware and OS Environments
Support for Linux environments has been greatly enhanced. An in-app update feature has been added for users utilizing Debian installations. Furthermore, for users utilizing the ARM64 architecture, a native Linux .deb installer targeting Ubuntu 24.04 or later is provided.
For users utilizing AMD GPUs, a new AMD ROCm Docker image bundling Unsloth Studio and JupyterLab has been prepared. In addition, hardware resource management has been optimized, such as improving iGPU (integrated GPU) environments using Vulkan to properly handle unified-memory windows as shared host memory.
How to Get It
The procedures for installing or updating Unsloth from the latest (Nightly) source are as follows:
Installation and Update on macOS, Linux, and WSL
For developer installation (building from the main branch), use the following commands:
git clone https://github.com/unslothai/unsloth
cd unsloth
./install.sh --local
unsloth studio -p 8888
If you have already cloned the repository, perform the update with the following steps:
cd unsloth && git pull
./install.sh --local
unsloth studio -p 8888
Installation and Update on Windows (PowerShell)
In a Windows environment, perform the installation using PowerShell with the following steps:
git clone https://github.com/unslothai/unsloth.git
cd unsloth
Set-ExecutionPolicy -Scope Process -ExecutionPolicy RemoteSigned
.\install.ps1 --local
unsloth studio -p 8888
To perform an update, run the following commands:
cd unsloth; git pull
.\install.ps1 --local
unsloth studio -p 8888
Advanced Installation Options
Depending on specific environments or use cases, you can also install by specifying the following options:
Installing to an Isolated Location By setting the UNSLOTH_STUDIO_HOME environment variable, you can keep the installation complete within a specific directory.
# Linux/macOS/WSL
UNSLOTH_STUDIO_HOME="$PWD/.studio"./install.sh --local
unsloth studio -p 8888
# Windows PowerShell
$env:UNSLOTH_STUDIO_HOME="$PWD\.studio";.\install.ps1 --local
$env:UNSLOTH_STUDIO_HOME="$PWD\.studio"; unsloth studio -p 8888
Skipping PyTorch (GGUF-Only Mode)
# Linux/macOS/WSL
curl -fsSL https://unsloth.ai/install.sh | UNSLOTH_NO_TORCH=1 sh
# Windows PowerShell
$env:UNSLOTH_NO_TORCH=1; irm https://unsloth.ai/install.ps1 | iex
Related Articles
- Unsloth v0.1.813-beta Released with Qwen-Image-2.1 Support
- Unsloth v0.1.811-beta Released with AMD & NVIDIA Docker Images
- Unsloth v0.1.810-beta Released with Multi-User and AMD Support
- Unsloth Releases Windows ARM64 Binary Version
Sources
Update History
- 2026-09-23: Rebuilt the article (details are in the Japanese edition).
- 2026-09-23: Rebuilt the article (details are in the Japanese edition).

