streaming use transformers==4.51.3

This commit is contained in:
YaoyaoChang
2026-02-03 00:30:52 -08:00
parent e16491d65e
commit e43c1e2cdb
3 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -66,7 +66,7 @@
"print(\"✅ Cloned VibeVoice repository\")\n",
"\n",
"# Install project dependencies\n",
"!uv pip --quiet install --system -e /content/VibeVoice[tts]\n",
"!uv pip --quiet install --system -e /content/VibeVoice[streamingtts]\n",
"!wget -q https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -O cloudflared && chmod +x cloudflared\n",
"print(\"✅ Installed dependencies\")\n",
"\n",
+1 -1
View File
@@ -97,7 +97,7 @@ sudo docker run --privileged --net=host --ipc=host --ulimit memlock=-1:-1 --ulim
git clone https://github.com/microsoft/VibeVoice.git
cd VibeVoice/
pip install -e .
pip install -e .[streamingtts]
```
+6
View File
@@ -38,6 +38,12 @@ dependencies = [
"requests",
]
[project.optional-dependencies]
streamingtts = [
"transformers==4.51.3",
]
[project.entry-points."vllm.general_plugins"]
vibevoice = "vllm_plugin:register_vibevoice"