LangChain - Chains and LCEL
Given the following code snippet in LangChain:
What happens when
chain1 = SomeChain()
chain2 = AnotherChain()
result = chain1 | chain2
output = result.run('input data')What happens when
result.run('input data') is called?