Hi...I have ReAct agent with 2 tools. I want these tools in consecutive pipeline: 1st tool extracts some simple info, let's call it my_var from query (just string) and 2nd tool uses this my_var string to perform some operation. So... The issue is the following: sometimes LLM don't pass my_var to the 2nd tool and it raises an error. I suspect it because, sometimes, it calls 2nd tool before the 1st
So... my question is: is it possible to force use agents step by step?