My scenario needs to find keywords within emails. The matching cannot be exact, though. The emails can contain multiple variations of the keywords.
So, I thought of using AI. On my limited testing sample, it doesn’t fail.
The original scenario ran an API call for each keyword in a Google Sheet. This way, it consumed lots of operations and API credits.
So, I though of combining the keywords into a JSON string and run a single prompt on the JSON. For now it seems to work.
The JSON is very simple, every item has two keys: email address, keyword.
The prompt just checks if some variation of the keyword is contained in the email. If so, it send forwards to email to the corresponding email address.
Do you think it is reliable?
Here’s the blueprint
blueprint (8).json (90.4 KB)