LangChain - Prompt Templates
Given the code:
What is the value of
template = PromptTemplate(template="Hello {user}, your order {order_id} is ready.", input_variables=["user", "order_id"])
result = template.format(user="Bob", order_id=123)What is the value of
result?