If you need more control over API parameters, use the HTTP Request node to directly call the OpenAI-compatible API, which would allow you to include custom parameters in the request body.
You can use the HTTP Request node either as a standalone node or as a tool within your agent workflow to make custom API calls with parameters not supported by the built-in AI nodes.
Headers:
Content-Type: application/json
Authorization: Bearer YOUR_API_KEY(recommend use heade r Auth instead).
Unfortunately, there’s no option to add this directly..
Hopefully in the future there will be an additional option to include custom configurations..
However, if you’re familiar with LangChain, you can add a LangChain Code node and replicate the AI Agent node inputs/outputs and include enable_thinking but this approach requires coding and some LangChain knowledge and it’s not very flexible in the end..