-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (50 loc) · 1.22 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
[tool.poetry]
name = "langchain-lab"
version = "0.2.0"
description = ""
authors = ["Lei Zhang <[email protected]>"]
license = "Apache License 2.0"
readme = "README.md"
packages = [{ include = "langchain_lab", from = "src" }]
[tool.poetry.dependencies]
python = "^3.11"
streamlit = "1.36.0"
langchain = "0.2.6"
langchain-openai = "0.1.14"
langchain-experimental = "0.0.62"
langchainhub = "0.1.20"
langgraph = "0.1.5"
faiss-cpu = "1.7.4"
pandas = "2.2.2"
python-dotenv = "1.0.1"
docx2txt = "0.8"
pymupdf = "1.24.7"
sentence-transformers = "^2.2.2"
langdetect = "1.0.9"
chardet = "5.2.0"
beautifulsoup4 = "4.12.3"
SQLAlchemy = "2.0.22"
wikipedia = "1.4.0"
tabulate = "0.9.0"
openpyxl = "3.1.5"
grandalf = "0.8"
dashscope = "1.20.1"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.poetry.group.lint.dependencies]
isort = "^5.12.0"
black = { version = "^23.1a1", allow-prereleases = true }
flake8 = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 180
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "supplemental"
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple"
priority = "default"