Skip to content

Commit

Permalink
Merge pull request langchain-ai#76 from langchain-ai/erick/rename-too…
Browse files Browse the repository at this point in the history
…ls-folder-to-community-2

rename tools folder to community 2
  • Loading branch information
efriis authored Mar 19, 2024
2 parents 30edec3 + de984fc commit 3512362
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions libs/community/langchain_google_community/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from langchain_google_tools.bigquery_vector_search import BigQueryVectorSearch
from langchain_google_tools.documentai_warehouse import DocumentAIWarehouseRetriever
from langchain_google_tools.gmail.loader import GMailLoader
from langchain_google_tools.gmail.toolkit import GmailToolkit
from langchain_google_tools.vertex_ai_search import (
from langchain_google_community.bigquery_vector_search import BigQueryVectorSearch
from langchain_google_community.documentai_warehouse import DocumentAIWarehouseRetriever
from langchain_google_community.gmail.loader import GMailLoader
from langchain_google_community.gmail.toolkit import GmailToolkit
from langchain_google_community.vertex_ai_search import (
VertexAIMultiTurnSearchRetriever,
VertexAISearchRetriever,
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import pytest

from langchain_google_tools import BigQueryVectorSearch
from langchain_google_community import BigQueryVectorSearch
from tests.integration_tests.fake import FakeEmbeddings

TEST_TABLE_NAME = "langchain_test_table"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
"""Test Google Cloud Document AI Warehouse retriever."""

import os

from langchain_core.documents import Document

from langchain_google_tools import DocumentAIWarehouseRetriever
from langchain_google_community import DocumentAIWarehouseRetriever


def test_google_documentai_warehoure_retriever() -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@
export DATA_STORE_ID=... - the ID of the search engine to use for the test
"""


from langchain_core.documents import Document

from langchain_google_tools import (
from langchain_google_community import (
VertexAIMultiTurnSearchRetriever,
VertexAISearchRetriever,
)
Expand Down

0 comments on commit 3512362

Please sign in to comment.