frankrobotics's picture
Update app.py
94082cb verified
raw
history blame
144 Bytes
import gradio as gr
def model(params):
return "hello world"
app = gr.Interface(fn=model, inputs="textbox", outputs="textbox")
app.launch()