Hunyuan-ITV / cache_manager.py
Sergidev's picture
alpha
8cad36b
raw
history blame contribute delete
188 Bytes
from diskcache import Cache
video_cache = Cache("/tmp/hunyuan_videos")
@video_cache.memoize(expire=3600)
def cached_generation(image, params):
return generate_video(image, **params)