Spaces:
Sleeping
Sleeping
File size: 727 Bytes
1175c0b bbbb404 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | [build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "incident_env"
version = "0.1.0"
description = "SRE Incident Response Simulator — an OpenEnv environment for training and evaluating AI agents on production incident diagnosis and remediation."
requires-python = ">=3.10"
dependencies = [
"openenv-core>=0.1.0",
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"pydantic>=2.0.0",
"websockets>=12.0",
"openai>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"httpx>=0.25.0",
]
[tool.setuptools.packages.find]
include = ["incident_env*"]
[project.scripts]
server = "incident_env.server.app:main"
|