File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " openadapt-evals"
7- version = " 0.72.6 "
7+ version = " 0.72.7 "
88description = " Evaluation infrastructure for GUI agent benchmarks"
99readme = " README.md"
1010requires-python = " >=3.10"
You can’t perform that action at this time.
0 commit comments