minaa / app.py
Andrii
add app
10db947
raw
history blame contribute delete
139 Bytes
import gradio as gr
def greet(name):
return "hello"+name+"!!"
iface=gr.Interface(fn=greet, inputs='text', outputs='text')
iface.launch()