LangChain - Prompt Templates
Given the following code, what will be the output of
full_prompt.format(name="Alice")?
from langchain.prompts import PartialPromptTemplate, PromptTemplate
partial = PartialPromptTemplate(template="Hello {name}", input_variables=["name"])
full_prompt = PromptTemplate(template="{greeting}, welcome!", input_variables=["greeting"])
full_prompt = full_prompt.partial(greeting=partial)