LangChain - RAG Chain Construction
Given the code snippet:
What is the expected output?
docs = ["Doc1 content", "Doc2 content"]
llm = SomeLLM()
rag_chain = LCEL.RAGChain.from_documents(docs, llm)
answer = rag_chain.run("What is in Doc1?")
print(answer)What is the expected output?
