Update app.py
Browse files
app.py
CHANGED
@@ -92,13 +92,13 @@ def create_ui(agent):
|
|
92 |
|
93 |
send_button.click(
|
94 |
fn=handle_chat,
|
95 |
-
inputs=[message_input,
|
96 |
outputs=[summary_box, studies_box, interactions_box, kinetics_box]
|
97 |
)
|
98 |
|
99 |
message_input.submit(
|
100 |
fn=handle_chat,
|
101 |
-
inputs=[message_input,
|
102 |
outputs=[summary_box, studies_box, interactions_box, kinetics_box]
|
103 |
)
|
104 |
|
|
|
92 |
|
93 |
send_button.click(
|
94 |
fn=handle_chat,
|
95 |
+
inputs=[message_input, temperature, max_new_tokens, max_tokens, multi_agent, conversation_state, max_round],
|
96 |
outputs=[summary_box, studies_box, interactions_box, kinetics_box]
|
97 |
)
|
98 |
|
99 |
message_input.submit(
|
100 |
fn=handle_chat,
|
101 |
+
inputs=[message_input, temperature, max_new_tokens, max_tokens, multi_agent, conversation_state, max_round],
|
102 |
outputs=[summary_box, studies_box, interactions_box, kinetics_box]
|
103 |
)
|
104 |
|