-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (49 loc) · 1.27 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
[tool.poetry]
name = "arcan"
version = "0.0.1"
description = "An AI web3 tooling platform for the decentralized customization and enhancement of AI agents"
authors = ["Carlos D. Escobar-Valbuena <carlosdavidescobar@gmail.com>"]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
urllib3 = ">=1.26.16,<3.0.0"
fastapi = "^0.110.0"
openai = "^1.14.0"
langchain = "^0.1.16"
langchain-openai = "^0.0.8"
uvicorn = "^0.28.0"
pydantic = ">=2.5.3,<3.0.0"
python-dotenv = "^1.0.1"
typing-extensions = "^4.9.0"
pandas = "^2.2.1"
sqlalchemy = "^2.0.27"
psycopg2-binary = "^2.9.9"
bs4 = "^0.0.2"
selenium = "^4.18.1"
html2text = "^2024.2.26"
chromadb = "^0.4.24"
pymupdf = "^1.23.25"
wikipedia = "^1.4.0"
sendgrid = "^6.11.0"
twilio = "^9.0.0"
python-decouple = "^3.8"
python-multipart = "^0.0.9"
pyngrok = "^7.1.3"
numexpr = "^2.9.0"
langchainhub = "^0.1.15"
langchain-experimental = "^0.0.54"
langchain-community = "^0.0.32"
langchain-together = "^0.0.2.post1"
langchain-fireworks = "^0.1.1"
semantic-router = "^0.0.28"
modal = ">=0.61.54,<0.63.0"
typer = "^0.9.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
ipykernel = "^6.23.3"
[tool.poetry.scripts]
arcan = 'arcan:cli'