customer-support-api / pyproject.toml
3v324v23's picture
fix: rewrite inference.py to use LiteLLM proxy via API_BASE_URL/API_KEY env vars
000a6e7
Raw
History Blame Contribute Delete
651 Bytes
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "customer-support-api"
version = "1.0.0"
description = "AI Customer Support Simulator - OpenEnv-compatible RL environment"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.100.0",
"uvicorn>=0.23.0",
"pydantic>=2.0.0",
"pyyaml>=6.0",
"openai>=1.0.0",
"openenv-core>=0.2.0",
]
[project.optional-dependencies]
dev = [
"httpx>=0.24.0",
"pytest>=7.0",
]
[project.scripts]
server = "server.app:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["server*", "tasks*", "graders*"]