Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +11 -9
requirements.txt
CHANGED
|
@@ -5,14 +5,16 @@ langflow
|
|
| 5 |
google-resumable-media>=2.0,<3.0
|
| 6 |
google-cloud-core>=2.0,<3.0
|
| 7 |
|
| 8 |
-
#
|
| 9 |
-
google-cloud-storage>=2.0,<3.0 #
|
| 10 |
-
google-cloud-bigquery>=2.0,<3.0 #
|
| 11 |
|
| 12 |
-
#
|
| 13 |
-
fastapi>=0.70,<1.0
|
| 14 |
-
uvicorn>=0.15,<1.0
|
| 15 |
-
|
| 16 |
-
|
|
|
|
| 17 |
|
| 18 |
-
#
|
|
|
|
|
|
| 5 |
google-resumable-media>=2.0,<3.0
|
| 6 |
google-cloud-core>=2.0,<3.0
|
| 7 |
|
| 8 |
+
# Optional Google Cloud libraries (include if needed)
|
| 9 |
+
# google-cloud-storage>=2.0,<3.0 # Uncomment if using Google Cloud Storage
|
| 10 |
+
# google-cloud-bigquery>=2.0,<3.0 # Uncomment if using BigQuery
|
| 11 |
|
| 12 |
+
# FastAPI and Uvicorn for web server functionality
|
| 13 |
+
fastapi>=0.70,<1.0
|
| 14 |
+
uvicorn>=0.15,<1.0
|
| 15 |
+
|
| 16 |
+
# PostgreSQL adapter if using PostgreSQL
|
| 17 |
+
psycopg2-binary>=2.9,<3.0
|
| 18 |
|
| 19 |
+
# Additional libraries as needed
|
| 20 |
+
requests>=2.25,<3.0 # For making HTTP requests
|