Skip to content

Commit 39aa06b

Browse files
Make AudioEncoderOutput usable in v3 node schema. (Comfy-Org#9554)
1 parent 914c2a2 commit 39aa06b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

comfy_api/latest/_io.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -731,11 +731,11 @@ class MODEL_PATCH(ComfyTypeIO):
731731
Type = Any
732732

733733
@comfytype(io_type="AUDIO_ENCODER")
734-
class AUDIO_ENCODER(ComfyTypeIO):
734+
class AudioEncoder(ComfyTypeIO):
735735
Type = Any
736736

737737
@comfytype(io_type="AUDIO_ENCODER_OUTPUT")
738-
class AUDIO_ENCODER_OUTPUT(ComfyTypeIO):
738+
class AudioEncoderOutput(ComfyTypeIO):
739739
Type = Any
740740

741741
@comfytype(io_type="COMFY_MULTITYPED_V3")
@@ -1592,6 +1592,7 @@ class _IO:
15921592
Model = Model
15931593
ClipVision = ClipVision
15941594
ClipVisionOutput = ClipVisionOutput
1595+
AudioEncoderOutput = AudioEncoderOutput
15951596
StyleModel = StyleModel
15961597
Gligen = Gligen
15971598
UpscaleModel = UpscaleModel

0 commit comments

Comments
 (0)