LangChain - Prompt Templates
Given the code snippet:
What will be printed?
from langchain import PromptTemplate
template = PromptTemplate(template="Hello {user}", input_variables=["user"])
prompt = template.format(user="Alice")
print(prompt)What will be printed?
