Spaces:
Runtime error
Runtime error
File size: 188 Bytes
8cad36b |
1 2 3 4 5 6 7 8 |
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)
|