python3Packages.llama-index-vector-stores-faiss: init at 0.6.0
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
faiss,
|
||||
fetchPypi,
|
||||
hatchling,
|
||||
llama-index-core,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "llama-index-vector-stores-faiss";
|
||||
version = "0.6.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "llama_index_vector_stores_faiss";
|
||||
inherit (finalAttrs) version;
|
||||
hash = "sha256-AL/rbLdXHg6FZWbLTxDIm0FbYQjxUdmtSO6cMdpWP14=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [
|
||||
faiss
|
||||
llama-index-core
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "llama_index.vector_stores.faiss" ];
|
||||
|
||||
meta = {
|
||||
description = "LlamaIndex Vector Store Integration for Faiss";
|
||||
homepage = "https://github.com/run-llama/llama_index/tree/main/llama-index-integrations/vector_stores/llama-index-vector-stores-faiss";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
fab
|
||||
kilyanni
|
||||
];
|
||||
};
|
||||
})
|
||||
@@ -9163,6 +9163,10 @@ self: super: with self; {
|
||||
callPackage ../development/python-modules/llama-index-vector-stores-chroma
|
||||
{ };
|
||||
|
||||
llama-index-vector-stores-faiss =
|
||||
callPackage ../development/python-modules/llama-index-vector-stores-faiss
|
||||
{ };
|
||||
|
||||
llama-index-vector-stores-google =
|
||||
callPackage ../development/python-modules/llama-index-vector-stores-google
|
||||
{ };
|
||||
|
||||
Reference in New Issue
Block a user