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

def model(params):
    return "hello world"

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