javear commited on
Commit
7835e0d
·
verified ·
1 Parent(s): b76e497

Update requirements.txt

Browse files
Files changed (1) hide show
  1. 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
- # Additional Google Cloud libraries if needed (optional)
9
- google-cloud-storage>=2.0,<3.0 # Only include if you're using Google Cloud Storage
10
- google-cloud-bigquery>=2.0,<3.0 # Only include if you're using BigQuery
11
 
12
- # Other common dependencies
13
- fastapi>=0.70,<1.0 # FastAPI for building APIs
14
- uvicorn>=0.15,<1.0 # ASGI server for running FastAPI applications
15
- psycopg2-binary>=2.9,<3.0 # PostgreSQL adapter if you're using PostgreSQL
16
- requests>=2.25,<3.0 # For making HTTP requests
 
17
 
18
- # Optional: Add any additional libraries you may need for your specific use case
 
 
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