duchaba commited on
Commit
e409c36
·
verified ·
1 Parent(s): c9467b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -529,4 +529,9 @@ if __name__ == "__main__":
529
  hanna.fname_requirements = 'requirements.txt'
530
  hanna.print_info_self()
531
  #
 
 
 
532
 
 
 
 
529
  hanna.fname_requirements = 'requirements.txt'
530
  hanna.print_info_self()
531
  #
532
+ import gradio
533
+ def greet(name):
534
+ return "Hello " + name + "!!"
535
 
536
+ demo = gradio.Interface(fn=greet, inputs="text", outputs="text")
537
+ demo.launch()