I have set up an automated system on Make.com to reply to Instagram comments. The system detects incoming comments, generates a response using OpenAI, and then posts the reply to the relevant comment. However, instead of replying only once per comment, it keeps sending multiple responses repeatedly without stopping.
The workflow I have implemented consists of the following steps:
- Instagram for Business (Facebook Login) - Watch Events: Detects new comments.
- Google Sheets - Add a Row: Logs the comments in a Google Sheets file.
- OpenAI (ChatGPT) - Create a Completion: Generates a response based on the comment.
- Google Sheets - Add a Row: Saves the generated response.
- Instagram for Business (Facebook Login) - Create a Reply: Posts the reply to the comment.
ISSUE:
- The system is sending multiple replies to the same comment, causing it to loop continuously.
- I need a way to ensure that each comment receives only one reply.
I would appreciate guidance on how to implement a filtering or control mechanism to prevent repeated responses.