Skip to content

Commit 0acd411

Browse files
author
semantic-release
committed
chore: release 0.79.1
1 parent 1c23f0b commit 0acd411

2 files changed

Lines changed: 25 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
# CHANGELOG
22

33

4+
## v0.79.1 (2026-03-29)
5+
6+
### Bug Fixes
7+
8+
- Clean config separation — our config + TRL's config, no duplication
9+
([#230](https://github.com/OpenAdaptAI/openadapt-evals/pull/230),
10+
[`1c23f0b`](https://github.com/OpenAdaptAI/openadapt-evals/commit/1c23f0b0082040580ea37f1e56e82e53fe1cc766))
11+
12+
TrainingConfig owns OpenAdapt concerns: model, task_dir, server_url, constrained_decoding,
13+
max_new_tokens, use_unsloth, weave_project.
14+
15+
TRL's GRPOConfig owns training concerns: loss_type, learning_rate, batch_size,
16+
gradient_accumulation, vLLM, bf16, W&B reporting.
17+
18+
The wrapper accepts both via trl_config kwarg:
19+
20+
trainer = GRPOTrainer( TrainingConfig(task_dir="tasks/", constrained_decoding=True),
21+
trl_config=GRPOConfig(loss_type="dapo", num_generations=4), on_step_complete=my_logger, )
22+
23+
If trl_config is omitted, sensible defaults are built from TrainingConfig.
24+
25+
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26+
27+
428
## v0.79.0 (2026-03-29)
529

630
### Features

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "openadapt-evals"
7-
version = "0.79.0"
7+
version = "0.79.1"
88
description = "Evaluation infrastructure for GUI agent benchmarks"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)