File size: 123 Bytes
8cc1f9a
 
7514661
 
 
8b5d7d2
8cc1f9a
1
2
3
4
5
6
7
import gradio as gr

def model(params):
    return "hello world"

app = gr.Interface(fn=model, "text","text")
demo.launch()