From a285970cda3337dadc0b96241585aff41d3c9994 Mon Sep 17 00:00:00 2001 From: Jeffrey Ip Date: Wed, 6 Dec 2023 21:55:59 -0800 Subject: [PATCH] updated docs --- docs/docs/evaluation-metrics.mdx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/docs/evaluation-metrics.mdx b/docs/docs/evaluation-metrics.mdx index f66ef464f..a77f58343 100644 --- a/docs/docs/evaluation-metrics.mdx +++ b/docs/docs/evaluation-metrics.mdx @@ -162,6 +162,9 @@ test_case = LLMTestCase( ragas_metric.measure(test_case) print(ragas_metric.score) +# You can also print out the 5 scores that make up the RAGAS score. +print(ragas_metric.score_metadata) + # or # evaluate([test_case], [ragas_metric]) ```