prompting

Executes tasks based on user input using natural language processing. This command is invoked when the user input does not start with a / command. The system interprets the input and attempts to carry out the task specified by the user.

Example Usage

> click sign up 
    
    thinking...

    To accomplish the goal of clicking "Sign Up," we need to
    focus on the Google Chrome application and then click on
    the "Sign Up" button.

    Here are the steps:

    1. Focus the Google Chrome application.
    2. Click on the "Sign Up" button.

    commands:
      - command: focus-application
        name: Google Chrome
      - command: hover-text
        text: Sign Up
        description: button in the header
        action: click

command='focus-application' name='Google Chrome'
command='hover-text' text='Sign Up' description='button in the header' action='click'

Last updated