forked from openai/evals
-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (43 loc) · 1018 Bytes
/
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
[tool.poetry]
name = "openevals"
version = "0.1.1"
description = ""
authors = ["Your Name <[email protected]>"]
packages = [{ include = "evals" }]
[tool.poetry.dependencies]
python = ">=3.8"
mypy = "*"
openai = "*"
tiktoken = "*"
blobfile = "*"
backoff = "*"
numpy = "*"
snowflake-connector-python = { version = "*", extras = ["pandas"] }
pandas = "*"
fire = "*"
pydantic = "*"
tqdm = "*"
nltk = "*"
filelock = "*"
mock = "*"
langdetect = "*"
termcolor = "*"
lz4 = "*"
pyzstd = "*"
pyyaml = "*"
sacrebleu = "*"
matplotlib = "*"
[tool.poetry.scripts]
oaieval = "evals.cli.oaieval:main"
oaievalset = "evals.cli.oaievalset:main"
[tool.poetry.extras]
pandas = ["snowflake-connector-python"]
[tool.poetry-dynamic-versioning]
enable = true
pattern = "default-unprefixed"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.poetry.plugins.openevals]
openai = "evals.plugins.openai:OpenAIRunner"
llama = "evals.plugins.llama:LlamaRunner"