From 78d191fa7a676eb01abc2495acf3354e4b2742a0 Mon Sep 17 00:00:00 2001 From: Talmaj Marinc Date: Thu, 21 May 2026 20:09:15 +0200 Subject: [PATCH] Add DA3ModelType to LoadDepthAnything3. --- comfy_extras/nodes_depth_anything_3.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/comfy_extras/nodes_depth_anything_3.py b/comfy_extras/nodes_depth_anything_3.py index 5221c975e..4f08364b6 100644 --- a/comfy_extras/nodes_depth_anything_3.py +++ b/comfy_extras/nodes_depth_anything_3.py @@ -36,6 +36,7 @@ import folder_paths from comfy.ldm.depth_anything_3 import preprocess as da3_preprocess from comfy_api.latest import ComfyExtension, io +DA3ModelType = io.Custom("DA3_MODEL") class LoadDepthAnything3(io.ComfyNode): @classmethod @@ -55,7 +56,7 @@ class LoadDepthAnything3(io.ComfyNode): default="default", ), ], - outputs=[io.Model.Output("model")], + outputs=[DA3ModelType.Output()], ) @classmethod