WAppAI / assistant

A WhatsApp chatbot that leverages Bing AI's and others LLMs conversational capabilities.
MIT License
97 stars 34 forks source link

Private answers #288

Closed solution01 closed 6 months ago

solution01 commented 6 months ago

Hey guys.

Would it be possible to enable an option where I can block the bot from responding privately?

Luisotee commented 6 months ago

You can probably do it in src/message/index.ts by putting an early return like

if (!chat.isGroup) return streamingReply.edit("bot doesnt respond in private chats"); 

But I am not gonna add this since I think it's out of scope and similar results can be achieved by the block and while list

solution01 commented 6 months ago

You can probably do it in src/message/index.ts by putting an early return like

if (!chat.isGroup) return streamingReply.edit("bot doesnt respond in private chats"); 

But I am not gonna add this since I think it's out of scope and similar results can be achieved by the block and while list

It worked by putting this code

Thanks @Luisotee