Spaces:
Sleeping
Sleeping
kiranmadhusud commited on
Commit ·
6d05025
1
Parent(s): 5933ec9
fix launch error
Browse files
app.py
CHANGED
|
@@ -63,4 +63,9 @@ with gr.Blocks(title="📚 RAG App — No API Key") as demo:
|
|
| 63 |
ask_btn.click(chat, inputs=[query_box, chatbot], outputs=chatbot)
|
| 64 |
query_box.submit(chat, inputs=[query_box, chatbot], outputs=chatbot)
|
| 65 |
|
| 66 |
-
demo.launch(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
ask_btn.click(chat, inputs=[query_box, chatbot], outputs=chatbot)
|
| 64 |
query_box.submit(chat, inputs=[query_box, chatbot], outputs=chatbot)
|
| 65 |
|
| 66 |
+
demo.launch(
|
| 67 |
+
server_name="0.0.0.0",
|
| 68 |
+
server_port=7860,
|
| 69 |
+
ssr_mode=False,
|
| 70 |
+
show_error=True,
|
| 71 |
+
quiet=False)
|