-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (28 loc) · 872 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (28 loc) · 872 Bytes
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
[project]
name = "09-agent-servers"
version = "0.1.0"
description = "LangGraph agent server deployed on LangSmith with a Next.js frontend"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"langchain>=1.0.0",
"langgraph>=1.0.10",
"langgraph-cli>=0.4.14",
"langgraph-api>=0.4.28",
"langchain-core>=1.2.16",
"langchain-openai>=0.3.0",
"langchain-community>=0.4.1",
"langchain-tavily>=0.1.0",
"langchain-text-splitters>=1.1.1",
"langchain-qdrant>=1.1.0",
"qdrant-client>=1.17.0",
"pymupdf>=1.27.1",
"tiktoken>=0.12.0",
"arxiv>=2.1.0",
"python-dotenv>=1.2.2",
"rank-bm25>=0.2.2",
]
# Only `app` is the Python package; `data` and `frontend` would otherwise break
# setuptools auto-discovery when langgraph up pip-installs this project in Docker.
[tool.setuptools.packages.find]
include = ["app*"]