Commit ·
d58060f
1
Parent(s): ca77800
Use Python 3.12 and prebuilt llama.cpp wheel
Browse files- README.md +2 -1
- requirements.txt +4 -1
README.md
CHANGED
|
@@ -4,10 +4,11 @@ emoji: 🗣️
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: purple
|
| 6 |
sdk: gradio
|
|
|
|
| 7 |
app_file: app.py
|
| 8 |
pinned: false
|
| 9 |
---
|
| 10 |
|
| 11 |
# ASL TTS Test
|
| 12 |
|
| 13 |
-
MVP Gradio pour tester la brique TTS avant de brancher le pipeline vidéo ASL.
|
|
|
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: purple
|
| 6 |
sdk: gradio
|
| 7 |
+
python_version: "3.12"
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
|
| 12 |
# ASL TTS Test
|
| 13 |
|
| 14 |
+
MVP Gradio pour tester la brique TTS, llama.cpp et une interface custom avant de brancher le pipeline vidéo ASL.
|
requirements.txt
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
gradio
|
| 2 |
qwen-tts
|
| 3 |
soundfile
|
| 4 |
torch
|
| 5 |
-
llama-cpp-python
|
| 6 |
huggingface-hub
|
|
|
|
|
|
| 1 |
+
--extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cpu
|
| 2 |
+
--prefer-binary
|
| 3 |
+
|
| 4 |
gradio
|
| 5 |
qwen-tts
|
| 6 |
soundfile
|
| 7 |
torch
|
|
|
|
| 8 |
huggingface-hub
|
| 9 |
+
llama-cpp-python
|