valentin urena commited on
Commit
3172baf
·
verified ·
1 Parent(s): dca4e60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -79,8 +79,9 @@ with gr.Blocks(fill_height=True) as demo:
79
 
80
  # chess_png = gr.Image(play_match.display_board())
81
  with gr.Row():
82
- board_image = gr.HTML(play_match.display_board())
83
- game_logs = gr.Label(label="Game Logs")
 
84
  with gr.Column():
85
  chat_interface.render()
86
 
 
79
 
80
  # chess_png = gr.Image(play_match.display_board())
81
  with gr.Row():
82
+ with gr.Column():
83
+ board_image = gr.HTML(play_match.display_board())
84
+ game_logs = gr.Label(label="Game Logs")
85
  with gr.Column():
86
  chat_interface.render()
87