-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 838 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (30 loc) · 838 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
30
31
32
[project]
name = "mini-agent"
version = "0.1.0"
description = "基于 LangGraph 的通用 Agent 学习项目"
readme = "readme.md"
requires-python = ">=3.13"
dependencies = [
# 核心框架
"langchain>=0.3.0",
"langchain-openai>=0.3.0",
"langgraph>=0.2.0",
# 配置与工具
"pyyaml>=6.0.3",
"python-dotenv>=1.0.0",
# 搜索工具(二选一)
"duckduckgo-search>=8.0.0", # 免费,无需 API key
"tavily-python>=0.7.17", # 可选,需要 API key
"deepagents>=0.4.12",
"langgraph-cli[inmem]>=0.4.19",
"pytest>=9.0.2",
"fastapi>=0.135.3",
"uvicorn>=0.43.0",
"httpx>=0.28.1",
"openviking>=0.3.5",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["backend*", "demos*"]