mirror of
https://github.com/microsoft/SkillOpt.git
synced 2026-07-07 00:15:39 +08:00
- Rename teacher -> optimizer, student -> target across all code, configs, docs, prompts - CLI: --teacher_model -> --optimizer_model, --student_model -> --target_model - Remove best_skill files, keep only initial skills - Fix slow update gate (force write into skill) - Fix SLOW_UPDATE marker stripping - Remove deep_reflect and meta_reflect mechanisms - Update .env.example with export prefix and azure_cli docs - Add endpoint empty validation in azure_openai.py Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Benchmark Template
This directory provides scaffold files for adding a new benchmark to SkillOpt.
Files
env_template.py— Environment adapter templateloader_template.py— Data loader templateconfig_template.yaml— Config file template
Usage
- Copy this directory:
cp -r skillopt/envs/_template skillopt/envs/your_benchmark - Rename files: remove
_templatesuffix - Implement the
TODOsections - Register in
skillopt/envs/__init__.py - Create config at
configs/your_benchmark/default.yaml
See the documentation for the full guide.