From f5afb601169c5e08f74037912dbdd18f826b8d58 Mon Sep 17 00:00:00 2001 From: Roy Xue Date: Sat, 8 Apr 2023 23:31:33 +0800 Subject: [PATCH] doc: change comment with correct name (#2580) In this comment, it should be **ConversationalRetrievalChain** instead of **ChatVectorDBChain** --- docs/modules/chains/index_examples/chat_vector_db.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/chains/index_examples/chat_vector_db.ipynb b/docs/modules/chains/index_examples/chat_vector_db.ipynb index 98d3ee97..ffb3e316 100644 --- a/docs/modules/chains/index_examples/chat_vector_db.ipynb +++ b/docs/modules/chains/index_examples/chat_vector_db.ipynb @@ -466,7 +466,7 @@ "from langchain.chains.chat_index.prompts import CONDENSE_QUESTION_PROMPT, QA_PROMPT\n", "from langchain.chains.question_answering import load_qa_chain\n", "\n", - "# Construct a ChatVectorDBChain with a streaming llm for combine docs\n", + "# Construct a ConversationalRetrievalChain with a streaming llm for combine docs\n", "# and a separate, non-streaming llm for question generation\n", "llm = OpenAI(temperature=0)\n", "streaming_llm = OpenAI(streaming=True, callback_manager=CallbackManager([StreamingStdOutCallbackHandler()]), verbose=True, temperature=0)\n",