LangChain - Prompt Templates
Given the code:
What will be printed?
from langchain.prompts import PromptTemplate
prompt = PromptTemplate(template="Welcome, {user}!")
result = prompt.format(user="Alice")
print(result)What will be printed?
