Spaces:
Building
Building
Update app.py
Browse files
app.py
CHANGED
@@ -373,7 +373,7 @@ with gr.Blocks() as demo:
|
|
373 |
history.append((question, answer))
|
374 |
return "", history
|
375 |
|
376 |
-
submit_button.click(chat, inputs=[question_input, chatbot], outputs=[question_input, chatbot])
|
377 |
|
378 |
extract_button = gr.Button("Extract Database to Excel")
|
379 |
excel_output = gr.File(label="Download Excel File")
|
|
|
373 |
history.append((question, answer))
|
374 |
return "", history
|
375 |
|
376 |
+
submit_button.click(chat, inputs=[question_input, chatbot, temperature_slider, top_p_slider, repetition_penalty_slider, web_search_checkbox], outputs=[question_input, chatbot])
|
377 |
|
378 |
extract_button = gr.Button("Extract Database to Excel")
|
379 |
excel_output = gr.File(label="Download Excel File")
|