forked from Psycoy/MixEval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (41 loc) · 1.16 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
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name='mix_eval',
version='1.0.0',
author='MixEval team',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'transformers==4.41.0',
'tiktoken==0.6.0',
'fschat==0.2.36',
'SentencePiece==0.2.0',
'accelerate==0.30.1',
'pandas==2.2.2',
'scikit-learn==1.5.0',
'hf_transfer==0.1.6',
'openai==1.30.5',
'httpx==0.27.0',
'nltk==3.8.1',
'numpy==1.26.3',
'tqdm==4.66.4',
'protobuf==4.25.3',
'python-dotenv==1.0.1',
'anthropic==0.28.0',
'mistralai==0.3.0',
'google-generativeai==0.5.4',
'google-cloud-aiplatform==1.53.0',
'reka-api==2.0.0',
'dashscope==1.19.2',
"prettytable"
],
package_data={
},
entry_points={
},
url='https://mixeval.github.io/',
license='License :: OSI Approved :: MIT License',
description='A state-of-the-art benchmark and eval suite for Large Language Models.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
)