Facebook Watch comment module often shows similar comments repeatedly

I am using the Facebook Watch comments module with ChatGPT to create replies to comments. However, there’s an issue: it often selects the same comment or comment ID repeatedly. I want to add a filter so it doesn’t select the same comment again once it’s already been used.

Hi,
You can implement a data store that keeps track of the Comment IDs already used. Whenever a new comment needs to be processed, check against this data store first.
If the Comment ID is found, then skip it…if not, proceed and add that Comment ID to your data store for future checks