-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
47 lines (43 loc) · 1.32 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["multirag", "multirag.dataset", "multirag.evaluation", "multirag.storage", "multirag.embed", "multirag.plot"]
py-modules = []
[project]
name = "multirag"
version = "0.0.1"
authors = [
{ name = "Roman Niggli", email = "[email protected]" },
{ name = "Lucas Weitzendorf", email = "[email protected]" },
{ name = "Maciej Besta", email = "[email protected]" },
{ name = "Ales Kubicek", email = "[email protected]" },
{ name = "Robert Gerstenberger", email = "[email protected]" },
{ name = "Patrick Iff", email = "[email protected]" },
]
description = "Python package for 'Multi-Head RAG' (MRAG)"
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"pyyaml ~= 6.0.1",
"torch >= 2.1.0",
"transformers ~= 4.41.0",
"openai ~= 1.30.1",
"wikipedia-api ~= 0.6.0",
"numpy ~= 1.26.4",
"pandas ~= 2.2.2",
"matplotlib ~= 3.8.4",
"psycopg2-binary",
"pgvector ~= 0.2.5",
"tqdm ~= 4.66.4",
"seaborn ~= 0.13.2"
]
[project.urls]
Repository = "https://github.com/spcl/MRAG.git"
[project.scripts]
multirag-cli = "multirag.__main__:main"