-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (36 loc) · 971 Bytes
/
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
[tool.poetry]
name = "jarvis"
version = "0.1.0"
description = "personally customized bot with langchain and gpt4"
authors = ["minwook <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8.1"
faiss-cpu = "^1.7.3"
bs4 = "^0.0.1"
xmltodict = "^0.13.0"
openai = "^0.27.4"
requests = "^2.28.2"
tiktoken = "^0.3.3"
python-dotenv = "^1.0.0"
transformers = "^4.28.1"
fastapi = "^0.95.1"
uvicorn = "^0.21.1"
aioredis = "^2.0.1"
redis = "^4.5.4"
redis-om = "^0.1.2"
websockets = "^11.0.2"
jinja2 = "^3.1.2"
fake-useragent = "^1.1.3"
python-multipart = "^0.0.6"
unstructured = {extras = ["local-inference"], version = "^0.6.6"}
layoutparser = {extras = ["layoutmodels", "tesseract"], version = "^0.3.4"}
youtube-transcript-api = "^0.6.0"
pytube = "^15.0.0"
structlog = "^23.1.0"
google-cloud-aiplatform = "^1.25.0"
langchain = ">=0.0.184"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"