From c710c7303fc221b836c7495e3b8b1c2bacb260fc Mon Sep 17 00:00:00 2001 From: Stefano Lottini Date: Fri, 1 Sep 2023 01:05:46 +0200 Subject: [PATCH] fix wrong import line in cassandra doc page for vector store (#10041) This fixes the exampe import line in the general "cassandra" doc page mdx file. (it was erroneously a copy of the chat message history import statement found below). --- docs/extras/integrations/providers/cassandra.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extras/integrations/providers/cassandra.mdx b/docs/extras/integrations/providers/cassandra.mdx index 3ab57a83df..430df61089 100644 --- a/docs/extras/integrations/providers/cassandra.mdx +++ b/docs/extras/integrations/providers/cassandra.mdx @@ -21,7 +21,7 @@ pip install cassio See a [usage example](/docs/integrations/vectorstores/cassandra). ```python -from langchain.memory import CassandraChatMessageHistory +from langchain.vectorstores import Cassandra ```