From ce71ba8ddbc840ddfa2543c3291fa7a3ab3524ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Grie=C3=9Fhaber?= <griesshaber@hdm-stuttgart.de> Date: Mon, 19 Aug 2024 14:06:28 +0200 Subject: [PATCH] Apply suggestions to 1 file --- evoprompt/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/evoprompt/models.py b/evoprompt/models.py index 3eb5925..565ce89 100644 --- a/evoprompt/models.py +++ b/evoprompt/models.py @@ -50,7 +50,6 @@ class LLMModel(ABC): @cache.memoize(typed=True, ignore=["func"]) def _call_function(func, *args, **kwargs): - # `cache_key` is added to the cache key (e.g., to distinguish between different models), but it is not used in the function return func(*args, **kwargs) self._call_model_cached = _call_function -- GitLab