Hi everyone
I’m building an automation in Make.com that analyzes articles from an RSS feed and determines if the content is about Artificial Intelligence, Notion, or Productivity. The goal is to automate the classification and summarization process using OpenAI.
Here’s what my scenario does:
1. RSS [1]: Retrieves new items from an RSS feed.
2. Tools [2]: Sets variables such as title and link.
3. HTTP [3]: Downloads the article file (HTML).
4. Text parser [4]: Converts HTML content to plain text.
5. OpenAI (Sobre IA?) [5]: Sends a prompt asking:
“Is the article about Artificial Intelligence, Notion or Productivity? The only valid answers are ‘yes’ or ‘no’. Respond with one word only.”
6. OpenAI (Crear resumen) [6]: If the result is “yes”, generate a short summary.
Problem I’m facing:
In module 5 (Sobre IA?), I’m getting the following error:
[429] Rate limit reached for gpt-4o
Limit: 30,000 TPM
Used: 23,393
Requested: 12,748
Please try again in 12.282s.
What I’ve tried:
• Using gpt-4o, which I have access to.
• I have ChatGPT Plus, but I understand the API is billed separately.
• Reduced max_tokens and set temperature to 0.
• Added an error handler with “Sleep and Retry”.
• Checked my token usage in the OpenAI dashboard.