plcedoz38 commited on
Commit
56f2efd
·
1 Parent(s): 530f5d3
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -166,7 +166,7 @@ from . import navigation
166
  task = "Book a hotel in Paris on August 3rd for 3 nights"
167
  prompt = navigation.get_navigation_prompt(task, image, step=1)
168
  navigation_str = run_inference(prompt)[0]
169
- navigation = NavigationStep(**json.loads(navigation_str))
170
  print(navigation)
171
  # Expected NavigationStep(note='', thought='I need to select the check-out date as August 3rd and then proceed to search for hotels.', action=ClickElementAction(action='click_element', element='August 3rd on the calendar', x=777, y=282))
172
  ```
 
166
  task = "Book a hotel in Paris on August 3rd for 3 nights"
167
  prompt = navigation.get_navigation_prompt(task, image, step=1)
168
  navigation_str = run_inference(prompt)[0]
169
+ navigation = navigation.NavigationStep(**json.loads(navigation_str))
170
  print(navigation)
171
  # Expected NavigationStep(note='', thought='I need to select the check-out date as August 3rd and then proceed to search for hotels.', action=ClickElementAction(action='click_element', element='August 3rd on the calendar', x=777, y=282))
172
  ```