AEUPH commited on
Commit
bfe0eca
·
verified ·
1 Parent(s): de864d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -135,7 +135,7 @@ def create_interface():
135
  state_dict = safe_convert_single_to_double_quotes(current_state)
136
  sl_navigator = SecondLifeNavigator()
137
  # Pass the corrected and parsed JSON to determine_action_sequence
138
- action_sequence = sl_navigator.determine_action_sequence(state_dict) # Use state_dict instead of current_state directly
139
  random_id = str(uuid.uuid4())
140
  return random_id + ": " + action_sequence
141
 
 
135
  state_dict = safe_convert_single_to_double_quotes(current_state)
136
  sl_navigator = SecondLifeNavigator()
137
  # Pass the corrected and parsed JSON to determine_action_sequence
138
+ action_sequence = sl_navigator.determine_action_sequence() # Use state_dict instead of current_state directly
139
  random_id = str(uuid.uuid4())
140
  return random_id + ": " + action_sequence
141