LangChain - Chains and LCEL
Given this code:
What is the value of
lambda_runner = RunnableLambda(lambda x: x * 3) output = lambda_runner.invoke(4)
What is the value of
output?