Introducing Agents in Haystack: Make LLMs resolve complex tasks
haystack.deepset.ai
Introducing Agents in Haystack: Make LLMs resolve complex tasks
1–10 of 106 posts
Re: Introducing Agents in Haystack: Make LLMs resolve complex tasks
#2Re: Introducing Agents in Haystack: Make LLMs resolve complex tasks
#3Re: Introducing Agents in Haystack: Make LLMs resolve complex tasks
#4Could someone in the know compare this with LangChain ( https://github.com/hwchase17/langchain )?
Re: Introducing Agents in Haystack: Make LLMs resolve complex tasks
#5Could someone in the know compare this with LangChain ( https://github.com/hwchase17/langchain )?
Re: Introducing Agents in Haystack: Make LLMs resolve complex tasks
#6Re: Introducing Agents in Haystack: Make LLMs resolve complex tasks
#7>Agent: (since 1.15) An Agent is a component that is powered by an LLM, such as GPT-3. It can decide on the next best course of action so as to get to the result of a query. It uses the Tools available to it to achieve this. While a pipeline has a clear start and end, an Agent is able to decide whether the query has resolved or not. It may also make use of a Pipeline as a Tool.
Emphasis mine. Having tinkered with LangChain I think the idea of a recursive and/or graph-oriented model is going to yield interesting phenomena in the overall feel of these language models. LangChain agents are already super impressive.
Re: Introducing Agents in Haystack: Make LLMs resolve complex tasks
#8Re: Introducing Agents in Haystack: Make LLMs resolve complex tasks
#9Is there some way of holding the LLM response to a given prompt constant? It sounds like a lot of this relies on the LLM getting the right answer in sequence, so I'm guessing they do something like keep the temperature at 0? Otherwise you are going to wind up with possibly different behavior run-to-run. And even if they do have something like the above, don't we end up with potentially breaking changes once models ar…