Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +16 -8
requirements.txt
CHANGED
@@ -1,16 +1,24 @@
|
|
1 |
-
#
|
2 |
-
streamlit>=1.
|
|
|
|
|
|
|
|
|
|
|
3 |
requests>=2.28.1
|
4 |
PyYAML>=6.0
|
5 |
-
sqlalchemy>=1.4.0
|
6 |
|
7 |
-
#
|
8 |
-
|
9 |
|
10 |
-
# Vector store
|
11 |
chromadb>=0.3.21
|
12 |
|
13 |
-
#
|
14 |
pydantic>=1.10.0
|
|
|
|
|
15 |
uvicorn>=0.18.0
|
16 |
-
|
|
|
|
|
|
1 |
+
# Streamlit UI
|
2 |
+
streamlit>=1.25.0
|
3 |
+
|
4 |
+
# Google Gemini API
|
5 |
+
google-generativeai>=0.5.0
|
6 |
+
|
7 |
+
# HTTP and config handling
|
8 |
requests>=2.28.1
|
9 |
PyYAML>=6.0
|
|
|
10 |
|
11 |
+
# Database (provenance, optional for local SQLite)
|
12 |
+
sqlalchemy>=1.4.0
|
13 |
|
14 |
+
# Vector store integration (if using Chroma)
|
15 |
chromadb>=0.3.21
|
16 |
|
17 |
+
# For type checking and validation
|
18 |
pydantic>=1.10.0
|
19 |
+
|
20 |
+
# (Optional) For running as API, not required on Spaces but useful locally
|
21 |
uvicorn>=0.18.0
|
22 |
+
|
23 |
+
# (Optional) For notebook demo
|
24 |
+
nbformat>=5.8.0
|