Skip to content

Commit

Permalink
fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
alckasoc committed Jan 14, 2025
1 parent cbf8fce commit d365b04
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,17 +133,14 @@ This will show a user query prompt where you can enter your query and interact w
To deploy Agent S on MacOS or Windows:

```
from gui_agents.aci.WindowsOSACI import WindowsACI
from gui_agents.aci.MacOSACI import MacOSACI
platform = "Darwin" # or "Windows"
if platform == "Darwin":
from gui_agents.aci.MacOSACI import MacOSACI, UIElement
grounding_agent = MacOSACI()
from gui_agents.aci.MacOSACI import UIElement
elif platform == "Windows":
from gui_agents.aci.WindowsOSACI import WindowsACI, UIElement
grounding_agent = WindowsACI()
from gui_agents.aci.WindowsOSACI import UIElement
else:
raise ValueError("Unsupported platform")
Expand Down

0 comments on commit d365b04

Please sign in to comment.