pin transformers to stable 5.5.x
Browse files- requirements.txt +13 -12
requirements.txt
CHANGED
|
@@ -1,20 +1,21 @@
|
|
| 1 |
--extra-index-url https://download.pytorch.org/whl/cpu
|
| 2 |
|
| 3 |
-
# NumPy 2.x kann mit einigen Torch-Builds Probleme machen -> stabil pinnen
|
| 4 |
numpy==1.26.4
|
| 5 |
|
| 6 |
-
#
|
| 7 |
torch==2.4.1+cpu
|
| 8 |
|
| 9 |
-
#
|
| 10 |
-
transformers==5.
|
| 11 |
|
| 12 |
-
#
|
| 13 |
-
fastapi
|
| 14 |
-
uvicorn[standard]
|
| 15 |
-
chromadb==1.5.9
|
| 16 |
sentence-transformers==5.5.1
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
--extra-index-url https://download.pytorch.org/whl/cpu
|
| 2 |
|
|
|
|
| 3 |
numpy==1.26.4
|
| 4 |
|
| 5 |
+
# stabilste Kombi mit transformers 5.x
|
| 6 |
torch==2.4.1+cpu
|
| 7 |
|
| 8 |
+
# Ganz wichtig: nicht 5.9.0, sondern stabiler Bereich
|
| 9 |
+
transformers==5.5.3
|
| 10 |
|
| 11 |
+
# sentence-transformers passt dazu stabil
|
|
|
|
|
|
|
|
|
|
| 12 |
sentence-transformers==5.5.1
|
| 13 |
+
|
| 14 |
+
fastapi==0.136.3
|
| 15 |
+
uvicorn[standard]==0.48.0
|
| 16 |
+
chromadb==1.5.9
|
| 17 |
+
|
| 18 |
+
groq==1.2.0
|
| 19 |
+
python-dotenv==1.2.2
|
| 20 |
+
pydantic==2.13.4
|
| 21 |
+
huggingface_hub==1.16.4
|