36 lines
737 B
TOML
36 lines
737 B
TOML
[tool.poetry]
|
|
name = "agents"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Your Name <you@example.com>"]
|
|
readme = "README.md"
|
|
packages = [
|
|
{ include = "app" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
uvicorn = "0.34.0"
|
|
langserve = {extras = ["server"], version = ">=0.0.30"}
|
|
pydantic = "2.10.4"
|
|
httpx = "0.28.1"
|
|
langchain = "0.3.13"
|
|
langgraph = "0.2.60"
|
|
langchain-core = ">=0.3.28,<0.4.0"
|
|
pytest = "^8.3.4"
|
|
python-dotenv = "1.0.1"
|
|
requests = "2.32.3"
|
|
pandas = "^2.1.4"
|
|
openpyxl = "^3.1.2"
|
|
pyyaml = "6.0.2"
|
|
langchain-openai = "0.3.6"
|
|
fastapi = "0.115.6"
|
|
streamlit = "1.41.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
langchain-cli = ">=0.0.15"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|