Skip to content

Commit 2a623dd

Browse files
fix: replace old VisionAgent mentions with ComputerAgent in readme
1 parent 1558d43 commit 2a623dd

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
Join the [AskUI Discord](https://discord.gg/Gu35zMGxbx).
99

10-
## Why AskUI Vision Agent?
10+
## Why AskUI?
1111

1212
Traditional UI automation is fragile. Every time a button moves, a label changes, or a layout shifts, your scripts break. You're stuck maintaining brittle selectors, writing conditional logic for edge cases, and constantly updating tests.
1313

14-
**AskUI Vision Agent solves this by combining two powerful approaches:**
14+
**AskUI Agents solve this by combining two powerful approaches:**
1515

1616
1. **Vision-based automation** - Find UI elements by what they look like or say, not by brittle XPath or CSS selectors
1717
2. **AI-powered agents** - Give high-level instructions and let AI figure out the steps
@@ -35,9 +35,9 @@ Whether you're automating desktop apps, testing mobile applications, or building
3535
Control your devices with simple, vision-based commands:
3636

3737
```python
38-
from askui import VisionAgent
38+
from askui import ComputerAgent
3939

40-
with VisionAgent() as agent:
40+
with ComputerAgent() as agent:
4141
# Click on a button by its text
4242
agent.click("Submit")
4343

@@ -91,9 +91,9 @@ $env:ASKUI_TOKEN="<your-token-here>"
9191
#### 💻 Example
9292

9393
```python
94-
from askui import VisionAgent
94+
from askui import ComputerAgent
9595

96-
with VisionAgent() as agent:
96+
with ComputerAgent() as agent:
9797
# Complex multi-step instruction
9898
agent.act(
9999
"Open a browser, navigate to GitHub, search for 'askui vision-agent', "
@@ -115,11 +115,11 @@ with VisionAgent() as agent:
115115
Add new capabilities to your agents:
116116

117117
```python
118-
from askui import VisionAgent
118+
from askui import ComputerAgent
119119
from askui.tools.store.computer import ComputerSaveScreenshotTool
120120
from askui.tools.store.universal import PrintToConsoleTool
121121

122-
with VisionAgent() as agent:
122+
with ComputerAgent() as agent:
123123
agent.act(
124124
"Take a screenshot of the current screen and save it, then confirm",
125125
tools=[

0 commit comments

Comments
 (0)