| diff --git a/requirements.txt b/requirements.txt |
| index 6d42a11..a53cc33 100644 |
| --- a/requirements.txt |
| +++ b/requirements.txt |
| @@ -1,30 +1,33 @@ |
| -# Core Space / Web stack |
| -gradio[mcp,oauth]==5.49.1 |
| -fastapi==0.121.0 |
| +# Core app framework |
| +gradio[mcp,oauth]==5.49.1 |
| +fastapi==0.115.5 |
| uvicorn==0.31.1 |
| starlette==0.49.3 |
| spaces==0.42.1 |
| python-dotenv==1.0.1 |
| - |
| -# Embedding + Semantic Retrieval Stack |
| -sentence-transformers==3.2.0 |
| -faiss-cpu==1.8.0.post1 |
| - |
| -# Transformers ecosystem (compatible versions) |
| -transformers==4.45.2 |
| -tokenizers==0.20.3 |
| -huggingface-hub==0.34.6 |
| - |
| -# Numeric + Analytics |
| -numpy==1.26.4 |
| -pandas==2.2.2 |
| -scikit-learn==1.5.2 |
| -scipy==1.13.1 |
| -matplotlib==3.9.2 |
| - |
| -# Utility + Runtime |
| -tqdm==4.66.5 |
| -requests==2.32.3 |
| -tenacity==8.4.1 |
| -joblib==1.4.2 |
| +filelock==3.16.1 |
| + |
| +# Vector search + Embeddings |
| +faiss-cpu==1.8.0.post1 |
| +sentence-transformers==3.2.0 |
| +numpy==1.26.4 |
| +scipy==1.13.1 |
| +pandas==2.2.2 |
| +scikit-learn==1.5.2 |
| + |
| +# Transformers + Hugging Face integration |
| +transformers==4.45.2 |
| +tokenizers==0.20.3 |
| +huggingface-hub==0.33.5 # ✅ compatible with Gradio 5.49.1 |
| + |
| +# Visualization + utilities |
| +matplotlib==3.9.2 |
| +tqdm==4.66.5 |
| +requests==2.32.3 |
| +tenacity==8.4.1 |
| +joblib==1.4.2 |
|
|