Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -50,10 +50,10 @@ with gr.Blocks() as demo:
|
|
50 |
""")
|
51 |
prompt = gr.Text(label="PGN")
|
52 |
output = gr.Text(label="Next turn", interactive=False)
|
53 |
-
|
54 |
submit = gr.Button("Submit")
|
55 |
-
submit.click(generate, [prompt], [output])
|
56 |
-
|
57 |
gr.Examples(
|
58 |
[
|
59 |
["1. e4", ],
|
|
|
50 |
""")
|
51 |
prompt = gr.Text(label="PGN")
|
52 |
output = gr.Text(label="Next turn", interactive=False)
|
53 |
+
img = gr.Image(width=500, height=500)
|
54 |
submit = gr.Button("Submit")
|
55 |
+
submit.click(generate, [prompt], [output, img])
|
56 |
+
|
57 |
gr.Examples(
|
58 |
[
|
59 |
["1. e4", ],
|