-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (35 loc) · 1.07 KB
/
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
from setuptools import setup, find_packages
VERSION = '0.0.2'
DESCRIPTION = 'A package for jailbreaking defenses'
setup(
name="llm_jailbreaking_defense",
version=VERSION,
author="Yihan Wang, Zhouxing Shi, Andrew Bai, Cho-Jui Hsieh",
description=DESCRIPTION,
packages=find_packages(),
install_requires=[
"protobuf>=3.19.5,<5.0.0.dev0",
"torch>=2.0",
"sentencepiece",
"transformers",
"fschat>=0.2.33",
"pandas>=2.1",
"seaborn>=0.13",
"matplotlib>=3.8.2",
"numpy>=1.26,<2",
"datasets>=2.14.0",
"evaluate>=0.4.1",
"anthropic>=0.7.6",
"openai>=1.40",
"chardet>=5.2.0",
"accelerate>=0.24",
"bitsandbytes>=0.41",
"scipy>=1.11",
"ml_collections>=0.1.1",
"nltk>=3.8",
"aiohttp>=3.8.1",
"fsspec[http]<=2024.2.0,>=2023.1.0"
],
keywords=["Large Language Model", "LLM", "jailbreaking", "robustness"],
)