-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 826 Bytes
/
pyproject.toml
File metadata and controls
41 lines (33 loc) · 826 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
33
34
35
36
37
38
39
40
41
[tool.poetry]
name = "GeneralAgent"
version = "0.3.29"
description = "General Agent: From LLM to Agent"
authors = ["Chen Li <lichenarthurdata@gmail.com>"]
license = "Apache 2.0"
readme = "README.md"
repository = "https://github.com/CosmosShadow/GeneralAgent"
packages = [
{ include = "GeneralAgent" },
]
[tool.poetry.dependencies]
python = ">=3.8.1"
requests = ">=2.31.0"
tinydb = ">=4.8.0"
openai = ">=1.3.3"
jinja2 = ">=3.1.2"
numpy = ">=1.24.4"
tiktoken = ">=0.5.1"
llama-index =">=0.10.44"
codyer = ">=0.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
pytest-asyncio = "^0.21.1"
pymupdf = "1.24.13"
[[tool.poetry.source]]
name = "PyPI"
priority="primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
GeneralAgent= 'GeneralAgent.cli:main'