File size: 167 Bytes
f8e6159
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import gradio


def main(name):
    return '<h1>Hello world!</h1>'


interface = gradio.Interface(fn=main, inputs='text', outputs='text')
interface.launch(share=True)