lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.haystack-ai: 2.5.1 -> 2.9.0

https://github.com/deepset-ai/haystack/releases/tag/v2.9.0

+3 -3
+3 -3
pkgs/development/python-modules/haystack-ai/default.nix
··· 91 91 92 92 buildPythonPackage rec { 93 93 pname = "haystack-ai"; 94 - version = "2.5.1"; 94 + version = "2.9.0"; 95 95 pyproject = true; 96 96 97 97 src = fetchFromGitHub { 98 98 owner = "deepset-ai"; 99 99 repo = "haystack"; 100 100 tag = "v${version}"; 101 - hash = "sha256-9lhAiM9uqa6CLb8A59mPVffA1Bnfs4A37/+kKA94cCQ="; 101 + hash = "sha256-h/4KskpzO3+e6aLQlBb8yitmfdbdc+J6Hz6TMs8bnr8="; 102 102 }; 103 103 104 104 nativeBuildInputs = [ ··· 262 262 longDescription = '' 263 263 LLM orchestration framework to build customizable, production-ready LLM applications. Connect components (models, vector DBs, file converters) to pipelines or agents that can interact with your data. With advanced retrieval methods, it's best suited for building RAG, question answering, semantic search or conversational agent chatbots 264 264 ''; 265 - changelog = "https://github.com/deepset-ai/haystack/releases/tag/v${version}"; 265 + changelog = "https://github.com/deepset-ai/haystack/releases/tag/${src.tag}"; 266 266 homepage = "https://github.com/deepset-ai/haystack"; 267 267 license = licenses.asl20; 268 268 maintainers = with maintainers; [ happysalada ];