daniloedu commited on
Commit
82cfa5d
·
verified ·
1 Parent(s): 839e5e8

Adding text

Browse files

Adding text to the app

Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -9,6 +9,12 @@ def launch(input):
9
  out = pipe(input)
10
  return out[0]['generated_text']
11
 
 
 
 
 
 
 
12
  iface = gr.Interface(launch,
13
  inputs=gr.Image(type='pil'),
14
  outputs="text")
 
9
  out = pipe(input)
10
  return out[0]['generated_text']
11
 
12
+ gr.Markdown(
13
+ """
14
+ # Hello World!
15
+ Start typing below to see the output.
16
+ """)
17
+
18
  iface = gr.Interface(launch,
19
  inputs=gr.Image(type='pil'),
20
  outputs="text")