Spaces:
Running
Running
File size: 1,238 Bytes
2ce1061 | 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 | # Code Debug Environment β Full File Structure
```
code-debug-env/
βββ openenv.yaml β OpenEnv manifest (required)
βββ inference.py β Baseline agent script (must be in root)
βββ pyproject.toml β Dependencies
βββ README.md β Docs with action/obs spaces
βββ .dockerignore
βββ models.py β Pydantic Action/Observation/State
βββ client.py β EnvClient (for training code)
βββ __init__.py β Exports
βββ server/
βββ __init__.py
βββ app.py β FastAPI server
βββ environment.py β Core logic: reset/step/state
βββ tasks/
β βββ __init__.py
β βββ task_easy.py β 15 buggy code samples
β βββ task_medium.py β 15 buggy code samples
β βββ task_hard.py β 15 buggy code samples
βββ graders/
β βββ __init__.py
β βββ grader_easy.py
β βββ grader_medium.py
β βββ grader_hard.py
βββ requirements.txt
βββ Dockerfile
```
|