LangChain - RAG Chain Construction
Given the code snippet:
What type of output should 'result' contain?
from langchain.chains import LCEL
llm = SomeLLM()
retriever = SomeRetriever()
rag_chain = LCEL.from_retriever(llm, retriever)
result = rag_chain.run('What is Langchain?')What type of output should 'result' contain?
