Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,5 +3,5 @@ import gradio as gr
|
|
3 |
def model(params):
|
4 |
return "hello world"
|
5 |
|
6 |
-
|
7 |
demo.launch()
|
|
|
3 |
def model(params):
|
4 |
return "hello world"
|
5 |
|
6 |
+
app = gr.Interface(fn=model, "text","text")
|
7 |
demo.launch()
|