What does this runnable sequence print?

from LangChain
LangChain 1.4.0 beginner 2 min

What does this runnable sequence print?

Python
from langchain_core.runnables import RunnableLambda

normalize = RunnableLambda(lambda text: text.strip().lower())
label = RunnableLambda(lambda text: f"route:{text}")
chain = normalize | label

print(chain.invoke(" Billing "))
Open in playground
Report an error