Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -356,8 +356,8 @@ When citing search results, mention the source, and ensure your answer reflects
|
|
356 |
chatbot = gr.Chatbot(
|
357 |
height=500,
|
358 |
show_label=False,
|
359 |
-
container=True
|
360 |
-
|
361 |
)
|
362 |
|
363 |
# Add Deep Research toggle and status display
|
@@ -438,4 +438,5 @@ When citing search results, mention the source, and ensure your answer reflects
|
|
438 |
# Run interface
|
439 |
if __name__ == "__main__":
|
440 |
demo = create_deepseek_interface()
|
441 |
-
demo.
|
|
|
|
356 |
chatbot = gr.Chatbot(
|
357 |
height=500,
|
358 |
show_label=False,
|
359 |
+
container=True
|
360 |
+
# Remove type specification to use default
|
361 |
)
|
362 |
|
363 |
# Add Deep Research toggle and status display
|
|
|
438 |
# Run interface
|
439 |
if __name__ == "__main__":
|
440 |
demo = create_deepseek_interface()
|
441 |
+
demo.queue() # Enable queue explicitly
|
442 |
+
demo.launch(debug=True, share=False, server_name="0.0.0.0", server_port=7860, ssr_mode=False)
|