YaTharThShaRma999
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -11,16 +11,19 @@ Your goal is to complete the task efficiently and accurately using these functio
|
|
11 |
Objects: drawer, apple
|
12 |
The task is: Put the apple inside the drawer
|
13 |
|
|
|
|
|
|
|
|
|
14 |
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
Task: open the door, get the apple and put it on the table.
|
|
|
11 |
Objects: drawer, apple
|
12 |
The task is: Put the apple inside the drawer
|
13 |
|
14 |
+
listforsteps = ["""
|
15 |
+
grasp(apple)
|
16 |
+
travelto(drawer)
|
17 |
+
putin(apple, drawer)""",
|
18 |
|
19 |
+
"""open(door)
|
20 |
+
travelto(banana)
|
21 |
+
grasp(banana)
|
22 |
+
puton(banana, table)""",
|
23 |
+
]
|
24 |
+
|
25 |
+
listfortasks = ["""
|
26 |
+
Put the apple inside the drawer
|
27 |
+
""",
|
28 |
+
"""Open the door and put the banana on the table
|
29 |
+
"""]
|
|