vllm-omni backend (cuda13) fails to load: editable install points at build path, and unpinned vllm-omni main no longer matches backend.py
Los mantenedores suelen responder en 3 días
Nadie ha tomado este issue todavía.
Evaluación
- Dificultad
- 4/5
- Tiempo estimado
- 3-5 días
- Aptitud para principiantes
- 52/100
- Tipo de issue
- Error
- Claridad
- Bastante claro
- Estado de actividad
- Activo
- Stack tecnológico
- docker, python
- Área
- backend, build-system
Línea de trabajo
Lee backend/python/vllm-omni/install.sh, backend/python/common/libbackend.sh y backend/python/vllm-omni/backend.py; compara la revisión clonada de vllm-omni con las importaciones y los argumentos de Omni. Reproduce la solicitud del modelo de la galería del issue y luego verifica que el backend se cargue y devuelva audio sin errores de editable-path o API-version.
Escrito por el modelo de indexación a partir del texto del issue.
Descripción
LocalAI version:
quay.io/go-skynet/local-ai:master-gpu-nvidia-cuda-13 (sha256:02e823f5f25ddef3f4edb94a8960e506daa4f71595d7c75b041d52b6eaaf425b, LocalAI bcf196d)
Backend cuda13-vllm-omni from quay.io/go-skynet/local-ai-backends:latest-gpu-nvidia-cuda-13-vllm-omni (sha256:d97f6feee8effc5b71201e5d77eb934f746c4f2197fbf10736860d1df558eee3), installed 2026-09-11. Inside it: vllm 0.27.1, vllm_omni 0.27.0rc2.dev102+gc3f80502e.
Environment, CPU architecture, OS, and Version:
Docker Desktop 29.7.2 (Compose 5.5.1) on Windows 11, WSL2 kernel 6.18.33.2-microsoft-standard-WSL2, x86_64. AMD Ryzen 7 7800X3D, NVIDIA RTX 5070 Ti 16 GB, driver 616.92.
Describe the bug
vllm-omni-qwen3-tts-custom-voice from the gallery can't be loaded with the prebuilt cuda13 vllm-omni backend. There are three separate problems, and each one only shows up after the previous one is worked around:
-
ModuleNotFoundError: No module named 'vllm_omni'. The editable install points at the build path.
backend/python/vllm-omni/install.shinstalls vllm-omni withuv pip install -e .. The generated findervenv/lib/python3.12/site-packages/__editable___vllm_omni_*_finder.pyhardcodes the build-time location:MAPPING = {'vllm_omni': '/vllm-omni/vllm-omni/vllm_omni'}, plus severalNAMESPACESentries with the same prefix.direct_url.jsonisfile:///vllm-omni/vllm-omni. At runtime the backend lives in/backends/cuda13-vllm-omni/, so the source is at/backends/cuda13-vllm-omni/vllm-omni/vllm_omniand the import resolves nothing._makeVenvPortableinbackend/python/common/libbackend.shfixes the python symlinks,pyvenv.cfgand shebangs, but not editable finders. Rewriting the paths in the finder makes the import work.
This is probably the root cause of theNo module named 'vllm_omni'part of #9162, reported there for cuda12.backend/python/fish-speech/install.shalso usespip install -e, so it likely has the same problem. -
ModuleNotFoundError: No module named 'vllm_omni.utils.platform_utils'.
backend.pyline 43 doesfrom vllm_omni.utils.platform_utils import detect_device_type, is_npu. The vllm-omni source bundled in the image doesn't have that module anymore:vllm_omni/utils/containsaudio.py,custom_voice_io.py,forced_aligner.py,mm_outputs.py, … and there is a newvllm_omni/platforms/package. Neither function is defined anywhere in the bundled source. -
ValueError: `stage_configs_path` is no longer supported; use `deploy_config` instead.
After shimming the two helpers above, loading fails here.backend.py(around line 225) always passesstage_configs_path(defaultNone) toOmni(...)forllm/ttsmodel types.
Problems 2 and 3 have the same underlying cause: install.sh clones https://github.com/vllm-project/vllm-omni.git without pinning a tag or commit. Each backend build therefore picks up whatever main is at that moment, and main has moved past the API that backend.py targets.
To Reproduce
- Run
quay.io/go-skynet/local-ai:master-gpu-nvidia-cuda-13with an NVIDIA GPU. - Install
vllm-omni-qwen3-tts-custom-voicefrom the model gallery. This pulls thecuda13-vllm-omnibackend. curl http://localhost:8080/v1/audio/speech -H "Content-Type: application/json" -d '{"model":"vllm-omni-qwen3-tts-custom-voice","input":"Hello"}'
Expected behavior
The model loads and returns audio.
Logs
ERROR Failed to load model modelID="vllm-omni-qwen3-tts-custom-voice" error=failed to load model with internal loader: grpc service not ready: backend process exited with code 1: ModuleNotFoundError: No module named 'vllm_omni' backend="vllm-omni"
after fixing the finder paths:
WARN Backend process exited unexpectedly id="vllm-omni-qwen3-tts-custom-voice" process="run.sh" exitCode="1" stderr="ModuleNotFoundError: No module named 'vllm_omni.utils.platform_utils'"
after shimming platform_utils:
ERROR Failed to load model modelID="vllm-omni-qwen3-tts-custom-voice" error=failed to load model with internal loader: could not load model (no success): Unexpected err=ValueError('`stage_configs_path` is no longer supported; use `deploy_config` instead.'), type(err)=<class 'ValueError'> backend="vllm-omni"
Additional context
Possible fixes:
- Pin vllm-omni in
install.shto a tag or commit thatbackend.pyis tested against, and bump it deliberately. - Install it non-editable (
uv pip install .), or make_makeVenvPortablerewrite editable finder paths to the runtime backend dir. Check otherbackend/python/*/install.shfor-einstalls (at least fish-speech). - Update
backend.pyfor the current vllm-omni API (vllm_omni.platforms,deploy_config) if moving forward instead of pinning back.
Related: #9162, #9293
- Lenguaje dominante
- Go
- Estrellas
- 49.2k
- Forks
- 4.5k
- Merge medio
- 19 h 42 min
- PR fusionados (30 d)
- 299
Preparar el entorno
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Más de mudler/LocalAI
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 68/100
mudler/LocalAI#12264 · 1 comentario ·
Los mantenedores suelen responder en 3 días
-
bug unconfirmed
Dificultad 2/5 1-3 horas Aptitud para principiantes 68/100
Los mantenedores suelen responder en 3 días
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 76/100
mudler/LocalAI#11995 · 1 comentario ·
Los mantenedores suelen responder en 3 días
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 75/100
mudler/LocalAI#11991 · 1 comentario ·
Los mantenedores suelen responder en 3 días
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 84/100
mudler/LocalAI#11973 · 1 comentario ·
Los mantenedores suelen responder en 3 días
Todos los issues de mudler/LocalAI
Issues similares
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 78/100
-
[开源推荐] FCaptcha:可自行部署的开源验证码Abierto
Dificultad 1/5 Menos de una hora Aptitud para principiantes 65/100
521xueweihan/HelloGitHub#3789 ·
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 88/100
Los mantenedores suelen responder en 12 días
-
stage-fail
Dificultad 2/5 1-3 horas Aptitud para principiantes 78/100
siyuan-note/bazaar#2282 ·
Los mantenedores suelen responder en 1 día
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 78/100
openshift/kube-compare#307 ·
Los mantenedores suelen responder en 1 día