From 435771fe744779b19bd0655fc31a371122ff3c5e Mon Sep 17 00:00:00 2001 From: Ben Chambers <35960+bjchambers@users.noreply.github.com> Date: Tue, 30 Jul 2024 08:21:39 -0700 Subject: [PATCH] [community]: Fix package name mismatch (#24824) - **Description:** fix a mismatch in pypi package names --- .../langchain_community/graph_vectorstores/cassandra.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/community/langchain_community/graph_vectorstores/cassandra.py b/libs/community/langchain_community/graph_vectorstores/cassandra.py index c6f03dce4c0..ed8dbe347e1 100644 --- a/libs/community/langchain_community/graph_vectorstores/cassandra.py +++ b/libs/community/langchain_community/graph_vectorstores/cassandra.py @@ -45,8 +45,8 @@ class CassandraGraphVectorStore(GraphVectorStore): from ragstack_knowledge_store import EmbeddingModel, graph_store except (ImportError, ModuleNotFoundError): raise ImportError( - "Could not import ragstack-knowledge-store python package. " - "Please install it with `pip install ragstack-knowledge-store`." + "Could not import ragstack_knowledge_store python package. " + "Please install it with `pip install ragstack-ai-knowledge-store`." ) self._embedding = embedding