mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-06 10:58:17 -05:00
[GH-ISSUE #23017] feat: Support for Qwen/Qwen3-ASR-0.6B Model #58534
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @KushtrimVisoka on GitHub (Mar 25, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/23017
Check Existing Issues
Verify Feature Scope
Problem Description
OpenWebUI currently supports Whisper for ASR, but does not support the Qwen/Qwen3-ASR-0.6B model. This limits the ability to use alternative ASR models within the same interface.
Desired Solution you'd like
Add support for Qwen/Qwen3-ASR-0.6B as an additional ASR backend option in OpenWebUI, compatible with the existing audio input pipeline.
Alternatives Considered
Continue using Whisper as the only supported ASR backend.
Additional Context
Qwen/Qwen3-ASR-0.6B is a recently available ASR model that could be a useful alternative option for users.
@hdnh2006 commented on GitHub (Mar 30, 2026):
I think if you deploy Qwen3-ASR with an OpenAI compatible API, you will be able to connect it.
@Classic298 commented on GitHub (Apr 15, 2026):
As @hdnh2006 mentioned, this is already supported. Set the STT engine to "openai", point the base URL to your Qwen3-ASR server (served via vLLM, LiteLLM, or any OpenAI-compatible wrapper), and set the model name accordingly. The OpenAI-compatible STT engine handles the standard /audio/transcriptions endpoint.
No additional integration is needed for this. Closing as already supported.