Spaces:
Running
Running
File size: 1,573 Bytes
c452421 | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sentinel-oversight-openenv"
version = "1.0.0"
description = "OpenEnv environment for SENTINEL multi-agent AI oversight training."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11"
keywords = ["openenv", "reinforcement-learning", "sentinel", "multi-agent", "oversight", "ai-safety", "incident-response", "sre", "rl-environment"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.34.0",
"pydantic>=2.10.0",
"numpy>=1.26,<3",
"httpx>=0.28.0",
"openai>=2.7.2",
"python-dotenv>=1.0.0",
"pyyaml>=6.0.0",
"openenv-core>=0.2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
]
train = [
"torch==2.5.1",
"bitsandbytes==0.49.2",
"transformers==4.57.3",
"peft==0.18.0",
"trl==0.29.1",
"datasets==4.8.4",
"matplotlib==3.10.0",
"wandb==0.26.0",
]
[project.scripts]
server = "server.app:main"
[project.urls]
Homepage = "https://huggingface.co/spaces/srikrishna2005/openenv"
Repository = "https://github.com/sri11223/openEnv"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*", "baseline*", "server*", "sentinel*", "training*", "judges*"]
[tool.setuptools.package-data]
"*" = ["openenv.yaml"]
|