-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.43 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 = "doctor-assistant"
version = "0.1.0"
description = ""
authors = ["Rishab Dalai"]
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
faiss-cpu = "^1.8.0.post1"
llama-index-vector-stores-faiss = "^0.2.1"
llama-index = "^0.11.11"
torch = {version = "^2.4.1+cu121", source = "torch121"}
torchvision = {version = "^0.19.1+cu121", source = "torch121"}
torchaudio = {version = "^2.4.1+cu121", source = "torch121"}
llama-cpp-python = {version = "^0.2.90", source = "llama-cpp-python-121"}
llama-index-embeddings-huggingface = "^0.3.1"
llama-index-llms-llama-cpp = "^0.2.2"
beautifulsoup4 = "^4.12.3"
llama-index-graph-stores-neo4j = "^0.3.2"
python-dotenv = "^1.0.1"
fastapi = {extras = ["standard"], version = "^0.115.3"}
[[tool.poetry.source]]
name = "torch121"
url = "https://download.pytorch.org/whl/cu121"
priority = "explicit"
[[tool.poetry.source]]
name = "llama-cpp-python-121"
url = "https://abetlen.github.io/llama-cpp-python/whl/cu121"
priority = "explicit"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.5"
jupyter = "^1.1.1"
ipywidgets = "^8.1.5"
black = {extras = ["jupyter"], version = "^24.8.0"}
isort = "^5.13.2"
mypy = "^1.11.2"
types-beautifulsoup4 = "^4.12.0.20240907"
bert-score = "^0.3.13"
[tool.mypy]
exclude = ['.venv']
check_untyped_defs = true
[tool.isort]
profile = "black"
skip = [".venv"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"