Ali2206 commited on
Commit
e25e0f7
·
verified ·
1 Parent(s): ecaf6bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -92,13 +92,13 @@ def create_ui(agent):
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
 
 
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