FredrikOseberg / react-chatbot-kit

MIT License
297 stars 139 forks source link

How can I access to the history chat? #152

Open CMara14 opened 10 months ago

CMara14 commented 10 months 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 9 months 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.