AlixJabda commited on
Commit
5a1ed60
·
1 Parent(s): 5983a6d

pin transformers to stable 5.5.x

Browse files
Files changed (1) hide show
  1. 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
- # Transformers 5.x braucht PyTorch >= 2.4
7
  torch==2.4.1+cpu
8
 
9
- # Transformers auf 5.x fixieren
10
- transformers==5.9.0
11
 
12
- # Deine App-Dependencies
13
- fastapi
14
- uvicorn[standard]
15
- chromadb==1.5.9
16
  sentence-transformers==5.5.1
17
- groq
18
- python-dotenv
19
- pydantic
20
- huggingface_hub
 
 
 
 
 
 
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