Spaces:
Sleeping
Sleeping
Commit
·
945c1d0
1
Parent(s):
133c793
Updated app.py
Browse files
app.py
CHANGED
|
@@ -160,7 +160,7 @@ css = """
|
|
| 160 |
.btn {background-color: #1d53d1;}
|
| 161 |
"""
|
| 162 |
|
| 163 |
-
with gr.Blocks(css=css
|
| 164 |
gr.Markdown("# Markdown-Based Q&A with Visualization")
|
| 165 |
with gr.Row():
|
| 166 |
file_input = gr.Files(file_types=[".md"], label="Upload Markdown Files")
|
|
@@ -189,4 +189,4 @@ with gr.Blocks(css=css,debug=True) as ui:
|
|
| 189 |
|
| 190 |
# Launch Gradio app
|
| 191 |
if __name__ == "__main__":
|
| 192 |
-
ui.launch()
|
|
|
|
| 160 |
.btn {background-color: #1d53d1;}
|
| 161 |
"""
|
| 162 |
|
| 163 |
+
with gr.Blocks(css=css) as ui:
|
| 164 |
gr.Markdown("# Markdown-Based Q&A with Visualization")
|
| 165 |
with gr.Row():
|
| 166 |
file_input = gr.Files(file_types=[".md"], label="Upload Markdown Files")
|
|
|
|
| 189 |
|
| 190 |
# Launch Gradio app
|
| 191 |
if __name__ == "__main__":
|
| 192 |
+
ui.launch(share=True)
|