From 401757acdef192e918f29c54d2fb2e37acc3e690 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Wed, 20 Aug 2025 20:08:43 -0700 Subject: [PATCH] Mark EasyCache/SuperEasyCache as experimental (beta) --- comfy_extras/nodes_easycache.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/comfy_extras/nodes_easycache.py b/comfy_extras/nodes_easycache.py index b9da3a7f1..fd3c87926 100644 --- a/comfy_extras/nodes_easycache.py +++ b/comfy_extras/nodes_easycache.py @@ -267,6 +267,7 @@ class EasyCacheNode(io.ComfyNode): display_name="EasyCache", description="Native EasyCache implementation.", category="advanced/debug/model", + is_experimental=True, inputs=[ io.Model.Input("model", tooltip="The model to add EasyCache to."), io.Float.Input("reuse_threshold", min=0.0, default=0.2, max=3.0, step=0.01, tooltip="The threshold for reusing cached steps."), @@ -380,6 +381,7 @@ class SuperEasyCacheNode(io.ComfyNode): display_name="Super EasyCache", description="Native SuperEasyCache implementation.", category="advanced/debug/model", + is_experimental=True, inputs=[ io.Model.Input("model", tooltip="The model to add SuperEasyCache to."), io.Float.Input("reuse_threshold", min=0.0, default=0.2, max=3.0, step=0.01, tooltip="The threshold for reusing cached steps."),