New ask Hacker News story: LLM Agents: How to make an agent use multiple tools in conjunction

LLM Agents: How to make an agent use multiple tools in conjunction
2 by warthog | 1 comments on Hacker News.
I have been playing around with agents and tools using Langhchain, Claude and OpenAI. Some of the tasks I prompt are similar to: `Generate an investment memo on Tesla` So the agent has access to search tools and financial APIs from Yahoo. What it needs to do theoretically for this prompt is first fetch updated live data and then search for recent news perhaps and then use the LLMChain and Default LLM tool to generate an investment memo that will incorporate the findings. What actually happens instead: It uses only one tool. Then the data is outdated. The same idea applies to a lot of things. Did anyone figure out how to chain tools like this?

Comments