LangChain - Evaluation and Testing
Given the code below, what will be the output of
print(results) if both prompt variations return 'Hello Alice' and 'Hi Alice' respectively?prompts = [PromptTemplate(template='Hello {name}'), PromptTemplate(template='Hi {name}')]
multi_chain = MultiPromptChain(prompts=prompts, llm=llm)
results = multi_chain.run({'name': 'Alice'})