8.1 KiB
theme, title, info, author, transition, mdc, lineNumbers, monaco, aspectRatio, canvasWidth, layout, class
| theme | title | info | author | transition | mdc | lineNumbers | monaco | aspectRatio | canvasWidth | layout | class |
|---|---|---|---|---|---|---|---|---|---|---|---|
| seriph | Lesson 37 — How Does an Agent Act Through Pixels? | English video course for AI Agents in Depth | Bojie Li | slide-left | true | false | false | 16/9 | 980 | cover | cover |
How Does an Agent Act Through Pixels?
GUI action spaces, visual grounding, and bounded interaction
layout: center class: text-center
Why this problem matters
Observation
A screenshot is a partial, time-sensitive view of application state.
Grounding
The Agent must map language to an element ID or coordinate.
Interaction
Every click or keystroke changes the next observation.
Three ideas to keep in view
Structured tree
Use DOM or accessibility elements when they are reliable
Visual grounding
Locate targets directly in pixels when structure is absent
Bounded loop
Observe → one guarded action → observe again
The book's visual model
Structured grounding vs. Visual grounding
Structured grounding
- DOM/accessibility IDs
- Closed-set selection
- Fails on custom drawing
Visual grounding
- Works from pixels
- General interface coverage
- Coordinate and scale errors
Every action creates a new observation
while budget.remaining:
screenshot, tree = browser.observe()
target = agent.ground(task, screenshot, tree)
action = agent.choose_action(target)
receipt = browser.execute(guard(action))
if verifier.done(receipt): break
Test the claim
Run offline Computer Use contract checks
Observe: Endpoint identity, screenshot retention, manifest integrity, and redaction boundaries
Inspect the retained open-model acceptance pointer
Observe: Experiment arm, model scope, status, and the hashes required to trace the full run
class: course-terminal
Switching to the terminal
$ python -m pytest chapter9/computer-use-open-model/tests -q
$ python -m json.tool chapter9/computer-use-open-model/validation/latest.json
What the evidence supports
Finding 1
A Computer Use result is a trajectory of state changes—not a final textual answer.
Finding 2
Structured elements improve precision, while pixel grounding expands interface coverage.
Finding 3
Scaling, coordinate transforms, stale screenshots, and hidden state create distinct failure modes.