-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (43 loc) · 1.1 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
[tool.poetry]
name = "fastchain"
version = "0.1.0"
description = "Fastchain is a wrapper library around langchain for building LLM powered apps quickly and integrating it with you existing apps"
authors = ["Pranav Pandey <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [{include = "fastchain"}]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
langchain = "^0.0.221"
qdrant-client = "^1.3.1"
vectordb = "^0.0.16"
weaviate-client = "^3.22.1"
chromadb = "^0.4.2"
playwright = "^1.36.0"
pymupdf = "^1.22.5"
youtube-transcript-api = "^0.6.1"
beautifulsoup4 = "^4.12.2"
pypdf = "^3.12.2"
pytube = "^15.0.0"
lxml = "^4.9.3"
openai = "^0.27.8"
sentence-transformers = "^2.2.2"
transformers = "^4.31.0"
gpt4all = "^1.0.6"
pydantic = "1.10.11"
requests = "^2.31.0"
duckduckgo-search = "^3.8.4"
hydra-core = "^1.3.2"
unidecode = "^1.3.6"
markdown = "^3.4.4"
python-docx = "^0.8.11"
sphinx = "^7.2.4"
tree-sitter = "^0.20.1"
tiktoken = "^0.4.0"
nltk = "^3.8.1"
jupyter = "^1.0.0"
pytest = "^7.4.2"
spacy = "^3.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"