FredrikOseberg / react-chatbot-kit

MIT License
330 stars 159 forks source link

How can I access to the history chat? #152

Open CMara14 opened 1 year ago

CMara14 commented 1 year ago

I'm trying to use the message history so that depending on the last message, perform a certain action, but I'm not finding a way to access it.

greendinosaur commented 1 year ago

Hello. I don't know if this is the "best" way to extract the messages but I found that I can access the messages in the childrenprop sent to the MessageParser component that you need to provide. You can then access the messages using children?.props?.state?.messages. I've been doing this to send the messages through to a function in my ActionProvider component as I too need to see the history to determine the response.