lcipolina commited on
Commit
e578f77
·
verified ·
1 Parent(s): db7d68f

Fixed typo

Browse files
Files changed (1) hide show
  1. ui/gradio_config_generator.py +1 -1
ui/gradio_config_generator.py CHANGED
@@ -155,7 +155,7 @@ def start_game_interactive(
155
  response = player_to_agent[cur](obs[cur])
156
  a, reasoning = _extract_action_and_reasoning(response)
157
  actions = {cur: a}
158
- log.append(f"Player {cur} (auto) chooses {a}")
159
  if reasoning and reasoning != "None":
160
  prev = reasoning[:100]
161
  if len(reasoning) > 100:
 
155
  response = player_to_agent[cur](obs[cur])
156
  a, reasoning = _extract_action_and_reasoning(response)
157
  actions = {cur: a}
158
+ log.append(f"Player {cur} chooses {a}")
159
  if reasoning and reasoning != "None":
160
  prev = reasoning[:100]
161
  if len(reasoning) > 100: