fix
Browse files
app.py
CHANGED
|
@@ -25,4 +25,9 @@ with gr.Blocks(title="Agentic RAG Demo") as demo:
|
|
| 25 |
|
| 26 |
|
| 27 |
if __name__ == "__main__":
|
| 28 |
-
demo.launch(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
|
| 26 |
|
| 27 |
if __name__ == "__main__":
|
| 28 |
+
demo.launch(
|
| 29 |
+
server_name="0.0.0.0",
|
| 30 |
+
server_port=7860,
|
| 31 |
+
prevent_thread_lock=True,
|
| 32 |
+
show_error=True,
|
| 33 |
+
)
|