Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -112,5 +112,5 @@ with gr.Blocks() as demo:
|
|
112 |
upvote_btn.click(vote_up_model, [state, chatbot], [chatbot])
|
113 |
downvote_btn.click(vote_down_model, [state, chatbot], [chatbot])
|
114 |
clear_btn.click(lambda _: chatbot.clear(), inputs=[], outputs=[chatbot])
|
115 |
-
demo.
|
116 |
demo.launch(share=True, server_name='0.0.0.0', server_port=7860)
|
|
|
112 |
upvote_btn.click(vote_up_model, [state, chatbot], [chatbot])
|
113 |
downvote_btn.click(vote_down_model, [state, chatbot], [chatbot])
|
114 |
clear_btn.click(lambda _: chatbot.clear(), inputs=[], outputs=[chatbot])
|
115 |
+
demo.queue()
|
116 |
demo.launch(share=True, server_name='0.0.0.0', server_port=7860)
|