Hi, I wonder is there any way to build a sequence of called tools? In the classic example that you have, there are tools "add" and "multiply" and the agent figures it out on its own which one to call, and when. I have 3 tools:
- Search in a database and get the JSON object
- Extract the Id from a JSON object
- Search in another database to get the details of by extracted Id.
I'm trying to specify the prompt like "search in the database and obtain the JSON object, then extract Id and then pass it to get the details" but the result is not reliable and not predictable. Is there any other way to explicit the connect called tools in a sequence, or specify the order of calling them?
Thanks!