Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -57,11 +57,12 @@ with gr.Blocks(theme=gr.themes.Soft()):
|
|
57 |
|
58 |
submit_btn.click(process_message, inputs=[text_input, chatbot], outputs=[chatbot, text_input])
|
59 |
|
60 |
-
gr.Interface(
|
61 |
fn=None,
|
62 |
inputs=None,
|
63 |
outputs=None,
|
64 |
title="ConvoLite",
|
65 |
theme=gr.themes.Soft(),
|
66 |
concurrency_limit=20,
|
67 |
-
)
|
|
|
|
57 |
|
58 |
submit_btn.click(process_message, inputs=[text_input, chatbot], outputs=[chatbot, text_input])
|
59 |
|
60 |
+
app = gr.Interface(
|
61 |
fn=None,
|
62 |
inputs=None,
|
63 |
outputs=None,
|
64 |
title="ConvoLite",
|
65 |
theme=gr.themes.Soft(),
|
66 |
concurrency_limit=20,
|
67 |
+
)
|
68 |
+
app.launch(show_api=False)
|