LangChain - Evaluation and Testing
Given the code below, what will be the output of
print(results)?
from langchain import PromptTemplate
prompt1 = PromptTemplate(template='Hello {name}')
prompt2 = PromptTemplate(template='Hi {name}')
inputs = {'name': 'Alice'}
results = [prompt1.format(**inputs), prompt2.format(**inputs)]
print(results)