fix: support RTX 5070 Ti (Blackwell/SM_100) + fix web UI voice upload bug - #8
Open
newlix wants to merge 1 commit into
Open
fix: support RTX 5070 Ti (Blackwell/SM_100) + fix web UI voice upload bug#8newlix wants to merge 1 commit into
newlix wants to merge 1 commit into
Conversation
## Changes ### GPU Support (CUDA 12.8 + PyTorch 2.7.0) - Dockerfile, docker/Dockerfile: bump base image nvidia/cuda:12.4.1 β 12.8.1 - requirements.txt: cu121 β cu128 index, torch 2.3.1 β 2.7.0, torchaudio 2.3.1 β 2.7.0 - requirements.txt: onnxruntime-gpu 1.18.0 β 1.21.0 (CUDA 12.8 support) - requirements.txt: tensorrt-cu12 pinned β >=10.8.0 (Blackwell support) - requirements.txt: pin ruamel.yaml==0.17.40 (fix HyperPyYAML incompatibility with 0.18+) - requirements.txt: remove legacy onnxruntime-cuda-12 extra index (not needed for cu128) ### Bug Fix: Web UI voice upload - app.py: fix FormData field name mismatch: prompt_audio β prompt_wav (frontend was sending wrong field name, backend never received the uploaded file) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
ruamel.yamlincompatibility: pinruamel.yaml==0.17.40to fixAttributeError: 'Loader' object has no attribute 'max_depth'with HyperPyYAML 1.2.2prompt_audiobut backend expectedprompt_wav, causing all direct audio uploads to silently failChanges
Dockerfile&docker/Dockerfilenvidia/cuda:12.4.1-cudnn-devel-ubuntu22.04βnvidia/cuda:12.8.1-cudnn-devel-ubuntu22.04requirements.txtcu121βcu128torch2.3.1 β 2.7.0torchaudio2.3.1 β 2.7.0onnxruntime-gpu1.18.0 β 1.21.0tensorrt-cu12pinned==10.13.3.9β>=10.8.0(supports Blackwell)ruamel.yaml==0.17.40(fixes startup crash with HyperPyYAML)app.pyprompt_audioβprompt_wavin web UIgenerate()functionTest plan
ruamel.yamlerrorπ€ Generated with Claude Code