python311Packages.llama-index-vector-stores-chroma: init at 0.10.12

This commit is contained in:
Fabian Affolter 2024-02-25 20:54:52 +01:00
parent a2a7cdd1cc
commit 9b319de689
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, chromadb
, fetchFromGitHub
, llama-index-core
, onnxruntime
, poetry-core
, pythonRelaxDepsHook
, tokenizers
}:
buildPythonPackage rec {
pname = "llama-index-vector-stores-chroma";
inherit (llama-index-core) version src meta;
pyproject = true;
sourceRoot = "${src.name}/llama-index-integrations/vector_stores/${pname}";
pythonRelaxDeps = [
"onnxruntime"
"tokenizers"
];
nativeBuildInputs = [
poetry-core
pythonRelaxDepsHook
];
propagatedBuildInputs = [
chromadb
llama-index-core
onnxruntime
tokenizers
];
pythonImportsCheck = [
"llama_index.vector_stores.chroma"
];
}

View File

@ -6690,6 +6690,8 @@ self: super: with self; {
llama-index-readers-llama-parse = callPackage ../development/python-modules/llama-index-readers-llama-parse { };
llama-index-vector-stores-chroma = callPackage ../development/python-modules/llama-index-vector-stores-chroma { };
llama-parse = callPackage ../development/python-modules/llama-parse { };
llamaindex-py-client = callPackage ../development/python-modules/llamaindex-py-client { };