local-llm-server/llm_server/routes/cache.py

4 lines
164 B
Python
Raw Normal View History

2023-08-21 21:28:52 -06:00
from flask_caching import Cache
2023-08-22 00:01:32 -06:00
cache = Cache(config={'CACHE_TYPE': 'RedisCache', 'CACHE_REDIS_URL': 'redis://localhost:6379/0', 'CACHE_KEY_PREFIX': 'local-llm'})