Skip to content

Commit c047184

Browse files
Xemdrxy
authored andcommitted
community: remove integration as the product has changed (#159)
This code dates back to when [Tigris Data][1] was a database as a service. That product has since been sunset and the current product is globally distributed object storage. Removing this code as there is no possible way for it to work. [1]: https://www.tigrisdata.com Ref: TIG-4616 Twitter handle: @tigrisdata I am running into a problem with the removal though, when I run tests locally I get an error that the tigris import doesn't exist: ``` FAILED tests/unit_tests/vectorstores/test_indexing_docs.py::test_compatible_vectorstore_documentation - ModuleNotFoundError: No module named 'langchain_community.vectorstores.tigris' FAILED tests/unit_tests/imports/test_langchain_proxy_imports.py::test_vectorstores - AttributeError: module langchain_community.vectorstores has no attribute Tigris FAILED tests/unit_tests/vectorstores/test_imports.py::test_all_imports_exclusive - ModuleNotFoundError: No module named 'langchain_community.vectorstores.tigris' FAILED tests/unit_tests/vectorstores/test_imports.py::test_all_imports - AssertionError: assert {'PGVector', 'SemaDB', 'TiDBVectorStore', 'LanceDB', 'MyScale', 'MomentoVectorIndex', 'USearch', 'ZepVectorStore', 'LLMRails', 'OracleVS', 'Dingo', 'Redis', 'BaiduVectorDB', 'PathwayVectorClient', 'BigQueryVectorSearch', 'KDBAI', 'Marqo', 'Pinecone', 'Relyt', 'Chroma', 'TimescaleVector', 'ManticoreSearchSettings', 'DashVector', 'NeuralDBVectorStor... FAILED tests/unit_tests/test_imports.py::test_importable_all - ModuleNotFoundError: No module named 'langchain_community.vectorstores.tigris' FAILED tests/unit_tests/test_imports.py::test_init_files_properly_defined - AssertionError: Missing imports: {'Tigris'} in file path: /Users/xe/Code/Xe/langchain-community/libs/community/langchain_community/vectorstores/__init__.py ``` Where is this coming from so I can fix it? --------- Signed-off-by: Xe Iaso <[email protected]> Co-authored-by: Mason Daugherty <[email protected]> Co-authored-by: Mason Daugherty <[email protected]>
1 parent ac4a2d9 commit c047184

File tree

3 files changed

+0
-154
lines changed

3 files changed

+0
-154
lines changed

libs/community/langchain_community/vectorstores/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,6 @@
261261
from langchain_community.vectorstores.tidb_vector import (
262262
TiDBVectorStore,
263263
)
264-
from langchain_community.vectorstores.tigris import (
265-
Tigris,
266-
)
267264
from langchain_community.vectorstores.tiledb import (
268265
TileDB,
269266
)
@@ -398,7 +395,6 @@
398395
"Tair",
399396
"TencentVectorDB",
400397
"TiDBVectorStore",
401-
"Tigris",
402398
"TileDB",
403399
"TimescaleVector",
404400
"Typesense",
@@ -503,7 +499,6 @@
503499
"Tair": "langchain_community.vectorstores.tair",
504500
"TencentVectorDB": "langchain_community.vectorstores.tencentvectordb",
505501
"TiDBVectorStore": "langchain_community.vectorstores.tidb_vector",
506-
"Tigris": "langchain_community.vectorstores.tigris",
507502
"TileDB": "langchain_community.vectorstores.tiledb",
508503
"TimescaleVector": "langchain_community.vectorstores.timescalevector",
509504
"Typesense": "langchain_community.vectorstores.typesense",

libs/community/langchain_community/vectorstores/tigris.py

Lines changed: 0 additions & 148 deletions
This file was deleted.

libs/community/tests/unit_tests/vectorstores/test_imports.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@
8888
"Tair",
8989
"TencentVectorDB",
9090
"TiDBVectorStore",
91-
"Tigris",
9291
"TileDB",
9392
"TimescaleVector",
9493
"Typesense",

0 commit comments

Comments
 (0)