JatsTheAIGen commited on
Commit
3059e9a
·
1 Parent(s): ebb27a0

fix: Change faiss-gpu to faiss-cpu in requirements

Browse files

- Replace faiss-gpu>=1.7.4 with faiss-cpu>=1.7.2
- FAISS-GPU support remains in code with automatic CPU fallback
- CPU version is more compatible and doesn't require CUDA for FAISS

Files changed (1) hide show
  1. requirements.txt +1 -2
requirements.txt CHANGED
@@ -19,8 +19,7 @@ tokenizers>=0.15.0
19
  sentence-transformers>=2.2.0
20
 
21
  # Vector Database & Search
22
- # Use faiss-gpu for GPU-accelerated vector search (falls back to CPU if GPU unavailable)
23
- faiss-gpu>=1.7.4
24
  numpy>=1.24.0
25
  scipy>=1.11.0
26
 
 
19
  sentence-transformers>=2.2.0
20
 
21
  # Vector Database & Search
22
+ faiss-cpu>=1.7.2
 
23
  numpy>=1.24.0
24
  scipy>=1.11.0
25