Skip to content

Commit 19c79c2

Browse files
author
semantic-release
committed
chore: release 0.15.1
1 parent 7f8833c commit 19c79c2

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

CHANGELOG.md

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

33

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+
452
## v0.15.0 (2026-03-19)
553

654
### Bug Fixes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "openadapt-ml"
3-
version = "0.15.0"
3+
version = "0.15.1"
44
description = "Model-agnostic, domain-agnostic ML engine for GUI automation agents"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)