forked from iusztinpaul/hands-on-llms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (42 loc) · 1022 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
40
41
42
43
44
45
46
47
48
49
50
51
52
[tool.poetry]
name = "financial-bot"
version = "0.1.0"
description = "Financial Bot (Falcon7B-LLM) with Langchain"
authors = ["Joywalker <alexandrurazvant@gmail.com>"]
readme = "README.md"
packages = [{include = "financial_bot"}]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
qdrant-client = "1.1.1"
langchain = "^0.0.285"
comet-ml = "^3.33.7"
transformers = "^4.31.0"
peft = "^0.4.0"
accelerate = "^0.21.0"
python-dotenv = "^1.0.0"
scipy = "^1.11.1"
einops = "^0.6.1"
fire = "^0.5.0"
comet-llm = "^1.1.0"
bitsandbytes = "^0.41.1"
torch = "2.0.1"
beam-sdk = "0.14.6"
gradio = "^3.48.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
ruff = "^0.0.285"
[[tool.poetry.source]]
name = "torch"
url = "https://download.pytorch.org/whl/cu118"
priority = "supplemental"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.isort]
case-sensitive = true