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
33
34[project]
name = "agent_path"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "Yanli",email = "mail@yanli.one"},
]
dependencies = [
"llama-index-core>=0.10.30",
"llama-index-llms-openai>=0.1.16",
"jinja2>=3.1.3",
"llama-index-agent-openai>=0.2.2",
"python-dotenv>=1.0.1",
"fancy_printer==0.1"
]
requires-python = ">=3.11"
readme = "README.md"
license = {text = "Apache-2.0"}
[tool.pdm]
distribution = true
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "G", "B", "I", "SIM", "TID", "PL", "RUF"]
ignore = [
"RUF001", # '๏ผ' vs. ','
"E501", # Line too long
"PLR2004", # Magic value
]
[tool.ruff.lint.isort]
known-first-party = ["agent_path"]