-
Notifications
You must be signed in to change notification settings - Fork 60
/
pyproject.toml
64 lines (59 loc) · 1.48 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
[tool.poetry]
name = "openagi"
version = "0.2.9.8.1"
description = ""
authors = ["AI Planet <[email protected]>"]
readme = "README.md"
include = ["src/*"]
packages = [{ include = "openagi", from = "src" }] # This tells Poetry where to find the package
[tool.poetry.dependencies]
python = "^3.9, <3.12"
protobuf = "^3.20.3"
langchain-core = "^0.1.27,<0.2.0"
langchain = "^0.1.9"
langchain-community = "^0.0.21"
langchain-openai = "^0.0.6"
langchain-text-splitters = "^0.0.1"
langchain-experimental = "^0.0.53"
duckduckgo-search = "^6.1.0"
spacy = "3.7.4"
xorbits = "^0.7.2"
azure-identity = "^1.15.0"
python-dotenv = "^1.0.1"
spacytextblob = "^4.0.0"
google-auth-oauthlib = "^1.2.0"
google-auth-httplib2 = "^0.2.0"
google-api-python-client = "^2.121.0"
langchain-exa = "^0.0.1"
ollama = "^0.1.7"
wikipedia = "^1.4.0"
yfinance = "^0.2.37"
google-search-results = "^2.4.2"
fastapi = "^0.110.0"
uvicorn = "^0.29.0"
pygithub = "^2.3.0"
langchainhub = "^0.1.15"
python-multipart = "^0.0.9"
pandas = "^2.2.2"
numpy = "^1.26.4"
transformers = "^4.40.0"
pypdf = "^4.2.0"
faiss-cpu = "^1.8.0"
pytest = "^8.2.0"
chromadb = "^0.5.0"
sumy = "^0.11.0"
fake-useragent = "^1.5.1"
yt-dlp = "^2024.8.6"
youtube-search = "^2.1.2"
tavily-python = "^0.4.0"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.11"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
openagi = "openagi.cli:main"
[tool.ruff]
ignore-init-module-imports = true
line-length = 98
output-format = "grouped"