from chatterbot import ChatBot
# Create a new chat bot named Charlie
chatbot = ChatBot('Charlie')
what is the use of the bot's name "Charlie"? Can my chatbot know his name in a group chat, and only reply message about him?
-- "Hi, Charlie"
- bot: "Hi"
-- "Charlie, tell me the time"
- bot: "It's nine o'clock"
-- "how are you?"
- ...
I have read the doc but find nothing about it, say thanks advanced if you guys tell me how to approach it.