From 91446c995d94e16a96376cd15cc1019a5fae8a2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Avan=C3=A7o?= Date: Fri, 6 Dec 2024 14:58:52 -0300 Subject: [PATCH] fix: Update README.md Adds missing import --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a0e78400f..22daede99 100644 --- a/README.md +++ b/README.md @@ -64,9 +64,10 @@ pip install git+https://github.com/explodinggradients/ragas ### Evaluate your RAG with Ragas metrics -This is 4 main lines: +This is 5 main lines: ```python +from ragas import evaluate from ragas.metrics import LLMContextRecall, Faithfulness, FactualCorrectness from langchain_openai.chat_models import ChatOpenAI from ragas.llms import LangchainLLMWrapper