python311Packages.llama-index-legacy: init at 0.10.12

This commit is contained in:
Fabian Affolter 2024-02-25 21:05:59 +01:00
parent 5753976240
commit 56f960b94d
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, llama-index-core
}:
buildPythonPackage rec {
pname = "llama-index-legacy";
inherit (llama-index-core) version src meta;
pyproject = true;
sourceRoot = "${src.name}/${pname}";
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
llama-index-core
];
}

View File

@ -6684,6 +6684,8 @@ self: super: with self; {
llama-index-indices-managed-llama-cloud = callPackage ../development/python-modules/llama-index-indices-managed-llama-cloud { };
llama-index-legacy = callPackage ../development/python-modules/llama-index-legacy { };
llama-index-llms-openai = callPackage ../development/python-modules/llama-index-llms-openai { };
llama-index-multi-modal-llms-openai = callPackage ../development/python-modules/llama-index-multi-modal-llms-openai { };