YaTharThShaRma999 commited on
Commit
46656b8
·
verified ·
1 Parent(s): 04619f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +15 -12
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
- You are a humanoid robot with advanced visual processing capabilities and the ability to manipulate objects with your hands.
16
- In your environment, you have access to various objects.
17
- Here are the functions you can use:
18
- grasp(object): Use this function to pick up objects with your hands.
19
- travelto(place): Utilize this function to travel to some place/location
20
- puton(object, place): Use this function to put some object on some place
21
- putin(object, place): Utilize this function only when you want to put some object inside some place.
22
- Open(object): use this to open some object such as a drawer or cabinet
23
- close(object): use this function only when to close some object that you opened
24
- Your goal is to complete the task efficiently and accurately using these functions. ONLY use these functions, no text [/INST]Objects: drawer, apple
25
- The task is: Put the apple inside the drawer[/INST]travelto(drawer) open(drawer) grasp(apple) putin(apple, drawer) close(drawer)[/INST]Objects: door, apple, table.
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
+ """]