Update app.py
Browse files
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(
|
| 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 |
|