fineprint-env / pyproject.toml
vigneshmoovendhan's picture
Fine Print RL final
0b6a889
raw
history blame contribute delete
709 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fineprint-env"
version = "0.1.0"
description = "Consumer Policy Drift Detection Environment for OpenEnv — an RL environment where agents detect policy changes and maintain compliance in customer service workflows."
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.0.0",
"openai>=1.0.0",
"openenv-core>=0.2.0",
"requests>=2.28.0",
"gymnasium>=0.29.0",
"numpy>=1.24.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = ["pytest", "httpx"]
train = ["unsloth", "torch", "wandb"]