TODO: Exlain
export ASKUI_INSTALL_DIRECTORY=<path>
export ANTHROPIC_API_KEY='your-api-key-here'
from askui import VisionAgent
# Initialize your agent
agent = VisionAgent()
# Launch you target application via CLI
agent.cli("firefox")
# Start to automate
agent.click("url bar")
agent.type("http://www.google.com")
agent.keyboard("enter")
# Close agent when done
agent.close()