LangChain - LangSmith Observability
Given the code below, what will be the output?
from langchain import PromptTemplate
prompt_v1 = PromptTemplate(template='Hello {name}')
prompt_v2 = PromptTemplate(template='Hi {name}')
print(prompt_v1.format(name='Alice'))
print(prompt_v2.format(name='Bob'))
