From 92683262f4a6c2db95c3aad40a6f6dfde2df43d1 Mon Sep 17 00:00:00 2001 From: LeeJongBeom <52884648+devleejb@users.noreply.github.com> Date: Wed, 4 Oct 2023 09:36:16 +0900 Subject: [PATCH] Fix documents for RetrievalQAWithSourcesChain (#11292) - **Description:** Fix typo about `RetrievalQAWithSourceChain` -> `RetrievalQAWithSourcesChain` --- .../modules/chains/popular/vector_db_qa_with_sources.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/snippets/modules/chains/popular/vector_db_qa_with_sources.mdx b/docs/snippets/modules/chains/popular/vector_db_qa_with_sources.mdx index fbf77554db..99b9d1aadd 100644 --- a/docs/snippets/modules/chains/popular/vector_db_qa_with_sources.mdx +++ b/docs/snippets/modules/chains/popular/vector_db_qa_with_sources.mdx @@ -41,7 +41,7 @@ result["source_documents"] -Alternatively, if our document have a "source" metadata key, we can use the `RetrievalQAWithSourceChain` to cite our sources: +Alternatively, if our document have a "source" metadata key, we can use the `RetrievalQAWithSourcesChain` to cite our sources: ```python docsearch = Chroma.from_texts(texts, embeddings, metadatas=[{"source": f"{i}-pl"} for i in range(len(texts))])