Update requirements.txt
Browse files- requirements.txt +5 -0
requirements.txt
CHANGED
|
@@ -12,5 +12,10 @@ scikit-learn==1.2.0 # Scikit-learn for machine learning utiliti
|
|
| 12 |
datasets==2.12.0 # Hugging Face Datasets library for dataset handling
|
| 13 |
# Add other libraries as needed
|
| 14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
# Optional: For logging and monitoring (if used in your project)
|
| 16 |
wandb==0.15.0 # Weights & Biases for experiment tracking
|
|
|
|
| 12 |
datasets==2.12.0 # Hugging Face Datasets library for dataset handling
|
| 13 |
# Add other libraries as needed
|
| 14 |
|
| 15 |
+
# Web app dependencies
|
| 16 |
+
fastapi==0.95.0 # FastAPI for building the API
|
| 17 |
+
uvicorn==0.22.0 # Uvicorn for serving the FastAPI app
|
| 18 |
+
pydantic==1.11.1 # Pydantic for data validation
|
| 19 |
+
|
| 20 |
# Optional: For logging and monitoring (if used in your project)
|
| 21 |
wandb==0.15.0 # Weights & Biases for experiment tracking
|