forked from phoenix/litellm-mirror
11 lines
307 B
Python
11 lines
307 B
Python
from cache_unit_tests import LLMCachingUnitTests
|
|
from litellm.caching import LiteLLMCacheType
|
|
|
|
|
|
class TestDiskCacheUnitTests(LLMCachingUnitTests):
|
|
def get_cache_type(self) -> LiteLLMCacheType:
|
|
return LiteLLMCacheType.DISK
|
|
|
|
|
|
# if __name__ == "__main__":
|
|
# pytest.main([__file__, "-v", "-s"])
|