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