Update app.py
Browse files
app.py
CHANGED
@@ -52,6 +52,8 @@ def response(inp):
|
|
52 |
return outputText
|
53 |
|
54 |
gradio_interface = gradio.Interface(
|
55 |
-
fn=response
|
|
|
|
|
56 |
)
|
57 |
gradio_interface.launch()
|
|
|
52 |
return outputText
|
53 |
|
54 |
gradio_interface = gradio.Interface(
|
55 |
+
fn=response,
|
56 |
+
inputs = "text",
|
57 |
+
outputs = "text"
|
58 |
)
|
59 |
gradio_interface.launch()
|