Skip to content

Commit 00c0c33

Browse files
author
semantic-release
committed
chore: release 0.72.7
1 parent 9c91a54 commit 00c0c33

2 files changed

Lines changed: 27 additions & 1 deletion

File tree

CHANGELOG.md

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

33

4+
## v0.72.7 (2026-03-28)
5+
6+
### Bug Fixes
7+
8+
- Use list input format for Outlines multimodal generation
9+
([#205](https://github.com/OpenAdaptAI/openadapt-evals/pull/205),
10+
[`9c91a54`](https://github.com/OpenAdaptAI/openadapt-evals/commit/9c91a54c8c6d9fd9df88f00d381679c03256f7f7))
11+
12+
TransformersMultiModal.format_input is a singledispatch that only accepts `list` and `Chat` types. A
13+
`dict` raises TypeError.
14+
15+
Correct format: [prompt_text, outlines.Image(pil_image)] Wrong format: {"text": prompt, "images":
16+
[image]}
17+
18+
Also fixes PIL .format being dropped by .convert("RGB") — outlines.Image requires .format to be set.
19+
Restored after conversion.
20+
21+
New test: test_outlines_multimodal_input_format verifies: - list is a registered dispatch type (dict
22+
is NOT) - outlines.Image wraps PIL images correctly - This test would have caught both the dict
23+
and format bugs
24+
25+
36/36 tests pass in 0.10s.
26+
27+
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28+
29+
430
## v0.72.6 (2026-03-28)
531

632
### Bug Fixes

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.72.6"
7+
version = "0.72.7"
88
description = "Evaluation infrastructure for GUI agent benchmarks"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)