Spaces:
Runtime error
Runtime error
valentin urena
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -83,7 +83,9 @@ chat_interface = gr.ChatInterface(
|
|
| 83 |
|
| 84 |
def display_text():
|
| 85 |
# Function to display some predefined text
|
| 86 |
-
|
|
|
|
|
|
|
| 87 |
|
| 88 |
with gr.Blocks(fill_height=True) as demo:
|
| 89 |
gr.Markdown(DESCRIPTION)
|
|
|
|
| 83 |
|
| 84 |
def display_text():
|
| 85 |
# Function to display some predefined text
|
| 86 |
+
seq = play_match.get_move_logs()
|
| 87 |
+
for move in seq:
|
| 88 |
+
yield move
|
| 89 |
|
| 90 |
with gr.Blocks(fill_height=True) as demo:
|
| 91 |
gr.Markdown(DESCRIPTION)
|