🔥Quickstart
Currently we have support only for LangChain Retriever.
LangChainRetriever doesn't require any specific configuration from user
Important Note: A Retriever component is never used alone because it is depended on prompt engine, model and atleast any one of these two components vectordb or memory.
You can look more into prompt engine component to know why do you have to provide atleast any one of the component vectordb or memory. In short, The prompt engine component decides which prompt template to be used based on the availability of components.
Here is a small example of retriever along with its dependent components.
Last updated