Update app.py
Browse files
app.py
CHANGED
@@ -100,6 +100,7 @@ with gr.Blocks() as demo:
|
|
100 |
upload_status = gr.Textbox(label="Upload Status")
|
101 |
upload_button.click(upload_pdf, inputs=[pdf_upload], outputs=[upload_status])
|
102 |
path_button = gr.Button("Get PDF Path")
|
|
|
103 |
chatbot_interface = gr.Chatbot()
|
104 |
msg = gr.Textbox()
|
105 |
clear = gr.Button("Clear")
|
|
|
100 |
upload_status = gr.Textbox(label="Upload Status")
|
101 |
upload_button.click(upload_pdf, inputs=[pdf_upload], outputs=[upload_status])
|
102 |
path_button = gr.Button("Get PDF Path")
|
103 |
+
pdf_path_display = gr.Textbox(label="Current PDF Path")
|
104 |
chatbot_interface = gr.Chatbot()
|
105 |
msg = gr.Textbox()
|
106 |
clear = gr.Button("Clear")
|