This repository has been archived on 2024-10-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
from flask_caching import Cache
|
|
|
|
cache = Cache(config={'CACHE_TYPE': 'RedisCache', 'CACHE_REDIS_URL': 'redis://localhost:6379/0', 'CACHE_KEY_PREFIX': 'local-llm'})
|