Open
Description
Idea
- As of version
v0.4.0
, chat's with the bot are "synchronous" meaning it is a handshake process to get the bot to talk,
- It would be interesting to see how the bot can work asynchronously. That is, given access to chat in any channel that is not labeled as
private
on discord. - So, if there was a conversation between many people about something like TypeScript, bugs, etc, then the bot would try to figure out whether or not to join the chat.
- Essentially, it's message history becomes some arbitrary amount of messages when it decides to start talking.
Example?
...
user1: some message about some topic
user2: some message about the same topic
Discord bot: provides some message or input on the topic
...
Activity