I want to summarize a group chat in telegram.
“Get Chat” and other modules seem to just offer ‘last message seen’ not scoping to the entire group chat message history.
BizDev guys have demand for this, could be a monetizable template
I want to summarize a group chat in telegram.
“Get Chat” and other modules seem to just offer ‘last message seen’ not scoping to the entire group chat message history.
BizDev guys have demand for this, could be a monetizable template
It looks like your topic is missing some important information. Could you provide the following if applicable.
did you find a way ?
For Telegram bots, based on their official documentation, there isn’t an API to retrieve the entire chat history of a group. You could use Telegram Copilot to achieve this: https://www.npmjs.com/package/@telepilotco/n8n-nodes-telepilot.
For a bot, the simplest thing you can create is an action to ‘Get’ and then forward that chat to your own database or use a memory store. Even better, if it’s an important use case, just save it to a Vector Database.
Yeah so getting chat or channel are ok but what about group? I cannot find a trigger or action to retrieve chat content (message) from group.
All messages can be read by the Bot as long as your Bot has been made an Admin in that group and you set the Telegram Trigger in n8n to ‘All (*)’.
You can filter incoming message based on $message.chat.type event there is topic group inside it
ok got it. I miss the * option. Thanks @tridi