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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -6
app.py CHANGED
@@ -119,12 +119,14 @@ with st.container():
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(
@@ -134,4 +136,5 @@ if __name__ == "__main__":
134
  title="PDF-Powered Chatbot"
135
  ).launch()
136
 
 
137
 
 
119
  txt = gr.Textbox(label="Enter your query", placeholder="Ask a question...")
120
  submit_btn = gr.Button('Submit')
121
 
122
+ # Event handler for submit button
123
+ submit_btn.click(
124
+ fn=add_text, inputs=[chatbot, txt], outputs=[chatbot], queue=False
125
+ ).success(
126
+ fn=generate_response, inputs=[chatbot, txt, pdf_upload1], outputs=[chatbot, txt]
127
+ ).success(
128
+ fn=render_file, inputs=[pdf_upload1], outputs=[show_img]
129
+ )
130
 
131
  if __name__ == "__main__":
132
  gr.Interface(
 
136
  title="PDF-Powered Chatbot"
137
  ).launch()
138
 
139
+
140