Update app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,13 @@
|
|
1 |
import gradio as gr
|
2 |
-
|
|
|
|
|
3 |
def greet(name):
|
|
|
4 |
return "Hello " + name + "!!"
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
def greet(name):
|
6 |
+
|
7 |
return "Hello " + name + "!!"
|
8 |
+
|
9 |
+
|
10 |
+
|
11 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
12 |
+
|
13 |
+
iface.launch()
|