openadapt-types
[!IMPORTANT] Status: Experimental. Interoperability schemas, not the product. This package publishes shared schemas for computer-use agents as an optional component, with no production support promise.
The OpenAdapt product is the demonstration compiler,
openadapt-flow, installed via theOpenAdaptlauncher (pip install openadapt): it compiles a demonstrated GUI workflow into a deterministic, locally executable program. Healthy runs make no model calls, and it halts instead of guessing when verification fails. Lifecycle labels for every repository are in the repository lifecycle registry.
Canonical Pydantic schemas for computer-use agents.
pip install openadapt-types
These are the shared Action and UI-state types used across the OpenAdapt
stack: recorders emit them, the compiler stores and replays them, the grounding
package resolves their targets, and the privacy package scrubs them. Defining the
schema once keeps every substrate (web, Windows, macOS, Linux, RDP, Citrix/VDI)
on the same contract.
The OpenAdapt stack
OpenAdapt is a governed demonstration compiler: record a workflow once, compile the recording into a deterministic program, and replay that program with zero model calls on the healthy path. When the live screen does not match what was demonstrated it halts instead of guessing, using identity gates and independent effect verification. Every substrate is first-class: web and desktop recording are validated, RDP and Windows replay are early, and Citrix is exploratory.
| Package | Role |
|---|---|
openadapt |
Launcher and installer (pip install openadapt) |
openadapt-flow |
Records, compiles, verifies, and replays workflows |
openadapt-capture |
Cross-platform local desktop recording |
openadapt-types |
Canonical action and UI-state schema (this package) |
openadapt-grounding |
Local OCR text-anchoring plus optional model grounding |
openadapt-privacy |
PHI/PII detection and redaction |
Documentation for the whole stack lives at docs.openadapt.ai.
What's in the box
| Schema | Purpose |
|---|---|
ComputerState |
Screen state: screenshot + UI element graph + window context |
UINode |
Single UI element with role, bbox, hierarchy, platform anchors |
Action |
Agent action with typed action space + flexible targeting |
ActionTarget |
Where to act: node_id > description > (x, y) coordinates |
ActionResult |
Execution outcome with error taxonomy + state delta |
Episode / Step |
Complete task trajectory (observation → action → result) |
FailureRecord |
Classified failure for dataset pipelines |
ControlOverlayFrameV1 / ControlOverlayTimelineV1 |
PHI-safe execution overlay state bound to exact evidence media |
ControlOverlayFrameV2 / ControlOverlayTimelineV2 |
Exact, privacy-safe target geometry for sibling overlays and media composition |
Quick start
from openadapt_types import (
Action, ActionTarget, ActionType,
ComputerState, UINode, BoundingBox,
)
# Describe what's on screen
state = ComputerState(
viewport=(1920, 1080),
nodes=[
UINode(node_id="n0", role="window", name="My App", children_ids=["n1"]),
UINode(node_id="n1", role="button", name="Submit", parent_id="n0",
bbox=BoundingBox(x=500, y=400, width=100, height=40)),
],
)
# Agent decides what to do
action = Action(
type=ActionType.CLICK,
target=ActionTarget(node_id="n1"),
reasoning="Click Submit to proceed",
)
# Render element tree for LLM prompts
print(state.to_text_tree())
# [n0] window: My App
# [n1] button: Submit
Action targeting
ActionTarget supports three grounding strategies (in priority order):
# 1. Element-based (preferred, most robust)
ActionTarget(node_id="n1")
# 2. Description-based (resolved by grounding module)
ActionTarget(description="the blue submit button")
# 3. Coordinate-based (fallback)
ActionTarget(x=550, y=420)
ActionTarget(x=0.29, y=0.39, is_normalized=True)
Agents SHOULD produce node_id or description. The runtime resolves to coordinates.
Compatibility with existing schemas
Converters for three existing OpenAdapt schema formats:
from openadapt_types._compat import (
from_benchmark_observation, # openadapt-evals BenchmarkObservation
from_benchmark_action, # openadapt-evals BenchmarkAction
from_ml_observation, # openadapt-ml Observation
from_ml_action, # openadapt-ml Action
from_omnimcp_screen_state, # omnimcp ScreenState
from_omnimcp_action_decision, # omnimcp ActionDecision
)
# Convert existing data
state = from_benchmark_observation(obs.__dict__)
action = from_benchmark_action(act.__dict__)
JSON Schema
Export for language-agnostic tooling:
import json
from openadapt_types import ComputerState, Action, Episode
# Get JSON Schema
schema = ComputerState.model_json_schema()
print(json.dumps(schema, indent=2))
The same API exports the versioned cross-surface overlay contracts:
from openadapt_types import (
ControlOverlayFrameV1,
ControlOverlayFrameV2,
ControlOverlayTimelineV1,
ControlOverlayTimelineV2,
)
frame_schema = ControlOverlayFrameV1.model_json_schema()
timeline_schema = ControlOverlayTimelineV1.model_json_schema()
tracking_frame_schema = ControlOverlayFrameV2.model_json_schema()
tracking_timeline_schema = ControlOverlayTimelineV2.model_json_schema()
The same schemas ship under openadapt_types/schemas/ for TypeScript, Rust,
and other consumers. Version 1 remains the control-state contract. Version 2
adds an optional normalized top-level viewport rectangle, the exact source
viewport and DPR, and an exact observation or decoded-media-frame binding
without changing V1.
Overlay schemas reject unknown fields and contain only closed presentation labels and canonical statuses. Screenshot payloads, action-target selectors, accessible names, text and values, typed input, identities, URLs, logs, report bodies, and user-authored workflow names remain outside this public contract. V2 may carry only normalized target geometry from a browser top-level CSS viewport. Native and RDP device-pixel geometry is not part of this V2 schema.
Target geometry never carries locators, accessible names, values, URLs, or screenshots. A private live observation uses a run/export-scoped HMAC reference instead of a linkable raw frame hash. Published media uses the exact media SHA-256 and decoded frame index. A renderer draws tracking only when that binding matches; it omits the rectangle rather than replaying selectors, interpolating movement, or inferring a missing target from adjacent events. The runtime does not guess a future viewer transform. Desktop, Cloud, and media renderers map the normalized rectangle through their actual content box. If multiple runtime states land in one decoded media frame, the producer must coalesce them deterministically; it must not invent extra media frames or approximate their timing.
Design principles
- Pydantic v2: runtime validation, JSON Schema export, fast serialization
- Pixels and structure: always capture both visual and semantic UI state
- Node graph: full element tree, not just the focused element
- Platform-agnostic: same schema for web, Windows, macOS, Linux, RDP, Citrix/VDI
- Extension-friendly:
raw,attributes,metadatafields everywhere - Backward compatible:
_compatconverters for gradual migration
Dependencies
Just pydantic>=2.0. No ML libraries, no heavy deps.
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openadapt_types-0.6.3.tar.gz.
File metadata
- Download URL: openadapt_types-0.6.3.tar.gz
- Upload date:
- Size: 96.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
14ef7ad4b17737d43030232cfb0d3bc1096af34b3b3b49dadd89c7063834ad34
|
|
| MD5 |
4ffa40af633e9ac34159c6a47b5ec7ee
|
|
| BLAKE2b-256 |
426acad3fce143ef4b6716a4cd027170966a8c1f5a6b0c5d27188ec4f99e79d7
|
Provenance
The following attestation bundles were made for openadapt_types-0.6.3.tar.gz:
Publisher:
publish.yml on OpenAdaptAI/openadapt-types
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openadapt_types-0.6.3.tar.gz -
Subject digest:
14ef7ad4b17737d43030232cfb0d3bc1096af34b3b3b49dadd89c7063834ad34 - Sigstore transparency entry: 2264037398
- Sigstore integration time:
-
Permalink:
OpenAdaptAI/openadapt-types@995d4d0de3eddf3825aca68733a28253204fe2aa -
Branch / Tag:
refs/heads/main - Owner: https://github.com/OpenAdaptAI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@995d4d0de3eddf3825aca68733a28253204fe2aa -
Trigger Event:
push
-
Statement type:
File details
Details for the file openadapt_types-0.6.3-py3-none-any.whl.
File metadata
- Download URL: openadapt_types-0.6.3-py3-none-any.whl
- Upload date:
- Size: 56.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eff427a954d0e16407ad3d0e3883a5f93887e06499ae5a026aa3342c011d082b
|
|
| MD5 |
82a0c355c7185423537f9812f5642133
|
|
| BLAKE2b-256 |
f9f7a3107368384ccd85c348ed958e02441aab7ea4497a53b59668eeb394fa0d
|
Provenance
The following attestation bundles were made for openadapt_types-0.6.3-py3-none-any.whl:
Publisher:
publish.yml on OpenAdaptAI/openadapt-types
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openadapt_types-0.6.3-py3-none-any.whl -
Subject digest:
eff427a954d0e16407ad3d0e3883a5f93887e06499ae5a026aa3342c011d082b - Sigstore transparency entry: 2264037616
- Sigstore integration time:
-
Permalink:
OpenAdaptAI/openadapt-types@995d4d0de3eddf3825aca68733a28253204fe2aa -
Branch / Tag:
refs/heads/main - Owner: https://github.com/OpenAdaptAI
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@995d4d0de3eddf3825aca68733a28253204fe2aa -
Trigger Event:
push
-
Statement type: