Commit ·
9cc63b5
1
Parent(s): a90f1c4
Remove unnecessary blank line in app.py for cleaner code
Browse files
app.py
CHANGED
|
@@ -52,7 +52,6 @@ with gr.Blocks(theme=theme, title="ReXplore Summarizer", fill_height=True) as ap
|
|
| 52 |
with gr.Row():
|
| 53 |
summary = gr.TextArea(label="Summary", placeholder="The generated summary will be displayed here", lines=7, interactive=False, show_copy_button=True)
|
| 54 |
mindmap = gr.TextArea(label="Mindmap", placeholder="The generated mindmap will be displayed here", lines=7, interactive=False, show_copy_button=True)
|
| 55 |
-
|
| 56 |
summarize_btn.click(
|
| 57 |
rexplore_summarizer,
|
| 58 |
inputs=[url, title, id, citation, access_key],
|
|
|
|
| 52 |
with gr.Row():
|
| 53 |
summary = gr.TextArea(label="Summary", placeholder="The generated summary will be displayed here", lines=7, interactive=False, show_copy_button=True)
|
| 54 |
mindmap = gr.TextArea(label="Mindmap", placeholder="The generated mindmap will be displayed here", lines=7, interactive=False, show_copy_button=True)
|
|
|
|
| 55 |
summarize_btn.click(
|
| 56 |
rexplore_summarizer,
|
| 57 |
inputs=[url, title, id, citation, access_key],
|