File size: 197 Bytes
d852219
 
 
 
 
ad5f139
d852219
18f9276
 
1
2
3
4
5
6
7
8
9
import gradio as gr

def greet(name):
    return "Hello " + name

gradio_app = gr.Interface(fn=greet, inputs="text", outputs="text",title="Demo")

if __name__ == "__main__":
    gradio_app.launch()