File size: 160 Bytes
b02f05f
 
 
47ef377
b02f05f
5af8ffe
 
1
2
3
4
5
6
7
import gradio as gr

def greet(name):
    return "The price is wrong, " + name + "!"

demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()