preference-lab / pyproject.toml
Sibam
feat: download real datasets during docker build and mount live reward graph in Gradio UI
e0b4973
Raw
History Blame Contribute Delete
810 Bytes
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "preference-lab"
version = "0.1.0"
description = "An OpenEnv environment simulating the RLHF preference data collection pipeline"
readme = "README.md"
license = { text = "BSD-3-Clause" }
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.2.1",
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
"openai>=1.0.0",
"datasets>=2.14.0",
"httpx>=0.25.0",
"websockets>=11.0",
"pandas>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"httpx>=0.25.0",
]
[tool.setuptools.packages.find]
where = ["."]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[project.scripts]
server = "server.app:main"