fffiloni commited on
Commit
658f4cc
1 Parent(s): 3404f46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,7 +67,7 @@ with gr.Blocks(css=css) as demo:
67
 
68
  chatbot = gr.Chatbot([], elem_id="chatbot").style(height=350)
69
  with gr.Row():
70
- question = gr.Textbox(lable=None, placeholder="Type your question and hit Enter ")
71
  load_pdf.click(loading_pdf, None, langchain_status, queue=False)
72
  load_pdf.click(pdf_changes, pdf_doc, langchain_status, queue=False)
73
  question.submit(add_text, [chatbot, question], [chatbot, question]).then(
 
67
 
68
  chatbot = gr.Chatbot([], elem_id="chatbot").style(height=350)
69
  with gr.Row():
70
+ question = gr.Textbox(label="Question", placeholder="Type your question and hit Enter ")
71
  load_pdf.click(loading_pdf, None, langchain_status, queue=False)
72
  load_pdf.click(pdf_changes, pdf_doc, langchain_status, queue=False)
73
  question.submit(add_text, [chatbot, question], [chatbot, question]).then(