Spaces:
Runtime error
Runtime error
| [build-system] | |
| requires = ["setuptools>=45", "wheel"] | |
| build-backend = "setuptools.build_meta" | |
| [project] | |
| name = "customer-support-env" | |
| version = "1.0.0" | |
| description = "A real-world customer support reinforcement learning environment where an AI agent handles inbound support tickets" | |
| readme = "README.md" | |
| requires-python = ">=3.10" | |
| license = {text = "MIT"} | |
| authors = [ | |
| {name = "OpenEnv Submission", email = "support@openenv.com"} | |
| ] | |
| keywords = ["openenv", "customer-support", "nlp", "retrieval", "multi-turn", "real-world", "reinforcement-learning"] | |
| classifiers = [ | |
| "Development Status :: 4 - Beta", | |
| "Intended Audience :: Developers", | |
| "Intended Audience :: Science/Research", | |
| "License :: OSI Approved :: MIT License", | |
| "Programming Language :: Python :: 3", | |
| "Programming Language :: Python :: 3.10", | |
| "Programming Language :: Python :: 3.11", | |
| "Programming Language :: Python :: 3.12", | |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", | |
| ] | |
| dependencies = [ | |
| "fastapi>=0.104.0", | |
| "uvicorn>=0.24.0", | |
| "pydantic>=2.0.0", | |
| "openai>=1.0.0", | |
| "numpy>=1.20.0", | |
| "pandas>=1.3.0", | |
| "openenv>=0.2.0", | |
| ] | |
| [project.scripts] | |
| server = "server.app:main" | |
| [project.optional-dependencies] | |
| dev = [ | |
| "pytest>=7.0.0", | |
| "pytest-asyncio>=0.23.0", | |
| "black>=23.0.0", | |
| "flake8>=6.0.0", | |
| ] | |
| [project.urls] | |
| Homepage = "https://github.com/yourusername/customer-support-env" | |
| Repository = "https://github.com/yourusername/customer-support-env.git" | |
| Documentation = "https://github.com/yourusername/customer-support-env/blob/main/README.md" | |
| [tool.setuptools] | |
| packages = ["env", "graders", "server"] | |
| [tool.setuptools.package-data] | |
| env = ["*.py"] | |
| graders = ["*.py"] | |
| server = ["*.py"] | |
| [tool.black] | |
| line-length = 100 | |
| target-version = ["py310", "py311", "py312"] | |
| include = '\.pyi?$' | |
| exclude = ''' | |
| /( | |
| \.git | |
| | \.hg | |
| | \.mypy_cache | |
| | \.tox | |
| | \.venv | |
| | _build | |
| | buck-out | |
| | build | |
| | dist | |
| )/ | |
| ''' | |
| [tool.pytest.ini_options] | |
| testpaths = ["tests"] | |
| python_files = ["test_*.py"] | |
| addopts = "-v" |