Skip to content

Commit

Permalink
marked MatchingEngine as deprecated (langchain-ai#18585)
Browse files Browse the repository at this point in the history
Thank you for contributing to LangChain!

- [ ] **PR title**: "community: deprecate vectorstores.MatchingEngine"


- [ ] **PR message**: 
- **Description:** announced a deprecation since this integration has
been moved to langchain_google_vertexai
  • Loading branch information
lkuligin authored and Dave Bechberger committed Mar 29, 2024
1 parent b38b32d commit 7755163
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import uuid
from typing import TYPE_CHECKING, Any, Iterable, List, Optional, Tuple, Type

from langchain_core._api.deprecation import deprecated
from langchain_core.documents import Document
from langchain_core.embeddings import Embeddings
from langchain_core.vectorstores import VectorStore
Expand All @@ -25,6 +26,11 @@
logger = logging.getLogger(__name__)


@deprecated(
since="0.0.12",
removal="0.2.0",
alternative_import="langchain_google_vertexai.VectorSearchVectorStore",
)
class MatchingEngine(VectorStore):
"""`Google Vertex AI Vector Search` (previously Matching Engine) vector store.
Expand Down

0 comments on commit 7755163

Please sign in to comment.