Spaces:
Sleeping
Sleeping
File size: 1,106 Bytes
339abf5 75ca235 339abf5 75ca235 339abf5 | 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 | # Bug Triage OpenEnv Structure
```text
openenv_bug_triage
|-- openenv.yaml # OpenEnv manifest
|-- inference.py # Submission runner / offline baseline
|-- pyproject.toml # Project metadata and dependencies
|-- README.md # Setup, API, and task overview
|-- models.py # Typed observation, action, reward, and state models
|-- client.py # Lightweight environment client
|-- server/
| |-- app.py # FastAPI server
| |-- environment.py # Core environment logic
| |-- heuristics.py # Shared inference heuristics
| |-- policy.py # Shared deterministic triage policy
| |-- tasks/
| | |-- task_easy.py
| | |-- task_medium.py
| | `-- task_hard.py
| `-- graders/
| |-- grader_easy.py
| |-- grader_medium.py
| `-- grader_hard.py
`-- tests/
|-- test_api_contract.py
|-- test_environment.py
|-- test_graders.py
|-- test_heuristics.py
|-- test_inference_contract.py
`-- test_policy.py
```
|