huggingmenfordays commited on
Commit
32465b7
Β·
verified Β·
1 Parent(s): 75efcaf

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +10 -1
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