We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 649f3dd commit d750883Copy full SHA for d750883
sentience/models.py
@@ -31,6 +31,7 @@ class VisualCues(BaseModel):
31
32
is_primary: bool
33
background_color_name: str | None = None
34
+ fallback_background_color_name: str | None = None
35
is_clickable: bool
36
37
@@ -66,6 +67,9 @@ class Element(BaseModel):
66
67
# Hyperlink URL (for link elements)
68
href: str | None = None
69
70
+ # Nearby static text (best-effort, usually only for top-ranked elements)
71
+ nearby_text: str | None = None
72
+
73
# ===== v1 state-aware assertion fields (optional) =====
74
# Best-effort accessible name/label for controls (distinct from visible text)
75
name: str | None = None
0 commit comments