LangChain - Chains and LCEL
Given the code:
What does
chain1 = ChainA()
chain2 = ChainB()
result = chain1 | chain2
output = result.run('input')What does
output represent?