-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (41 loc) · 966 Bytes
/
setup.py
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
import setuptools
setuptools.setup(
name="gatherer_sage",
use_scm_version=True,
author="Javier Jimenez",
packages=setuptools.find_packages(),
python_requires=">=3.9",
setup_requires=["setuptools_scm"],
install_requires=[
"pandas",
"langchain",
"transformers",
"PyPDF2",
"matplotlib",
"torch",
"huggingface_hub",
"langchain_community",
"langchain-groq",
"sentence-transformers",
"faiss-gpu",
"bitsandbytes",
"accelerate",
"ragatouille",
"evaluate",
"rouge_score",
"wandb",
"einops", # phi
"pytest", # phi
"unsloth[colab-new] @ git+https://github.com/unslothai/unsloth.git",
"xformers",
"bert-score",
"prometheus-eval",
"typer",
"vllm",
"peft",
"trl",
"pandas",
"apricot-select",
"ragas"
],
)