Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -159,4 +159,10 @@ with gr.Blocks(
|
|
159 |
clear_btn.click(clear_all, outputs=[summary_output, question_input, answer_output])
|
160 |
|
161 |
if __name__ == "__main__":
|
162 |
-
demo.launch(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
159 |
clear_btn.click(clear_all, outputs=[summary_output, question_input, answer_output])
|
160 |
|
161 |
if __name__ == "__main__":
|
162 |
+
demo.launch(
|
163 |
+
show_error=True,
|
164 |
+
share=True,
|
165 |
+
server_name="0.0.0.0",
|
166 |
+
server_port=7860
|
167 |
+
)
|
168 |
+
|