This commit is contained in:
2025-12-07 16:40:56 +01:00
parent d6bc34d138
commit 69be2a5179
27 changed files with 2502 additions and 0 deletions

16
web/agent/pyproject.toml Normal file
View File

@@ -0,0 +1,16 @@
[project]
name = "sample-agent"
version = "0.1.0"
description = "A LangGraph agent"
requires-python = ">=3.12"
dependencies = [
"langchain==1.1.0",
"langgraph==1.0.4",
"langsmith>=0.4.49",
"openai>=1.68.2,<2.0.0",
"fastapi>=0.115.5,<1.0.0",
"uvicorn>=0.29.0,<1.0.0",
"python-dotenv>=1.0.0,<2.0.0",
"langgraph-cli[inmem]>=0.4.7",
"langchain-openai>=1.1.0",
]