-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 1 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
[tool.poetry]
name = "rankwise"
version = "0.1.0"
description = "A tool that evaluates and ranks embedding models based on their retrieval performance using several metrics across various queries and document sets"
authors = ["Roberto Abdelkader Martínez Pérez <[email protected]>", "Pedro Ruiz Pareja <[email protected]>"]
license = "BSD"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
llama-index-core = "^0.11.10"
llama-index-llms-ollama = "^0.3.2"
llama-index-embeddings-ollama = "^0.3.1"
llama-index-embeddings-azure-openai = "^0.2.5"
llama-index-llms-azure-openai = "^0.2.1"
scikit-learn = "^1.5.2"
sentence-transformers = "^3.2.1"
torch = "~2.2.0"
llama-index-embeddings-huggingface = "^0.3.1"
matplotlib = "^3.9.2"
isoscore = "^2.0.1"
tqdm = "^4.67.1"
[tool.poetry.scripts]
rankwise = "rankwise.cli:main"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100