Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #307157 from fabaff/llama-index-bump

python312Packages.llama-index-core: 0.10.31 -> 0.10.32, python312Packages.llamaindex-py-client: 0.1.18 -> 0.1.19

authored by Fabian Affolter and committed by GitHub ea115268 dfe10d3c

+30 -40
+2 -2
pkgs/development/python-modules/llama-index-core/default.nix
··· 44 44 45 45 buildPythonPackage rec { 46 46 pname = "llama-index-core"; 47 - version = "0.10.31"; 47 + version = "0.10.32"; 48 48 pyproject = true; 49 49 50 50 disabled = pythonOlder "3.8"; ··· 53 53 owner = "run-llama"; 54 54 repo = "llama_index"; 55 55 rev = "refs/tags/v${version}"; 56 - hash = "sha256-F/XcG+42l729sZ4dBwYEh+2IR1SBcflwwOkXBnqOjoI="; 56 + hash = "sha256-p+ye8o+paA6L8f1DiiiFJufyEqRn+ERNBWuhkoWfZb8="; 57 57 }; 58 58 59 59 sourceRoot = "${src.name}/${pname}";
+12 -17
pkgs/development/python-modules/llama-index-embeddings-openai/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , llama-index-core 5 - , poetry-core 6 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + llama-index-core, 6 + poetry-core, 7 + pythonOlder, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "llama-index-embeddings-openai"; 11 - version = "0.1.8"; 12 + version = "0.1.9"; 12 13 pyproject = true; 13 14 14 15 disabled = pythonOlder "3.8"; ··· 16 17 src = fetchPypi { 17 18 pname = "llama_index_embeddings_openai"; 18 19 inherit version; 19 - hash = "sha256-quTOPsL+LLYE2URkaYLHFmOouZ7V+MNwgj7oLu9N3Ts="; 20 + hash = "sha256-D9KSsvmgrUU0p5DWN0cmvIhYUxiAh+sBgWfc8jlkOSQ="; 20 21 }; 21 22 22 - build-system = [ 23 - poetry-core 24 - ]; 23 + build-system = [ poetry-core ]; 25 24 26 - dependencies = [ 27 - llama-index-core 28 - ]; 25 + dependencies = [ llama-index-core ]; 29 26 30 27 # Tests are only available in the mono repo 31 28 doCheck = false; 32 29 33 - pythonImportsCheck = [ 34 - "llama_index.embeddings.openai" 35 - ]; 30 + pythonImportsCheck = [ "llama_index.embeddings.openai" ]; 36 31 37 32 meta = with lib; { 38 33 description = "LlamaIndex Embeddings Integration for OpenAI";
+12 -17
pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchPypi 4 - , poetry-core 5 - , llama-index-core 6 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + poetry-core, 6 + llama-index-core, 7 + pythonOlder, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "llama-index-indices-managed-llama-cloud"; 11 - version = "0.1.5"; 12 + version = "0.1.6"; 12 13 pyproject = true; 13 14 14 15 disabled = pythonOlder "3.8"; ··· 16 17 src = fetchPypi { 17 18 pname = "llama_index_indices_managed_llama_cloud"; 18 19 inherit version; 19 - hash = "sha256-R83enwa73dUI8O/PQd5CXoUXGsLI/ail+yqJZz4cjHE="; 20 + hash = "sha256-dLOw6ev500jTBU+fwMZXAxrM65NRwxEWrY1aeuRyn1w="; 20 21 }; 21 22 22 - build-system = [ 23 - poetry-core 24 - ]; 23 + build-system = [ poetry-core ]; 25 24 26 - dependencies = [ 27 - llama-index-core 28 - ]; 25 + dependencies = [ llama-index-core ]; 29 26 30 27 # Tests are only available in the mono repo 31 28 doCheck = false; 32 29 33 - pythonImportsCheck = [ 34 - "llama_index.indices.managed.llama_cloud" 35 - ]; 30 + pythonImportsCheck = [ "llama_index.indices.managed.llama_cloud" ]; 36 31 37 32 meta = with lib; { 38 33 description = "LlamaCloud Index and Retriever";
+2 -2
pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "llama-index-vector-stores-qdrant"; 14 - version = "0.2.7"; 14 + version = "0.2.8"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 19 19 src = fetchPypi { 20 20 pname = "llama_index_vector_stores_qdrant"; 21 21 inherit version; 22 - hash = "sha256-jVkNFNKghukf1H6yRO5nEj3jWzrn51Xm1g5kS5Kd6m0="; 22 + hash = "sha256-qeKV7jlBTujUEYMcPCS+PAD6xRlTBVi/DGJZ/MSN64A="; 23 23 }; 24 24 25 25 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/llamaindex-py-client/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "llamaindex-py-client"; 13 - version = "0.1.18"; 13 + version = "0.1.19"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 18 18 src = fetchPypi { 19 19 pname = "llamaindex_py_client"; 20 20 inherit version; 21 - hash = "sha256-CR7kmpJZLjiUd3reElFsITcJP51kQaVJ9AZGGRfOm34="; 21 + hash = "sha256-c/dHkruMCSuubcYmYnoJrBOgmfqNEPj8yD4XorMyzKc="; 22 22 }; 23 23 24 24 build-system = [ poetry-core ];