Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
-
def greet(
|
| 4 |
-
return "Salam" +
|
| 5 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 6 |
demo.launch()
|
| 7 |
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
|
| 3 |
+
def greet(Name):
|
| 4 |
+
return "Salam " + Name + "!!"
|
| 5 |
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
| 6 |
demo.launch()
|
| 7 |
|