-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.18 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
[tool.poetry]
name = "openpo"
version = "0.7.7"
description = "Build high quality synthetic datasets with AI feedback from 200+ LLMs"
authors = ["Daniel Lee <[email protected]>"]
license = "Apache-2.0"
keywords = ["llm", "finetuning", "ai", "rlaif", "preference tuning", "synthetic data generation", "synthetic data"]
include = ["LICENSE", "README.md"]
repository = "https://github.com/dannylee1020/openpo"
documentation="https://docs.openpo.dev"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10.1,<4.0"
pydantic = "^2.9.2"
boto3 = "^1.35.57"
numpy = "^1.26.4"
huggingface-hub = "^0.26.2"
httpx = "^0.27.2"
datasets = "^3.1.0"
pandas = "^2.2.3"
openai = "^1.57.1"
anthropic = "^0.40.0"
llm-blender = {version = "^0.0.2", optional = true}
prometheus-eval = {version = "^0.1.20", optional = true}
vllm = {version = "^0.6.4.post1", optional = true}
triton = {version = '3.1.0', optional = true}
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.5.44"
mkdocstrings-python = "^1.12.2"
[tool.poetry.extras]
eval= ["llm-blender", "prometheus-eval", "vllm", "triton"]
vllm = ["vllm", "triton"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"