parseny commited on
Commit
2e91337
1 Parent(s): b7b1610

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -34,8 +34,8 @@ output_textbox = gr.outputs.Textbox(label="Generated Text")
34
 
35
  demo = gr.Interface(
36
  fn=generate,
37
- inputs=input_textbox,
38
- outputs=output_textbox,
39
  examples=examples
40
  )
41
 
 
34
 
35
  demo = gr.Interface(
36
  fn=generate,
37
+ inputs=gr.Textbox(lines=5, label="Input Text"),
38
+ outputs=gr.Textbox(label="Generated Text"),
39
  examples=examples
40
  )
41