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 |
-
app = gr.Interface(fn=model, "
|
7 |
app.launch()
|
|
|
3 |
def model(params):
|
4 |
return "hello world"
|
5 |
|
6 |
+
app = gr.Interface(fn=model, inputs="textbox", outputs="textbox")
|
7 |
app.launch()
|