Skip to content

Commit

Permalink
fixed version
Browse files Browse the repository at this point in the history
  • Loading branch information
lkuligin committed Apr 2, 2024
1 parent 8f5a178 commit ba9ac06
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@


@deprecated(
since="0.1.15",
since="0.0.32",
removal="0.2.0",
alternative_import="langchain_google_community.GCSFileLoader",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


@deprecated(
since="0.1.15",
since="0.0.32",
removal="0.2.0",
alternative_import="langchain_google_community.SpeechToTextLoader",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@


@deprecated(
since="0.1.15",
since="0.0.32",
removal="0.2.0",
alternative_import="langchain_google_community.GoogleDriveLoader",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class DocAIParsingResults:


@deprecated(
since="0.1.15",
since="0.0.32",
removal="0.2.0",
alternative_import="langchain_google_community.DocAIParser",
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


@deprecated(
since="0.1.15",
since="0.0.32",
removal="0.2.0",
alternative_import="langchain_google_community.DocAIParser",
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Retriever wrapper for Google Cloud Document AI Warehouse."""
from typing import TYPE_CHECKING, Any, Dict, List, Optional

from langchain_core._api.deprecation import deprecated
from langchain_core.callbacks import CallbackManagerForRetrieverRun
from langchain_core.documents import Document
from langchain_core.pydantic_v1 import root_validator
Expand All @@ -20,6 +21,11 @@
)


@deprecated(
since="0.0.32",
removal="0.2.0",
alternative_import="langchain_google_community.GoogleDriveLoader",
)
class GoogleDocumentAIWarehouseRetriever(BaseRetriever):
"""A retriever based on Document AI Warehouse.
Expand Down

0 comments on commit ba9ac06

Please sign in to comment.