From 0b9d19183c82a2a662986210b25847505e33872f Mon Sep 17 00:00:00 2001 From: wuzhongjian Date: Fri, 18 Jul 2025 11:30:05 +0800 Subject: [PATCH] [Doc] Add a doc for qwen omni Signed-off-by: wuzhongjian --- docs/source/faqs.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/faqs.md b/docs/source/faqs.md index a0de425be8..4192a24700 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.