-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.01 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
[tool.poetry]
name = "lopetools"
version = "0.1.0"
description = "LOPE tools for Langchain"
authors = ["dachenlian <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
CwnGraph = {path = "./src/CwnGraph", develop = false}
fastapi = "^0.97.0"
loguru = "^0.7.0"
pydantic = "^1.10.9"
torch = {version = "^2.0.1", source = "torch"}
numpy = "^1.24.3"
transformers = "^4.30.2"
gdown = "^4.7.1"
tqdm = "^4.65.0"
python-dotenv = "^1.0.0"
langchain = "^0.0.201"
sentence-transformers = "^2.2.2"
httpx = "^0.24.1"
OpenCC = "^1.1.6"
walrus = "^0.9.2"
DistilTag = "^0.2.2"
nltk = "^3.8.1"
requests = "^2.31.0"
uvicorn = {extras = ["standard"], version = "^0.22.0"}
openai = "^0.27.8"
tiktoken = "^0.4.0"
weaviate-client = "^3.22.1"
nh3 = "^0.2.14"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu117"
priority = "explicit"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"