LangChain - Prompt Templates
What will happen if you try to format a
PartialPromptTemplate without providing all remaining variables?base_prompt = PromptTemplate(template="Hello {name}, welcome to {place}!")
partial_prompt = base_prompt.partial(place="office")
partial_prompt.format()