File size: 152 Bytes
bc16b18
0c65406
bc16b18
 
0c65406
bc16b18
 
1
2
3
4
5
6
7
8
import gradio as gr

def say_hello():
    return "Hello World!"

interface = gr.Interface(fn=say_hello, inputs=None, outputs="text")
interface.launch()