Update app.py
Browse files
app.py
CHANGED
@@ -51,7 +51,7 @@ with gr.Blocks() as demo:
|
|
51 |
|
52 |
process_button = gr.Button("Generate Session Notes & Recommendations")
|
53 |
clear = gr.ClearButton(components=[user_input, chatbox, emotions, summary_notes, recommendations], value="Clear console")
|
54 |
-
process_button.click(summarize_and_recommend_process, inputs=[
|
55 |
|
56 |
|
57 |
demo.launch(debug=True, share=True)
|
|
|
51 |
|
52 |
process_button = gr.Button("Generate Session Notes & Recommendations")
|
53 |
clear = gr.ClearButton(components=[user_input, chatbox, emotions, summary_notes, recommendations], value="Clear console")
|
54 |
+
process_button.click(summarize_and_recommend_process, inputs=[chatbox], outputs=[summary_notes, recommendations])
|
55 |
|
56 |
|
57 |
demo.launch(debug=True, share=True)
|