Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename tools folder to community 2 #76

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading