27 lines
692 B
TOML
27 lines
692 B
TOML
|
|
[project]
|
||
|
|
name = "agentic-research"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "AI-powered agentic document research tool with polygon-aware viewer"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"fastapi>=0.115.0",
|
||
|
|
"uvicorn[standard]>=0.32.0",
|
||
|
|
"python-multipart>=0.0.9",
|
||
|
|
"pydantic>=2.9.0",
|
||
|
|
"pydantic-settings>=2.5.0",
|
||
|
|
"httpx>=0.27.0",
|
||
|
|
"asyncpg>=0.30.0",
|
||
|
|
"psycopg2-binary>=2.9.9",
|
||
|
|
"langchain>=0.3.0",
|
||
|
|
"langchain-community>=0.3.0",
|
||
|
|
"langchain-openai>=0.2.0",
|
||
|
|
"langgraph>=0.2.0",
|
||
|
|
"sentence-transformers>=3.0.0",
|
||
|
|
"numpy>=1.26.0",
|
||
|
|
"aiofiles>=24.1.0",
|
||
|
|
"rich>=13.9.0",
|
||
|
|
"python-dotenv>=1.0.1",
|
||
|
|
"markdown>=3.7.0",
|
||
|
|
"pdfplumber>=0.11.0",
|
||
|
|
]
|