Spaces:
Sleeping
Sleeping
File size: 656 Bytes
016be3b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
[project]
name = "research-agent-langgraph"
version = "0.1.0"
description = "Research Agent with LangGraph and Chainlit"
readme = "PROJECT_README.md"
requires-python = ">=3.10"
dependencies = [
"langchain==0.3.15",
"langchain-community==0.3.15",
"langchain-openai==0.3.2",
"langgraph==0.2.67",
"chainlit==2.5.5",
"pandas>=2.0.0",
"arxiv>=1.4",
"tavily-python",
"pydantic>=2.0.0",
"typing-extensions>=4.5.0",
"websockets>=11.0.0",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.uv]
pip = { only-binary = ["numpy"] }
|