philipp-zettl commited on
Commit
68a79d8
·
verified ·
1 Parent(s): 54a1f60

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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
- img = gr.Image()
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", ],