File size: 176 Bytes
a6de294
 
 
 
 
 
 
1
2
3
4
5
6
7
8
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()