|
|
@@ -0,0 +1,33 @@
|
|
|
+[project]
|
|
|
+name = "cfc-langgraph"
|
|
|
+version = "0.1.0"
|
|
|
+description = "cfc AI sidecar service with LangGraph"
|
|
|
+requires-python = ">=3.11"
|
|
|
+dependencies = [
|
|
|
+ "fastapi>=0.115",
|
|
|
+ "uvicorn[standard]>=0.34",
|
|
|
+ "pydantic>=2.10",
|
|
|
+ "pydantic-settings>=2.7",
|
|
|
+ "httpx>=0.28",
|
|
|
+ "langchain>=0.3",
|
|
|
+ "langchain-community>=0.3",
|
|
|
+ "langchain-openai>=0.3",
|
|
|
+ "langgraph>=0.3",
|
|
|
+ "chromadb>=0.6",
|
|
|
+ "langchain-chroma>=0.2",
|
|
|
+ "python-multipart>=0.0.20",
|
|
|
+]
|
|
|
+
|
|
|
+[project.optional-dependencies]
|
|
|
+dev = [
|
|
|
+ "pytest>=8",
|
|
|
+ "pytest-asyncio>=0.25",
|
|
|
+ "ruff>=0.8",
|
|
|
+ "httpx",
|
|
|
+]
|
|
|
+
|
|
|
+[tool.ruff]
|
|
|
+target-version = "py311"
|
|
|
+line-length = 100
|
|
|
+select = ["E", "F", "I", "N", "W"]
|
|
|
+ignore = ["E501"]
|