8 lines
232 B
Python
8 lines
232 B
Python
from cache_unit_tests import LLMCachingUnitTests
|
|
from litellm.caching import LiteLLMCacheType
|
|
|
|
|
|
class TestGCSCacheUnitTests(LLMCachingUnitTests):
|
|
def get_cache_type(self) -> LiteLLMCacheType:
|
|
return LiteLLMCacheType.GCS
|