Spaces:
Runtime error
Runtime error
Debashis commited on
Commit ·
a6952ae
1
Parent(s): ffa310a
Add LangGraph-based agent orchestration implementation
Browse files
backend/requirements-langgraph.txt
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# LangGraph and LangChain dependencies for agent orchestration
|
| 2 |
+
langgraph==0.0.26
|
| 3 |
+
langchain==0.1.8
|
| 4 |
+
langchain-core==0.1.12
|
| 5 |
+
langchain-ollama==0.1.0
|
| 6 |
+
langchain-community==0.0.16
|
| 7 |
+
|
| 8 |
+
# Core dependencies
|
| 9 |
+
fastapi==0.109.0
|
| 10 |
+
uvicorn==0.27.0
|
| 11 |
+
sqlalchemy==2.0.23
|
| 12 |
+
psycopg2-binary==2.9.9
|
| 13 |
+
redis==5.0.1
|
| 14 |
+
httpx==0.25.2
|
| 15 |
+
pydantic==2.5.0
|
| 16 |
+
|
| 17 |
+
# Additional utilities
|
| 18 |
+
python-dotenv==1.0.0
|