deneme / app.py
MelikeDulkadir's picture
Update app.py (#1)
deabc42
raw
history blame contribute delete
No virus
158 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "Welcome!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()