From 1ae7e7a1e27ae35ec51f7ca4079c361d22716b78 Mon Sep 17 00:00:00 2001 From: Jedrzej Kosinski Date: Sat, 28 Jun 2025 11:37:03 -0700 Subject: [PATCH] Updated some Conditioning docstrings --- comfy_api/v3/io.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/comfy_api/v3/io.py b/comfy_api/v3/io.py index 3b987def7..2dd9da8ee 100644 --- a/comfy_api/v3/io.py +++ b/comfy_api/v3/io.py @@ -504,12 +504,13 @@ class Conditioning(ComfyTypeIO): clip_end_percent: NotRequired[float] '''Internal variable for conditioning scheduling - end of application, expressed as a float between 0.0 and 1.0.''' attention_mask: NotRequired[torch.Tensor] - '''Used by StyleModel.''' + '''Masks text conditioning; used by StyleModel among others.''' attention_mask_img_shape: NotRequired[tuple[int, ...]] - '''Used by StyleModel.''' + '''Masks text conditioning; used by StyleModel among others.''' unclip_conditioning: NotRequired[list[dict]] '''Used by unCLIP.''' conditioning_lyrics: NotRequired[torch.Tensor] + '''Used by AceT5Model.''' seconds_start: NotRequired[float] '''Used by StableAudio.''' seconds_total: NotRequired[float]