From 532b6f03fca4d8afd3209a2cd5894bb7c5f88d2f Mon Sep 17 00:00:00 2001 From: David Azar Date: Fri, 18 Jul 2025 10:17:38 -0600 Subject: [PATCH 1/4] docs: fix typos in testset generation page and component --- docs/extra/components/choose_generator_llm.md | 2 +- docs/getstarted/rag_testset_generation.md | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/extra/components/choose_generator_llm.md b/docs/extra/components/choose_generator_llm.md index e20bcabaa..b67bcb104 100644 --- a/docs/extra/components/choose_generator_llm.md +++ b/docs/extra/components/choose_generator_llm.md @@ -12,7 +12,7 @@ os.environ["OPENAI_API_KEY"] = "your-openai-key" ``` - Wrapp the LLMs in `LangchainLLMWrapper` so that it can be used with ragas. + Wrap the LLMs in `LangchainLLMWrapper` so that it can be used with ragas. ```python from ragas.llms import LangchainLLMWrapper diff --git a/docs/getstarted/rag_testset_generation.md b/docs/getstarted/rag_testset_generation.md index 48300662d..29ca50cbf 100644 --- a/docs/getstarted/rag_testset_generation.md +++ b/docs/getstarted/rag_testset_generation.md @@ -3,7 +3,8 @@ This simple guide will help you generate a testset for evaluating your RAG pipeline using your own documents. ## Quickstart -Let's walk through an quick example of generating a testset for a RAG pipeline. Following that will will explore the main components of the testset generation pipeline. + +Let's walk through an quick example of generating a testset for a RAG pipeline. Following that we will explore the main components of the testset generation pipeline. ### Load Sample Documents From 33bd959aa6800f26cd8d5df1b88f588653e26888 Mon Sep 17 00:00:00 2001 From: David Azar Date: Fri, 18 Jul 2025 10:19:11 -0600 Subject: [PATCH 2/4] docs: capitalize lines for consistency --- docs/extra/components/choose_generator_llm.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/extra/components/choose_generator_llm.md b/docs/extra/components/choose_generator_llm.md index b67bcb104..dc163cf7e 100644 --- a/docs/extra/components/choose_generator_llm.md +++ b/docs/extra/components/choose_generator_llm.md @@ -5,7 +5,7 @@ pip install langchain-openai ``` - then ensure you have your OpenAI key ready and available in your environment + Then ensure you have your OpenAI key ready and available in your environment ```python import os @@ -31,7 +31,7 @@ pip install langchain-aws ``` - then you have to set your AWS credentials and configurations + Then you have to set your AWS credentials and configurations ```python config = { @@ -43,7 +43,7 @@ } ``` - define you LLMs and wrap them in `LangchainLLMWrapper` so that it can be used with ragas. + Define you LLMs and wrap them in `LangchainLLMWrapper` so that it can be used with ragas. ```python from langchain_aws import ChatBedrockConverse From 14efc1609059f303cafed6ddb37e85a251a77d64 Mon Sep 17 00:00:00 2001 From: David Azar Date: Fri, 18 Jul 2025 10:23:41 -0600 Subject: [PATCH 3/4] docs: restore paragraph format --- docs/getstarted/rag_testset_generation.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/getstarted/rag_testset_generation.md b/docs/getstarted/rag_testset_generation.md index 29ca50cbf..f12b5c2f2 100644 --- a/docs/getstarted/rag_testset_generation.md +++ b/docs/getstarted/rag_testset_generation.md @@ -3,7 +3,6 @@ This simple guide will help you generate a testset for evaluating your RAG pipeline using your own documents. ## Quickstart - Let's walk through an quick example of generating a testset for a RAG pipeline. Following that we will explore the main components of the testset generation pipeline. ### Load Sample Documents From c72ac09d8bc4f6d3112b7e058ed73247cd482892 Mon Sep 17 00:00:00 2001 From: David Azar Date: Fri, 18 Jul 2025 10:32:40 -0600 Subject: [PATCH 4/4] docs: fix more typos --- docs/extra/components/choose_generator_llm.md | 2 +- docs/getstarted/rag_testset_generation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/extra/components/choose_generator_llm.md b/docs/extra/components/choose_generator_llm.md index dc163cf7e..13c6e04db 100644 --- a/docs/extra/components/choose_generator_llm.md +++ b/docs/extra/components/choose_generator_llm.md @@ -43,7 +43,7 @@ } ``` - Define you LLMs and wrap them in `LangchainLLMWrapper` so that it can be used with ragas. + Define your LLMs and wrap them in `LangchainLLMWrapper` so that it can be used with ragas. ```python from langchain_aws import ChatBedrockConverse diff --git a/docs/getstarted/rag_testset_generation.md b/docs/getstarted/rag_testset_generation.md index f12b5c2f2..c681cd7c5 100644 --- a/docs/getstarted/rag_testset_generation.md +++ b/docs/getstarted/rag_testset_generation.md @@ -3,7 +3,7 @@ This simple guide will help you generate a testset for evaluating your RAG pipeline using your own documents. ## Quickstart -Let's walk through an quick example of generating a testset for a RAG pipeline. Following that we will explore the main components of the testset generation pipeline. +Let's walk through a quick example of generating a testset for a RAG pipeline. Following that we will explore the main components of the testset generation pipeline. ### Load Sample Documents