SupportFlowAI / pyproject.toml
Mmanikandan's picture
initial commit
5f2ce8f
raw
history blame contribute delete
621 Bytes
[project]
name = "customer-support-env"
version = "0.1.0"
description = "Multi-step reinforcement learning environment for customer support email triage"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"openai>=1.0.0",
"httpx>=0.24.0",
"openenv-core>=0.2.0"
]
[project.scripts]
customer-server = "server.app:main"
server = "server.app:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.openenv]
environment_type = "episodic"
max_steps = 5
deterministic = true