seratch / ChatGPT-in-Slack

Swift demonstration of how to build a Slack app that enables end-users to interact with a ChatGPT bot
MIT License
437 stars 162 forks source link

No replies in threads #69

Closed Tim-KH closed 8 months ago

Tim-KH commented 8 months ago

When mentioning the bot in a channel the event app_mention is correctly triggered and i get a response by the bot, but my following messages in the resulting thread are ignored by the bot.

Im running SLACK_APP_LOG_LEVEL=DEBUG, but sending messages in a thread does not even log anything.

My Slack APP allowed scopes are:

app_mentions:read channels:history channels:read chat:write chat:write.public groups:history groups:read im:history im:read im:write mpim:history mpim:read users:read

Socket Mode is activated

The live demo by you works fine, just my local instance seems to have this problem - Any clue what could be happening?

seratch commented 8 months ago

Double-check if your app manifest enables all the events listed here: https://github.com/seratch/ChatGPT-in-Slack/blob/main/manifest-dev.yml

Tim-KH commented 8 months ago

Wow, sorry for making you take time out your day to show me such a simple thing... Its working now as expected! Thank you very much