Nikhil0987 commited on
Commit
9504048
·
verified ·
1 Parent(s): ee09c62

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -10
app.py CHANGED
@@ -83,7 +83,6 @@ def render_first(pdf_file):
83
  return image
84
 
85
  # Streamlit & Gradio Interface
86
-
87
 
88
  st.title("PDF-Powered Chatbot")
89
 
@@ -120,14 +119,12 @@ with st.container():
120
  txt = gr.Textbox(label="Enter your query", placeholder="Ask a question...")
121
  submit_btn = gr.Button('Submit')
122
 
123
- submit_btn.click(
124
- fn=add_text, inputs=[chatbot, txt], outputs=[chatbot], queue=False
125
- ).success(
126
- # How do you want to use the different uploads here?
127
- fn=generate_response, inputs=[chatbot, txt, pdf_upload1], outputs=[chatbot, txt]
128
- ).success(
129
- fn=render_file, inputs=[pdf_upload1], outputs=[show_img]
130
- )
131
 
132
  if __name__ == "__main__":
133
  gr.Interface(
@@ -135,5 +132,6 @@ if __name__ == "__main__":
135
  [pdf_upload1, chatbot, txt, pdf_upload2, pdf_upload3],
136
  [show_img, chatbot, txt], # Assuming you want to display initially
137
  title="PDF-Powered Chatbot"
138
- ).launch()
 
139
 
 
83
  return image
84
 
85
  # Streamlit & Gradio Interface
 
86
 
87
  st.title("PDF-Powered Chatbot")
88
 
 
119
  txt = gr.Textbox(label="Enter your query", placeholder="Ask a question...")
120
  submit_btn = gr.Button('Submit')
121
 
122
+ # Modified event handler for submit button
123
+ @submit_btn.capture()
124
+ def on_submit():
125
+ add_text(chatbot, txt)
126
+ generate_response(chatbot, txt, pdf_upload1)
127
+ render_file(pdf_upload1)
 
 
128
 
129
  if __name__ == "__main__":
130
  gr.Interface(
 
132
  [pdf_upload1, chatbot, txt, pdf_upload2, pdf_upload3],
133
  [show_img, chatbot, txt], # Assuming you want to display initially
134
  title="PDF-Powered Chatbot"
135
+ ).launch()
136
+
137