prototypeone / app.py
Nifdi Guliyev
app change
84a7dab
raw
history blame
159 Bytes
import gradio as gr
def greet(name):
return "Sike " + name + "you thought!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()