|
1 | 1 | # CHANGELOG |
2 | 2 |
|
3 | 3 |
|
| 4 | +## v0.15.1 (2026-03-21) |
| 5 | + |
| 6 | +### Bug Fixes |
| 7 | + |
| 8 | +- Use keyword args for Qwen VL processor call |
| 9 | + ([#58](https://github.com/OpenAdaptAI/openadapt-ml/pull/58), |
| 10 | + [`d196dce`](https://github.com/OpenAdaptAI/openadapt-ml/commit/d196dce5c3f472fae2e8f830cafd5f2e565f5b13)) |
| 11 | + |
| 12 | +* fix: replace AutoModelForVision2Seq with AutoModelForImageTextToText for transformers 5.x |
| 13 | + |
| 14 | +AutoModelForVision2Seq was removed in transformers 5.x (shipped on AWS DL AMI). Use |
| 15 | + AutoModelForImageTextToText as the primary import with a fallback to AutoModelForVision2Seq for |
| 16 | + older transformers versions. |
| 17 | + |
| 18 | +Files updated: - openadapt_ml/training/grpo/trainer.py - openadapt_ml/cloud/modal_cloud.py - |
| 19 | + docs/grpo_trl_rewrite_draft.py (comment only) |
| 20 | + |
| 21 | +Note: openadapt_ml/training/trl_trainer.py already had the correct |
| 22 | + |
| 23 | +try/except pattern and was not modified. |
| 24 | + |
| 25 | +Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> |
| 26 | + |
| 27 | +* fix: use keyword args for Qwen VL processor to avoid positional conflict |
| 28 | + |
| 29 | +Qwen2_5_VLProcessor.__call__() expects text= and images= as keyword args. Passing text as positional |
| 30 | + arg conflicts with images kwarg: TypeError: got multiple values for argument 'images' |
| 31 | + |
| 32 | +--------- |
| 33 | + |
| 34 | +Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com> |
| 35 | + |
| 36 | +### Chores |
| 37 | + |
| 38 | +- Trigger release |
| 39 | + ([`7f8833c`](https://github.com/OpenAdaptAI/openadapt-ml/commit/7f8833cd7143323d807ed791b4a98a37e266ce4a)) |
| 40 | + |
| 41 | +### Documentation |
| 42 | + |
| 43 | +- Add first scored trace (Notepad Hello World, score 0.5) |
| 44 | + ([`ba44eaa`](https://github.com/OpenAdaptAI/openadapt-ml/commit/ba44eaae7e626358b5910ac265beb29c0c414f5f)) |
| 45 | + |
| 46 | +6 steps, 91s, GPT-5.4-mini planner+grounder, lightweight mode. VLM judge passed milestone 2 (Hello |
| 47 | + World typed, confidence 1.00). Milestone 1 (process check) timed out during /execute_windows eval. |
| 48 | + |
| 49 | +Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> |
| 50 | + |
| 51 | + |
4 | 52 | ## v0.15.0 (2026-03-19) |
5 | 53 |
|
6 | 54 | ### Bug Fixes |
|
0 commit comments