Make Automation Tip: GPT-4o vs GPT-4o Mini, Choosing an Optimization Model to Reduce API Costs

OpenAI offers a variety of AI models, such as o1, GPT-4o, GPT-4o Mini, and GPT-4 Turbo. Each model differs in performance, speed, and cost, and you can choose the right model based on your project’s requirements. Make.com is a powerful platform that makes it easy to implement automation using the OpenAI API. However, one thing … Read more

make error handler: How to use error break (break)

in make automation, the error handler break isresponsible for immediately abortingthe workflow when a fatal erroroccurs during the execution of a scenario. If an error occurs in a critical task, the break handler can be used to abort on death. you can add additional error handlers by right-clicking on the module to add an error … Read more

make error handler: How to use ignore for errors

Ignoreis an error handling option in Make.com that allows you to ignore an error andcontinue running your workflow. This option is designed so that if a particular action fails, it doesn’t affect subsequent actions or the entire workflow. What does Ignore do? When to useIgnore When you should use Ignore: Examples of usingIgnore example 1:When … Read more