From 54f2b311848badc86371d269140e729012a60f2c Mon Sep 17 00:00:00 2001 From: JohnJan Date: Sun, 20 Jul 2025 09:05:41 +0800 Subject: [PATCH] [Doc] Add a doc for qwen omni (#1867) Signed-off-by: wuzhongjian ### What this PR does / why we need it? Add FAQ note for qwen omni Fixes https://github.com/vllm-project/vllm-ascend/issues/1760 issue1 - vLLM version: v0.9.2 - vLLM main: https://github.com/vllm-project/vllm/commit/b9a21e9173508e38ac693a8781c48ee24c8873ec --- docs/source/faqs.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/faqs.md b/docs/source/faqs.md index a0de425..4192a24 100644 --- a/docs/source/faqs.md +++ b/docs/source/faqs.md @@ -163,3 +163,7 @@ export HCCL_DETERMINISTIC = 1 export ATB_MATMUL_SHUFFLE_K_ENABLE = 0 export ATB_LLM_LCOC_ENABLE = 0 ``` + +### 19. How to fix the error "ImportError: Please install vllm[audio] for audio support" for Qwen2.5-Omni model? +The `Qwen2.5-Omni` model requires the `librosa` package to be installed, you need to install the `qwen-omni-utils` package to ensure all dependencies are met `pip install qwen-omni-utils`, +this package will install `librosa` and its related dependencies, resolving the `ImportError: No module named 'librosa'` issue and ensuring audio processing functionality works correctly.