Files
revanced-bots/bots/telegram/events/helper/aiResponse.js
GramingFoxTeam 0ba525c4a5 feat: GODEL AI
2022-12-25 12:49:16 +03:00

15 lines
253 B
JavaScript

export default {
name: 'aiResponse',
once: false,
async execute(bot, config, aiRes) {
const ids = aiRes.id.split('/');
bot.sendMessage(ids[0], aiRes.response, {
message_thread_id: ids[1],
reply_to_message_id: ids[2]
});
return;
}
};