From dc3ac8082bf03e97a25451df91130d8500d271c2 Mon Sep 17 00:00:00 2001 From: longgui0318 <947361439@qq.com> Date: Tue, 4 Apr 2023 21:59:50 +0800 Subject: [PATCH] Revision of "elasticearch" spelling problem (#2378) Revision of "elasticearch" spelling problem Co-authored-by: gubei <> --- langchain/vectorstores/elastic_vector_search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/langchain/vectorstores/elastic_vector_search.py b/langchain/vectorstores/elastic_vector_search.py index a175d3a6377..e808e80f69c 100644 --- a/langchain/vectorstores/elastic_vector_search.py +++ b/langchain/vectorstores/elastic_vector_search.py @@ -233,7 +233,7 @@ class ElasticVectorSearch(VectorStore, ABC): except ImportError: raise ValueError( "Could not import elasticsearch python package. " - "Please install it with `pip install elasticearch`." + "Please install it with `pip install elasticsearch`." ) try: client = elasticsearch.Elasticsearch(elasticsearch_url)