LangChain - Prompt Templates
Given this code snippet:
What will be the output?
from langchain.prompts import ChatPromptTemplate
prompt = ChatPromptTemplate.from_messages([
("system", "You are a helpful assistant."),
("user", "Hello, what is the weather today?")
])
print(prompt.format())What will be the output?
