Skip to main content

1. Sign Up

Create account at hub.askui.com. You’ll get:
  • Workspace ID
  • Access Token

2. Install Agent OS

# Or via CLI
Invoke-WebRequest -Uri "https://files.askui.com/releases/Installer/25.11.1/AskUI-Suite-25.11.1-User-Installer-Win-AMD64-Web.exe" -OutFile "AskUI-Setup.exe"
.\AskUI-Setup.exe

3. Install SDK

pip install askui
Set credentials:
export ASKUI_WORKSPACE_ID="your-workspace-id"
export ASKUI_TOKEN="your-access-token"

4. Run First Task

# first_task.py
from askui import VisionAgent

with VisionAgent() as agent:
    agent.act("""
        Open a web browser
        Navigate to google.com
        Type "AskUI automation" in search box
        Press Enter
    """)
python first_task.py

Demo Project

git clone https://github.com/Lumpin-askui/AskUI-Demo-Project.git
cd AskUI-Demo-Project
pip install -r requirements.txt
python act.py
CSV-based test automation with screenshots and reports.