Update requirements.txt
Browse files- requirements.txt +16 -9
requirements.txt
CHANGED
@@ -1,12 +1,19 @@
|
|
1 |
streamlit
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
sqlmodel
|
8 |
-
sqlalchemy
|
9 |
passlib[bcrypt]
|
10 |
-
|
11 |
-
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
streamlit
|
2 |
+
langchain
|
3 |
+
langchain-openai
|
4 |
+
langchain-core
|
5 |
+
langchain-community # For ChatMessageHistory if used, and potentially other components
|
6 |
+
google-generativeai # For Gemini tool
|
7 |
sqlmodel
|
|
|
8 |
passlib[bcrypt]
|
9 |
+
pydantic-settings
|
10 |
+
python-dotenv # For local .env loading by pydantic-settings
|
11 |
+
reportlab # For PDF generation
|
12 |
+
requests # For API tools
|
13 |
+
# psycopg2-binary # Only if using PostgreSQL instead of SQLite
|
14 |
+
# sqlalchemy # SQLModel depends on this, usually installed as a dependency
|
15 |
+
|
16 |
+
# For Hugging Face Spaces, ensure specific versions if needed
|
17 |
+
# Example:
|
18 |
+
# streamlit==1.30.0
|
19 |
+
# langchain==0.1.5
|