LangChain - Prompt Templates
What will happen if you try to format a prompt template without providing a required input variable?
template = PromptTemplate(template="Hi {name}", input_variables=["name"])
prompt = template.format()