malek-messaoudii
commited on
Commit
·
768f4da
1
Parent(s):
1e7709f
Update requirements.txt
Browse files- requirements.txt +11 -4
requirements.txt
CHANGED
|
@@ -7,6 +7,9 @@ pydantic==2.5.0
|
|
| 7 |
SpeechRecognition==3.10.0
|
| 8 |
pyttsx3==2.90
|
| 9 |
|
|
|
|
|
|
|
|
|
|
| 10 |
# Transformers et dépendances compatibles
|
| 11 |
transformers==4.35.0
|
| 12 |
tokenizers==0.14.1
|
|
@@ -14,12 +17,16 @@ huggingface_hub==0.16.4
|
|
| 14 |
accelerate==0.20.3
|
| 15 |
safetensors>=0.3.1
|
| 16 |
|
| 17 |
-
#
|
| 18 |
protobuf==3.20.0
|
|
|
|
|
|
|
| 19 |
soundfile==0.12.1
|
| 20 |
requests==2.31.0
|
| 21 |
-
torch==2.0.1+cpu
|
| 22 |
-
groq==0.9.0
|
| 23 |
|
| 24 |
-
#
|
|
|
|
| 25 |
--extra-index-url https://download.pytorch.org/whl/cpu
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
SpeechRecognition==3.10.0
|
| 8 |
pyttsx3==2.90
|
| 9 |
|
| 10 |
+
# Fix compatibilité NumPy + Torch + Transformers
|
| 11 |
+
numpy==1.26.4
|
| 12 |
+
|
| 13 |
# Transformers et dépendances compatibles
|
| 14 |
transformers==4.35.0
|
| 15 |
tokenizers==0.14.1
|
|
|
|
| 17 |
accelerate==0.20.3
|
| 18 |
safetensors>=0.3.1
|
| 19 |
|
| 20 |
+
# Modèle killer pour protobuf
|
| 21 |
protobuf==3.20.0
|
| 22 |
+
|
| 23 |
+
# Audio + STT
|
| 24 |
soundfile==0.12.1
|
| 25 |
requests==2.31.0
|
|
|
|
|
|
|
| 26 |
|
| 27 |
+
# PyTorch CPU compatible NumPy<2
|
| 28 |
+
torch==2.0.1+cpu
|
| 29 |
--extra-index-url https://download.pytorch.org/whl/cpu
|
| 30 |
+
|
| 31 |
+
# Groq SDK
|
| 32 |
+
groq==0.9.0
|