yvoievid
Initial commit
a6de294
raw
history blame
176 Bytes
import gradio as gr
def greet(name):
return "May the force will be with you, " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()