From 4a32cc3c663a8db9402d8194b16dad995c2d1c3b Mon Sep 17 00:00:00 2001 From: Erika Cardenas <110841617+erika-cardenas@users.noreply.github.com> Date: Tue, 1 Oct 2024 01:05:37 +0200 Subject: [PATCH] Update FeatureTables.js to add Weaviate (#26824) Thank you for contributing to LangChain! - [x] **PR message**: - Add Weaviate to the vector store list. Additional guidelines: - Make sure optional dependencies are imported within a function. - Please do not add dependencies to pyproject.toml files (even optional ones) unless they are required for unit tests. - Most PRs should not touch more than one package. - Changes should be backwards compatible. - If you are adding something to community, do not re-import it in langchain. If no one reviews your PR within a few days, please @-mention one of baskaryan, efriis, eyurtsev, ccurme, vbarda, hwchase17. Co-authored-by: Erick Friis --- docs/src/theme/FeatureTables.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/src/theme/FeatureTables.js b/docs/src/theme/FeatureTables.js index e9bbed3bcca..4a46e08cb17 100644 --- a/docs/src/theme/FeatureTables.js +++ b/docs/src/theme/FeatureTables.js @@ -1085,6 +1085,19 @@ const FEATURE_TABLES = { multiTenancy: false, local: true, idsInAddDocuments: false, + }, + { + name: "Weaviate", + link: "weaviate", + deleteById: true, + filtering: true, + searchByVector: true, + searchWithScore: true, + async: true, + passesStandardTests: false, + multiTenancy: true, + local: true, + idsInAddDocuments: false, } ], }