[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,<1.0", "langchain-community>=0.3,<1.0", "langchain-openai>=0.3,<1.0", "langgraph>=0.3,<1.0", "chromadb>=0.6,<1.0", "langchain-chroma>=0.2,<1.0", "python-multipart>=0.0.20", "prometheus-client>=0.21", ] [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"]