Hey folks, I’m trying to figure out if there’s a way to enable Deep Research automatically in my workflow. I know I can pick the model in a Zapier action, but I’m wondering if it’s possible to turn on Deep Research through a zap or some kind of RPA setup.
I’ve been playing around with different automations, but I’m stumped on this one. Has anyone managed to do this? I’d really appreciate any tips or tricks you might have!
Here’s a quick example of what I’m thinking:
def trigger_deep_research(automation_tool):
if automation_tool == 'zapier':
# Zapier specific code here
pass
elif automation_tool == 'make':
# Make specific code here
pass
else:
print('Unsupported automation tool')
# Call the function
trigger_deep_research('zapier')
Any ideas on how to make this work? Thanks in advance for your help!
In my experience, there isn’t a direct switch to enable Deep Research through Zapier or Make, but there is a method that can work. I managed to create a solution by using custom API calls within your automation tool. You can configure a custom API request that targets the specific endpoint with the Deep Research parameter. This approach does require some familiarity with JSON and careful testing based on the API documentation. Although it isn’t as simple as clicking a button, it has proven to be effective when the setup is done correctly.
I’ve encountered this issue in my projects as well. While there’s no direct toggle for Deep Research in Zapier or Make, I’ve found a workaround using webhook integrations. By setting up a webhook that sends a POST request to the relevant API endpoint with the Deep Research parameter included, you can effectively ‘activate’ it within your workflow. This method requires some initial setup and API knowledge, but it’s quite reliable once implemented. Just ensure you’re handling the API responses correctly in your automation to avoid any unexpected behavior.
hey there! i’ve been messing with this too. as far as i know, you cant directly toggle deep research through zapier or make. but you could try using their APIs to send a request that includes the deep research parameter. might need some custom coding tho. good luck!