python3Packages.llama-index-vector-stores-faiss: init at 0.6.0

This commit is contained in:
kilyanni
2026-05-07 00:28:35 +02:00
parent 98c2868863
commit 47e59623ba
2 changed files with 43 additions and 0 deletions
@@ -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
];
};
})
+4
View File
@@ -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
{ };