Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -3,5 +3,5 @@ import gradio as gr
|
|
3 |
def response(message):
|
4 |
return "Hello " + message + "!!"
|
5 |
|
6 |
-
iface = gr.Interface(fn=
|
7 |
iface.launch()
|
|
|
3 |
def response(message):
|
4 |
return "Hello " + message + "!!"
|
5 |
|
6 |
+
iface = gr.Interface(fn=response, inputs="text", outputs="text")
|
7 |
iface.launch()
|