Spaces:
Runtime error
Runtime error
import gradio as gr | |
def model(params): | |
return "hello world" | |
app = gr.Interface(fn=model, inputs="textbox", outputs="textbox") | |
app.launch() |