mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-17 18:23:59 +00:00
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 <erick@langchain.dev>
This commit is contained in:
parent
6a861b0ad9
commit
4a32cc3c66
@ -1085,6 +1085,19 @@ const FEATURE_TABLES = {
|
|||||||
multiTenancy: false,
|
multiTenancy: false,
|
||||||
local: true,
|
local: true,
|
||||||
idsInAddDocuments: false,
|
idsInAddDocuments: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "Weaviate",
|
||||||
|
link: "weaviate",
|
||||||
|
deleteById: true,
|
||||||
|
filtering: true,
|
||||||
|
searchByVector: true,
|
||||||
|
searchWithScore: true,
|
||||||
|
async: true,
|
||||||
|
passesStandardTests: false,
|
||||||
|
multiTenancy: true,
|
||||||
|
local: true,
|
||||||
|
idsInAddDocuments: false,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user