-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
41 lines (37 loc) · 1.06 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
[tool.poetry]
name = "align-system"
version = "0.5.6"
description = ""
authors = ["David Joy <10147749+dmjoy@users.noreply.github.com>"]
readme = "README.md"
packages = [{include = "align_system"}]
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cu118"
priority = "supplemental"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
torch = { version = "^2.0.1", source = "pytorch" }
transformers = ">=4.46.2"
llama-index = "^0.8.21"
langchain = "^0.0.308"
sentence-transformers = "^2.2.2"
accelerate = ">=0.26.0"
pypdf = "^3.15.5"
pycryptodome = "^3.18.0"
einops = "^0.6.1"
requests = "^2.31.0"
bert-score = "^0.3.13"
rich = "^13.6.0"
rouge-score = "^0.1.2"
swagger-client = {git = "https://github.com/NextCenturyCorporation/itm-evaluation-client.git", rev = "development"}
hydra-core = "^1.3.2"
outlines = "^0.0.46"
setuptools = "^70.1.1"
sentencepiece = "^0.2.0"
protobuf = "^5.28.3"
[tool.poetry.scripts]
run_align_system = 'align_system.cli.run_align_system:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"