LangChain - Prompt Templates
Given this code snippet:
What will be printed?
from langchain.prompts import ChatPromptTemplate
prompt = ChatPromptTemplate.from_template('Hi {user}! How can I help you today?')
message = prompt.format_prompt(user='Alice').to_messages()
print(message[0].content)What will be printed?
