-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.13 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
[tool.poetry]
name = "agent-actors"
version = "0.1.0"
description = "a proof-of-concept inspired by BabyAGI, the Plan-Do-Check-Adjust (PDCA) cycle, and the actor model of concurrency"
authors = ["Shaman AI <[email protected]>"]
license = "BUSL-1.1"
readme = "README.md"
packages = [{ include = "agent_actors" }]
[tool.ruff]
line-length = -1
[tool.poetry.dependencies]
python = ">=3.10.9,<4.0"
aiohttp = "^3.8.4"
pydantic = "^1.10.7"
langchain = ">=0.0.218"
wolframalpha = "^5.0.0"
python-dotenv = "^1.0.0"
openai = "^0.27.4"
wikipedia = "^1.4.0"
tiktoken = "^0.4.0"
gptcache = "^0.1.17"
termcolor = "^2.2.0"
ray = { extras = ["default"], version = "^2.3.1" }
[tool.poetry.group.typing]
optional = true
[tool.poetry.group.typing.dependencies]
mypy = "^1.2.0"
types-pyyaml = "^6.0.12.9"
types-requests = "^2.28.11.17"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
setuptools = "^67.6.1"
ipdb = "^0.13.13"
faiss-cpu = "^1.7.3"
black = "^23.3.0"
ipython = "^8.12.0"
ruff = "^0.0.261"
streamlit = "^1.21.0"
pytest = "^7.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"