mgbam commited on
Commit
9e1fbac
·
verified ·
1 Parent(s): 81bcd1a

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +16 -8
requirements.txt CHANGED
@@ -1,16 +1,24 @@
1
- # Core libraries
2
- streamlit>=1.18.1
 
 
 
 
 
3
  requests>=2.28.1
4
  PyYAML>=6.0
5
- sqlalchemy>=1.4.0
6
 
7
- # MCP Clients
8
- # (No extra MCP-specific package required—requests wrapper suffices)
9
 
10
- # Vector store
11
  chromadb>=0.3.21
12
 
13
- # Additional dependencies
14
  pydantic>=1.10.0
 
 
15
  uvicorn>=0.18.0
16
- google-generativeai>=0.5.0
 
 
 
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