frankrobotics's picture
Update app.py
b1ce122 verified
raw
history blame
122 Bytes
import gradio as gr
def model(params):
return "hello world"
app = gr.Interface(fn=model, "text","text")
app.launch()