Skip to content

Commit

Permalink
multiple[patch]: fix deprecation versions (#18349)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored Mar 1, 2024
1 parent 11cb42c commit eefb496
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Azure OpenAI embeddings wrapper."""

from __future__ import annotations

import os
Expand All @@ -14,7 +15,7 @@


@deprecated(
since="0.1.0",
since="0.0.9",
removal="0.2.0",
alternative_import="langchain_openai.AzureOpenAIEmbeddings",
)
Expand Down
2 changes: 1 addition & 1 deletion libs/community/langchain_community/embeddings/openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ async def _async_embed_with_retry(**kwargs: Any) -> Any:


@deprecated(
since="0.1.0",
since="0.0.9",
removal="0.2.0",
alternative_import="langchain_openai.OpenAIEmbeddings",
)
Expand Down
2 changes: 1 addition & 1 deletion libs/community/langchain_community/llms/google_palm.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _strip_erroneous_leading_spaces(text: str) -> str:
return text


@deprecated("0.0.351", alternative_import="langchain_google_genai.GoogleGenerativeAI")
@deprecated("0.0.12", alternative_import="langchain_google_genai.GoogleGenerativeAI")
class GooglePalm(BaseLLM, BaseModel):
"""
DEPRECATED: Use `langchain_google_genai.GoogleGenerativeAI` instead.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def yield_keys(self, *, prefix: Optional[str] = None) -> Iterator[str]:
yield key


@deprecated("0.0.335", alternative="UpstashRedisByteStore")
@deprecated("0.0.1", alternative="UpstashRedisByteStore")
class UpstashRedisStore(_UpstashRedisStore):
"""
BaseStore implementation using Upstash Redis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def delete(self, ids: Optional[List[str]] = None, **kwargs: Any) -> None:
self.client.delete(index=self.index_name, id=id)


@deprecated("0.0.265", alternative="ElasticsearchStore class.", pending=True)
@deprecated("0.0.1", alternative="ElasticsearchStore class.", pending=True)
class ElasticKnnSearch(VectorStore):
"""[DEPRECATED] `Elasticsearch` with k-nearest neighbor search
(`k-NN`) vector store.
Expand Down Expand Up @@ -564,9 +564,11 @@ def knn_search(
docs_and_scores = [
(
Document(
page_content=hit["_source"][page_content]
if source
else hit["fields"][page_content][0],
page_content=(
hit["_source"][page_content]
if source
else hit["fields"][page_content][0]
),
metadata=hit["fields"] if fields else {},
),
hit["_score"],
Expand Down Expand Up @@ -647,9 +649,11 @@ def knn_hybrid_search(
docs_and_scores = [
(
Document(
page_content=hit["_source"][page_content]
if source
else hit["fields"][page_content][0],
page_content=(
hit["_source"][page_content]
if source
else hit["fields"][page_content][0]
),
metadata=hit["fields"] if fields else {},
),
hit["_score"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ def as_retriever(self, **kwargs: Any) -> RedisVectorStoreRetriever:
tags.extend(self._get_retriever_tags())
return RedisVectorStoreRetriever(vectorstore=self, **kwargs, tags=tags)

@deprecated("0.0.272", alternative="similarity_search(distance_threshold=0.1)")
@deprecated("0.0.1", alternative="similarity_search(distance_threshold=0.1)")
def similarity_search_limit_score(
self, query: str, k: int = 4, score_threshold: float = 0.2, **kwargs: Any
) -> List[Document]:
Expand Down
4 changes: 2 additions & 2 deletions libs/core/langchain_core/prompts/chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ def from_template(cls, template: str, **kwargs: Any) -> ChatPromptTemplate:
return cls.from_messages([message])

@classmethod
@deprecated("0.0.260", alternative="from_messages classmethod", pending=True)
@deprecated("0.0.1", alternative="from_messages classmethod", pending=True)
def from_role_strings(
cls, string_messages: List[Tuple[str, str]]
) -> ChatPromptTemplate:
Expand All @@ -692,7 +692,7 @@ def from_role_strings(
)

@classmethod
@deprecated("0.0.260", alternative="from_messages classmethod", pending=True)
@deprecated("0.0.1", alternative="from_messages classmethod", pending=True)
def from_strings(
cls, string_messages: List[Tuple[Type[BaseMessagePromptTemplate], str]]
) -> ChatPromptTemplate:
Expand Down

0 comments on commit eefb496

Please sign in to comment.