Comment out CSV file input in app.py to streamline data handling following recent refactor to JSON. This change enhances clarity and aligns with the updated data structure.
Browse files
app.py
CHANGED
|
@@ -114,6 +114,6 @@ with demo:
|
|
| 114 |
|
| 115 |
gr.Markdown(AUTHORS, elem_classes="markdown-text")
|
| 116 |
|
| 117 |
-
csv = gr.File(interactive=False, value="output.csv", visible=True)
|
| 118 |
|
| 119 |
demo.queue(default_concurrency_limit=40).launch()
|
|
|
|
| 114 |
|
| 115 |
gr.Markdown(AUTHORS, elem_classes="markdown-text")
|
| 116 |
|
| 117 |
+
# csv = gr.File(interactive=False, value="output.csv", visible=True)
|
| 118 |
|
| 119 |
demo.queue(default_concurrency_limit=40).launch()
|