From fcc9f3c504d690fd0dbbc8df305aac986c3d3178 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Fri, 8 Dec 2023 18:55:18 -0800 Subject: [PATCH] (ci/cd) q up another test --- litellm/tests/test_caching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litellm/tests/test_caching.py b/litellm/tests/test_caching.py index c3bf5478bc2..1e1a7271b41 100644 --- a/litellm/tests/test_caching.py +++ b/litellm/tests/test_caching.py @@ -266,7 +266,7 @@ test_redis_cache_completion_stream() # redis cache with custom keys def custom_get_cache_key(*args, **kwargs): - # return key to use for your cache: + # return key to use for your cache: key = kwargs.get("model", "") + str(kwargs.get("messages", "")) + str(kwargs.get("temperature", "")) + str(kwargs.get("logit_bias", "")) return key