rishav09
commited on
Commit
·
0bc82f9
1
Parent(s):
9cc7272
updated the values.
Browse files
app.py
CHANGED
@@ -4,7 +4,7 @@ import gradio as gr
|
|
4 |
|
5 |
def greet(name):
|
6 |
"""Initialize intro."""
|
7 |
-
return "Hello" + name + "!!"
|
8 |
|
9 |
|
10 |
iface = gr.Interface(fn=greet, inputs='text', outputs='text')
|
|
|
4 |
|
5 |
def greet(name):
|
6 |
"""Initialize intro."""
|
7 |
+
return "Hello " + name + "!!"
|
8 |
|
9 |
|
10 |
iface = gr.Interface(fn=greet, inputs='text', outputs='text')
|