Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -730,14 +730,14 @@ with gr.Blocks(theme=gr.themes.Default()) as demo:
|
|
730 |
process_button.click(
|
731 |
handle_pdf_process,
|
732 |
inputs=[pdf_input, format_type, context_size],
|
733 |
-
outputs=dict
|
734 |
-
progress_status
|
735 |
-
processed_text
|
736 |
-
pdf_content
|
737 |
-
snippets
|
738 |
-
snippet_selector
|
739 |
-
download_files
|
740 |
-
|
741 |
)
|
742 |
|
743 |
generate_prompt_btn.click(
|
|
|
730 |
process_button.click(
|
731 |
handle_pdf_process,
|
732 |
inputs=[pdf_input, format_type, context_size],
|
733 |
+
outputs=[ # List of outputs, not dict
|
734 |
+
progress_status,
|
735 |
+
processed_text,
|
736 |
+
pdf_content,
|
737 |
+
snippets,
|
738 |
+
snippet_selector,
|
739 |
+
download_files
|
740 |
+
]
|
741 |
)
|
742 |
|
743 |
generate_prompt_btn.click(
|