LangChain - Prompt Templates
What is wrong with this Langchain prompt template code?
from langchain import PromptTemplate
template = PromptTemplate(template="Welcome, {user}!")
output = template.format(username="Bob")
print(output)