Upload folder using huggingface_hub
Browse files
README.md
CHANGED
|
@@ -111,13 +111,19 @@ the repository keeps the implementation under `sysadmin_env/` and exposes a few
|
|
| 111 |
|
| 112 |
```text
|
| 113 |
.
|
|
|
|
|
|
|
|
|
|
| 114 |
βββ __init__.py
|
| 115 |
βββ client.py
|
|
|
|
| 116 |
βββ inference.py
|
| 117 |
βββ models.py
|
| 118 |
-
βββ Dockerfile
|
| 119 |
βββ openenv.yaml
|
| 120 |
βββ pyproject.toml
|
|
|
|
|
|
|
|
|
|
| 121 |
βββ scripts/
|
| 122 |
β βββ validate-submission.sh
|
| 123 |
βββ server/
|
|
@@ -156,7 +162,10 @@ the repository keeps the implementation under `sysadmin_env/` and exposes a few
|
|
| 156 |
- `models.py` β thin root shim that re-exports the canonical pydantic models from `sysadmin_env.models`.
|
| 157 |
- `__init__.py` β root package shim that re-exports `main`, `Action`, `Observation`, and `EnvironmentState`.
|
| 158 |
- `inference.py` β the baseline agent used as the submission entrypoint declared in `openenv.yaml`.
|
|
|
|
|
|
|
| 159 |
- `messing-around-with-playbooks.md` β change log for the recent baseline prompt and `network_broken` guardrail adjustments, including observed local run results.
|
|
|
|
| 160 |
|
| 161 |
### deployment, packaging, and validation files
|
| 162 |
|
|
|
|
| 111 |
|
| 112 |
```text
|
| 113 |
.
|
| 114 |
+
βββ .env.example
|
| 115 |
+
βββ README.md
|
| 116 |
+
βββ messing-around-with-playbooks.md
|
| 117 |
βββ __init__.py
|
| 118 |
βββ client.py
|
| 119 |
+
βββ Dockerfile
|
| 120 |
βββ inference.py
|
| 121 |
βββ models.py
|
|
|
|
| 122 |
βββ openenv.yaml
|
| 123 |
βββ pyproject.toml
|
| 124 |
+
βββ requirements.txt
|
| 125 |
+
βββ outputs/
|
| 126 |
+
β βββ output-*.txt
|
| 127 |
βββ scripts/
|
| 128 |
β βββ validate-submission.sh
|
| 129 |
βββ server/
|
|
|
|
| 162 |
- `models.py` β thin root shim that re-exports the canonical pydantic models from `sysadmin_env.models`.
|
| 163 |
- `__init__.py` β root package shim that re-exports `main`, `Action`, `Observation`, and `EnvironmentState`.
|
| 164 |
- `inference.py` β the baseline agent used as the submission entrypoint declared in `openenv.yaml`.
|
| 165 |
+
- `README.md` β primary repository documentation covering architecture, tasks, reward shaping, setup, validation, and the current baseline behavior.
|
| 166 |
+
- `.env.example` β sample environment-variable file for local configuration.
|
| 167 |
- `messing-around-with-playbooks.md` β change log for the recent baseline prompt and `network_broken` guardrail adjustments, including observed local run results.
|
| 168 |
+
- `outputs/` β local captured baseline run logs used while tuning and validating the inference behavior.
|
| 169 |
|
| 170 |
### deployment, packaging, and validation files
|
| 171 |
|