2023-07-30 03:25:26 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, cachetools
|
|
|
|
, numpy
|
|
|
|
, pythonOlder
|
2023-09-15 14:06:14 +02:00
|
|
|
, redis
|
|
|
|
, redis-om
|
2023-07-30 03:25:26 +02:00
|
|
|
, requests
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "gptcache";
|
2023-12-03 02:36:50 +01:00
|
|
|
version = "0.1.43";
|
2023-07-30 03:25:26 +02:00
|
|
|
format = "setuptools";
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.8.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zilliztech";
|
|
|
|
repo = "GPTCache";
|
|
|
|
rev = "refs/tags/${version}";
|
2023-12-03 02:36:50 +01:00
|
|
|
hash = "sha256-EDsHzl55j4sehbKk0/be+WOl83f1/7zPLvPyzKnTBP4=";
|
2023-07-30 03:25:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
cachetools
|
|
|
|
numpy
|
2023-09-15 14:06:14 +02:00
|
|
|
redis
|
|
|
|
redis-om
|
2023-07-30 03:25:26 +02:00
|
|
|
requests
|
|
|
|
];
|
|
|
|
|
|
|
|
# many tests require network access and complicated dependencies
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "gptcache" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Semantic cache for LLMs and fully integrated with LangChain and llama_index";
|
|
|
|
homepage = "https://github.com/zilliztech/GPTCache";
|
|
|
|
changelog = "https://github.com/zilliztech/GPTCache/releases/tag/${src.rev}";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ natsukium ];
|
|
|
|
};
|
|
|
|
}
|