nickmuchi commited on
Commit
6781233
·
1 Parent(s): 86eeebb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -145,8 +145,8 @@ with block:
145
  agent_state = gr.State()
146
 
147
 
148
- submit.click(chat, inputs=[chain, message, state, agent_state], outputs=[chatbot, state])
149
- message.submit(chat, inputs=[chain, message, state, agent_state], outputs=[chatbot, state])
150
 
151
  gr.Markdown("![visitor badge](https://visitor-badge.glitch.me/badge?page_id=nickmuchi-investor-chatchain)")
152
 
 
145
  agent_state = gr.State()
146
 
147
 
148
+ submit.click(chat, inputs=[message, state, agent_state], outputs=[chatbot, state])
149
+ message.submit(chat, inputs=[message, state, agent_state], outputs=[chatbot, state])
150
 
151
  gr.Markdown("![visitor badge](https://visitor-badge.glitch.me/badge?page_id=nickmuchi-investor-chatchain)")
152