mirror of
https://github.com/langchain-ai/react-agent-tool-server.git
synced 2026-07-01 18:28:34 -04:00
71 lines
1.7 KiB
TOML
71 lines
1.7 KiB
TOML
[project]
|
|
name = "react-agent-tool-server"
|
|
version = "0.0.1"
|
|
description = "Starter template for making a custom Reasoning and Action agent (using tool calling) in LangGraph."
|
|
authors = [
|
|
{ name = "Eugene Yurtsev", email = "13333726+hinthornw@users.noreply.github.com" },
|
|
]
|
|
readme = "README.md"
|
|
license = { text = "MIT" }
|
|
requires-python = ">=3.11,<4.0"
|
|
dependencies = [
|
|
"langchain-openai>=0.1.22",
|
|
"langchain-anthropic>=0.1.23",
|
|
"langchain>=0.2.14",
|
|
"langchain-fireworks>=0.1.7",
|
|
"python-dotenv>=1.0.1",
|
|
"langchain-community>=0.2.17",
|
|
"ipython>=9.0.0",
|
|
"langchain-tool-server",
|
|
"fastapi>=0.115.11",
|
|
]
|
|
|
|
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=73.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["langgraph.templates.react_agent", "react_agent"]
|
|
[tool.setuptools.package-dir]
|
|
"langgraph.templates.react_agent" = "src/react_agent"
|
|
"react_agent" = "src/react_agent"
|
|
|
|
|
|
[tool.setuptools.package-data]
|
|
"*" = ["py.typed"]
|
|
|
|
[tool.ruff]
|
|
lint.select = [
|
|
"E", # pycodestyle
|
|
"F", # pyflakes
|
|
"I", # isort
|
|
"D", # pydocstyle
|
|
"D401", # First line should be in imperative mood
|
|
"T201",
|
|
"UP",
|
|
]
|
|
lint.ignore = [
|
|
"UP006",
|
|
"UP007",
|
|
# We actually do want to import from typing_extensions
|
|
"UP035",
|
|
# Relax the convention by _not_ requiring documentation for every function parameter.
|
|
"D417",
|
|
"E501",
|
|
]
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"tests/*" = ["D", "UP"]
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.uv.sources]
|
|
langchain-tool-server = { path = "../langchain-tool-server" }
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"langgraph-cli[inmem]>=0.1.71",
|
|
"ruff>=0.9.9",
|
|
]
|