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