-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
78 lines (75 loc) · 1.68 KB
/
pyproject.toml
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "gptswarm"
version = "0.1.0"
description = "GPTSwarm: Language Agents as Optimizable Graphs"
authors = [
"Mingchen Zhuge <mczhuge@gmail.com>",
"Wenyi Wang <wenyi.wang@kaust.edu.sa>",
"Louis Kirsch",
"Francesco Faccio <francesco.faccio@kaust.edu.sa>",
"Dmitrii Khizbullin <dmitrii.khizbullin@gmail.com>",
"Jürgen Schmidhuber",
]
readme = "README.md"
packages = [
{ include = "swarm" },
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.9.0"
apscheduler = "^3.10.4"
arxiv = "^2.0.0"
beautifulsoup4 = "^4.12.2"
charset-normalizer = "^3.3.2"
class-registry = "^2.1.2"
docx = "^0.2.4"
fastapi = "0.109.2"
func-timeout = "^4.3.5"
google-api-python-client = "^2.111.0"
gradio = "^4.11.0"
httpx = "^0.25.2"
jsonlines = "^4.0.0"
loguru = "0.7.2"
markdown = "^3.5.1"
networkx = "3.2.1"
openai = "^1.6.0"
opencv-python = "^4.8.1.78"
openpyxl = "^3.1.2"
pandas = "^1.5.3"
pydantic = "^2.5.3"
pylatexenc = "^2.10"
pypdf2 = "^3.0.1"
python-dotenv = "1.0.0"
python-docx = "^1.1.0"
python-pptx = "0.6.23"
pytube = "15.0.0"
pyvis = "0.3.2"
pyyaml = "6.0.1"
regex = "2023.10.3"
requests = "^2.31.0"
scipy = "^1.12.0"
seaborn = "^0.13.1"
sentence-transformers = "2.2.2"
shortuuid = "1.0.11"
tenacity = "^8.2.3"
termcolor = "^2.4.0"
tqdm = "^4.66.1"
transformers = "^4.36.2"
wikipedia = "^1.4.0"
astunparse = "^1.6.3"
torch = "^2.1.0"
async-timeout = "^4.0.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
setuptools = "^69.1.1"
pytest-asyncio = "^0.23.5"
build = "^1.1.1"
coverage = "^6"
tensorboard = "^2.16.2"
twine = "^5.0.0"
poetry-core = "^1.9.0"
poetry = "^1.8.2"
coveralls = "^3.3.1"