-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
50 lines (45 loc) · 1.14 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "bipia"
version = "0.1.0"
description = "A benchmark to evaluate the robustness of LLMs and defenses to indirect prompt injection attacks."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"py-cpuinfo",
"torch>=2.0.1",
"fschat>=0.2.35",
"deepspeed>=0.9.5",
"transformers>=4.34.0",
"accelerate>=0.15.0",
"datasets>=2.8.0",
"jsonlines",
"evaluate",
"rouge-score",
"tqdm",
"wandb",
"peft",
"vllm>=0.2.0",
"numpy",
"langdetect",
"thefuzz",
"openai==0.28.1",
"pandas",
"emoji"
]
[project.urls]
Homepage = "https://github.com/microsoft/BIPIA"
Documentation = "https://github.com/microsoft/BIPIA"
Source = "https://github.com/microsoft/BIPIA"
Tracker = "https://github.com/microsoft/BIPIA/issues"
[tool.setuptools.packages.find]
exclude = ["tests", "examples", "defense", "config", "benchmark"]
[tool.wheel]
universal = true