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

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +17 -1
requirements.txt CHANGED
@@ -1,2 +1,18 @@
 
1
  langflow
2
- psycopg2-binary # If using PostgreSQL
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Core LangFlow package
2
  langflow
3
+
4
+ # Google Cloud dependencies with flexible versioning
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