feat: checkpoint device agent runtime milestones

This commit is contained in:
2026-07-06 17:24:03 +08:00
parent 2d4251e98e
commit 5658735bca
153 changed files with 8060 additions and 65 deletions
+1 -2
View File
@@ -1,7 +1,7 @@
from __future__ import annotations
from core.models import Bounds, SceneElement
from vision.scene_builder import bbox_iou, build_scene
from perception.scene_builder import bbox_iou, build_scene
def test_scene_builder_merges_overlapping_ocr_into_ui_element() -> None:
@@ -42,4 +42,3 @@ def test_scene_builder_merges_overlapping_ocr_into_ui_element() -> None:
assert scene.elements[0].text == "Search"
assert scene.elements[1].text == "Footer"
assert bbox_iou(ui_button.bounds, ocr_label.bounds) > 0.5