Spaces:
Running
Running
File size: 674 Bytes
136ea72 db820a9 136ea72 | 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 | [project]
name = "sentinel-env"
version = "1.0.0"
description = "OpenEnv-compatible multi-agent trust calibration environment."
requires-python = ">=3.10,<3.14"
dependencies = [
"fastapi>=0.115,<1",
"uvicorn[standard]>=0.35,<1",
"pydantic>=2.7,<3",
"httpx>=0.28.1,<1",
"python-multipart==0.0.9",
"openenv-core>=0.2.0",
]
[project.scripts]
server = "server.app:main"
[project.optional-dependencies]
dev = ["pytest>=8.0.0"]
training = [
"trl==0.24.0",
"transformers==4.57.6",
"datasets==4.3.0",
"accelerate==1.13.0",
"peft==0.19.1",
"bitsandbytes==0.49.2",
"unsloth",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
|