Spaces:
Sleeping
Sleeping
Fixed typo
Browse files
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}
|
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:
|