Thebull commited on
Commit
0f32399
·
verified ·
1 Parent(s): 4fbdcc7

Upload App.txt

Browse files
Files changed (1) hide show
  1. App.txt +1 -0
App.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ import gradio as gr def greet(name): return "Hello " + name + "!!" iface = gr.Interface(fn=greet, inputs="text", outputs="text") iface.launch()