Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +25 -43
requirements.txt
CHANGED
|
@@ -1,60 +1,42 @@
|
|
| 1 |
# Core Dependencies
|
| 2 |
-
fastapi=
|
| 3 |
-
uvicorn[standard]=
|
| 4 |
-
python-multipart
|
| 5 |
-
pydantic=
|
| 6 |
-
pydantic-settings
|
| 7 |
|
| 8 |
# AI/ML Libraries
|
| 9 |
-
transformers
|
| 10 |
-
sentence-transformers
|
| 11 |
-
torch
|
| 12 |
-
spacy
|
| 13 |
-
en-core-web-sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.0/en_core_web_sm-3.7.0-py3-none-any.whl
|
| 14 |
|
| 15 |
# PDF Processing
|
| 16 |
-
PyPDF2
|
| 17 |
-
pdfplumber
|
| 18 |
-
python-docx
|
| 19 |
|
| 20 |
# NLP & Text Processing
|
| 21 |
-
nltk
|
| 22 |
-
scikit-learn
|
| 23 |
-
numpy
|
| 24 |
-
pandas
|
| 25 |
|
| 26 |
# Web Interface
|
| 27 |
-
gradio
|
| 28 |
-
|
| 29 |
-
# Data Validation & Serialization
|
| 30 |
-
python-jose[cryptography]==3.3.0
|
| 31 |
-
passlib[bcrypt]==1.7.4
|
| 32 |
|
| 33 |
# Utilities
|
| 34 |
-
python-dotenv
|
| 35 |
-
requests
|
| 36 |
-
aiofiles
|
| 37 |
|
| 38 |
# Monitoring & Logging
|
| 39 |
-
loguru
|
| 40 |
|
| 41 |
# Visualization
|
| 42 |
-
plotly
|
| 43 |
-
matplotlib
|
| 44 |
-
|
| 45 |
-
# Testing
|
| 46 |
-
pytest==7.4.3
|
| 47 |
-
pytest-asyncio==0.21.1
|
| 48 |
-
pytest-cov==4.1.0
|
| 49 |
-
httpx==0.25.2
|
| 50 |
-
|
| 51 |
-
# Code Quality
|
| 52 |
-
black==23.12.0
|
| 53 |
-
flake8==6.1.0
|
| 54 |
-
isort==5.13.0
|
| 55 |
-
mypy==1.7.1
|
| 56 |
|
| 57 |
# HuggingFace
|
| 58 |
-
huggingface-hub
|
| 59 |
-
datasets
|
| 60 |
-
|
|
|
|
| 1 |
# Core Dependencies
|
| 2 |
+
fastapi>=0.100.0
|
| 3 |
+
uvicorn[standard]>=0.24.0
|
| 4 |
+
python-multipart
|
| 5 |
+
pydantic>=2.0.0
|
| 6 |
+
pydantic-settings
|
| 7 |
|
| 8 |
# AI/ML Libraries
|
| 9 |
+
transformers
|
| 10 |
+
sentence-transformers
|
| 11 |
+
torch
|
| 12 |
+
spacy
|
|
|
|
| 13 |
|
| 14 |
# PDF Processing
|
| 15 |
+
PyPDF2
|
| 16 |
+
pdfplumber
|
| 17 |
+
python-docx
|
| 18 |
|
| 19 |
# NLP & Text Processing
|
| 20 |
+
nltk
|
| 21 |
+
scikit-learn
|
| 22 |
+
numpy
|
| 23 |
+
pandas
|
| 24 |
|
| 25 |
# Web Interface
|
| 26 |
+
gradio
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
|
| 28 |
# Utilities
|
| 29 |
+
python-dotenv
|
| 30 |
+
requests
|
| 31 |
+
aiofiles
|
| 32 |
|
| 33 |
# Monitoring & Logging
|
| 34 |
+
loguru
|
| 35 |
|
| 36 |
# Visualization
|
| 37 |
+
plotly
|
| 38 |
+
matplotlib
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
|
| 40 |
# HuggingFace
|
| 41 |
+
huggingface-hub
|
| 42 |
+
datasets
|
|
|