qwen_api / memory /cache.py
ayb-bh1146's picture
Create memory/cache.py
0af61cd verified
raw
history blame contribute delete
217 Bytes
from memory.redis_store import redis_store
def cache_response(key, response, ttl=300):
redis_store.cache_response(key, response, ttl)
def get_cached_response(key):
return redis_store.get_cached_response(key)