You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,6 +84,12 @@ if __name__ == '__main__':
84
84
asyncio.run(main())
85
85
```
86
86
87
+
Keep in mind that Tarsier tags different types of elements differently to help your LLM identify what actions are performable on each element. Specifically:
88
+
-`[#ID]`: text-insertable fields (e.g. `textarea`, `input` with textual type)
89
+
-`[@ID]`: hyperlinks (`<a>` tags)
90
+
-`[$ID]`: other interactable elements (e.g. `button`, `select`)
91
+
-`[ID]`: plain text (if you pass `tag_text_elements=True`)
0 commit comments