Materna commited on
Commit
b04ce2c
1 Parent(s): 51f66dd

Add application file

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def greet(name): return f"Hello {name}!!"
4
+
5
+ gr.Interface(fn=greet, inputs="text", outputs="text").launch()