Jaehan commited on
Commit
9a9d11b
·
1 Parent(s): cfcd64c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -12,4 +12,5 @@ def generate(text):
12
  return response
13
 
14
  in_text = gr.Textbox(lines=1, label="English", placeholder="English text here")
15
- out = gr.Textbox(lines=1, inputs=in_text, outputs=out).launch()
 
 
12
  return response
13
 
14
  in_text = gr.Textbox(lines=1, label="English", placeholder="English text here")
15
+ out = gr.Textbox(lines=1, label="Generated tensors"
16
+ gr.Interface(generate, inputs=in_text, outputs=out).launch()