-
Notifications
You must be signed in to change notification settings - Fork 550
/
learn.py
44 lines (37 loc) · 2.15 KB
/
learn.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import argparse
import datetime
import os
import time
from scripts.utils import print_with_color
arg_desc = "AppAgent - exploration phase"
parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter, description=arg_desc)
parser.add_argument("--app")
parser.add_argument("--root_dir", default="./")
args = vars(parser.parse_args())
app = args["app"]
root_dir = args["root_dir"]
print_with_color("Welcome to the exploration phase of AppAgent!\nThe exploration phase aims at generating "
"documentations for UI elements through either autonomous exploration or human demonstration. "
"Both options are task-oriented, which means you need to give a task description. During "
"autonomous exploration, the agent will try to complete the task by interacting with possible "
"elements on the UI within limited rounds. Documentations will be generated during the process of "
"interacting with the correct elements to proceed with the task. Human demonstration relies on "
"the user to show the agent how to complete the given task, and the agent will generate "
"documentations for the elements interacted during the human demo. To start, please enter the "
"main interface of the app on your phone.", "yellow")
print_with_color("Choose from the following modes:\n1. autonomous exploration\n2. human demonstration\n"
"Type 1 or 2.", "blue")
user_input = ""
while user_input != "1" and user_input != "2":
user_input = input()
if not app:
print_with_color("What is the name of the target app?", "blue")
app = input()
app = app.replace(" ", "")
if user_input == "1":
os.system(f"python scripts/self_explorer.py --app {app} --root_dir {root_dir}")
else:
demo_timestamp = int(time.time())
demo_name = datetime.datetime.fromtimestamp(demo_timestamp).strftime(f"demo_{app}_%Y-%m-%d_%H-%M-%S")
os.system(f"python scripts/step_recorder.py --app {app} --demo {demo_name} --root_dir {root_dir}")
os.system(f"python scripts/document_generation.py --app {app} --demo {demo_name} --root_dir {root_dir}")