Skip to content

Commit 5d3d509

Browse files
authored
feat: remove dependency on langchain-community (#82)
* feat: remove dependency on langchain-community * undo merge error
1 parent 847441b commit 5d3d509

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ authors = [
1010
]
1111
dependencies = [
1212
"langchain-core>=0.1.1, <1.0.0",
13-
"langchain-community>=0.0.18, <1.0.0",
1413
"google-cloud-bigtable>=2.22.0, <3.0.0"
1514
]
1615
classifiers = [

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
langchain-core==0.2.30
2-
langchain-community==0.2.12
32
google-cloud-bigtable==2.26.0

src/langchain_google_bigtable/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from typing import Any, Callable, Iterator, List, Optional
2222

2323
from google.cloud import bigtable # type: ignore
24-
from langchain_community.document_loaders.base import BaseLoader
24+
from langchain_core.document_loaders.base import BaseLoader
2525
from langchain_core.documents import Document
2626

2727
from .common import use_client_or_default

0 commit comments

Comments
 (0)