File size: 178 Bytes
8937cd5
 
 
 
62cefd2
 
 
 
c44cc4f
1
2
3
4
5
6
7
8
9
#pip install gradio

import gradio as gr

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

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