I created a flow with make, which takes a URL from an RSS feed and rewrites the article. I used GPT-4O API, why don’t he navigate and read the article? How can I solve? He currently only reads the title of the RSS feed and totally invent the content.
Welcome to the Make community!
GPT-4o model does not have web access.
You should use Dumpling AI instead, which can fetch content from the web.
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
Use the HTTP module to GET the content of the RSS Feed and map the description as the main content of the article. If a description is not available on the RSS feed you need to run the HTTP module with the URL of the original article page. From there you can have GPT interpret the HTML page. You could clean the code up if you wish so that it uses up less tokens. This can be done with a text parser and some inline functions.
But be aware that many sites have protections against scraping so you might be blocked. In this case use a scraping tool like scrape ninja or as @samliew suggested DumplingAI.
Hope this Helps!