LangChain - Evaluation and Testing
Given this code snippet, what will be the output of
results?
inputs = ["Hi", "Bye"] evaluator = SimpleEvaluator() pipeline = EvaluationPipeline(inputs=inputs, evaluator=evaluator) results = pipeline.evaluate()
