Spaces:
Sleeping
Sleeping
Upload requirements.txt
Browse files- requirements.txt +14 -0
requirements.txt
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
streamlit>=1.0
|
2 |
+
chromadb>=0.4.0
|
3 |
+
sentence-transformers>=2.2.0 # Keep for now, might be needed by ChromaDB implicitly? Safer to keep.
|
4 |
+
requests>=2.20.0
|
5 |
+
# rank_bm25>=0.2 # Removed - No longer using keyword search
|
6 |
+
tqdm # Already used in embed_and_store, good to keep consistent
|
7 |
+
beautifulsoup4 # Already used in parse_libguides
|
8 |
+
python-dotenv
|
9 |
+
# google-generativeai # Remove old library
|
10 |
+
# google-genai>=1.0.0 # Remove google-genai
|
11 |
+
huggingface_hub>=0.20.0 # For InferenceClient
|
12 |
+
datasets>=2.0.0 # For loading HF datasets
|
13 |
+
pandas>=1.5.0 # For handling dataframes
|
14 |
+
pyarrow>=10.0.0 # For reading parquet files
|