-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 753 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 753 Bytes
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
[tool.poetry]
name = "llmodel"
version = "0.1.0"
description = ""
authors = ["Ben Van Sleen <benvansleen@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
openai = "^0.27.8"
langchain = "^0.0.206"
numpy = "^1.25.0"
python-dotenv = "^1.0.0"
requests = "^2.31.0"
tiktoken = "^0.4.0"
termcolor = "^2.3.0"
chromadb = "^0.3.26"
ompython = "^3.4.0"
pyzmq = "^25.1.0"
torch = {version = "^2.0.1+cpu", source = "pytorch"}
transformers = "^4.30.2"
openai-function-call = "^0.0.5"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.2"
[[tool.poetry.source]]
name = "pytorch"
url = "https://download.pytorch.org/whl/cpu"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"