mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-16 17:42:58 +08:00
Make AudioEncoderOutput usable in v3 node schema. (#9554)
This commit is contained in:
parent
914c2a2973
commit
39aa06bd5d
@ -731,11 +731,11 @@ class MODEL_PATCH(ComfyTypeIO):
|
|||||||
Type = Any
|
Type = Any
|
||||||
|
|
||||||
@comfytype(io_type="AUDIO_ENCODER")
|
@comfytype(io_type="AUDIO_ENCODER")
|
||||||
class AUDIO_ENCODER(ComfyTypeIO):
|
class AudioEncoder(ComfyTypeIO):
|
||||||
Type = Any
|
Type = Any
|
||||||
|
|
||||||
@comfytype(io_type="AUDIO_ENCODER_OUTPUT")
|
@comfytype(io_type="AUDIO_ENCODER_OUTPUT")
|
||||||
class AUDIO_ENCODER_OUTPUT(ComfyTypeIO):
|
class AudioEncoderOutput(ComfyTypeIO):
|
||||||
Type = Any
|
Type = Any
|
||||||
|
|
||||||
@comfytype(io_type="COMFY_MULTITYPED_V3")
|
@comfytype(io_type="COMFY_MULTITYPED_V3")
|
||||||
@ -1592,6 +1592,7 @@ class _IO:
|
|||||||
Model = Model
|
Model = Model
|
||||||
ClipVision = ClipVision
|
ClipVision = ClipVision
|
||||||
ClipVisionOutput = ClipVisionOutput
|
ClipVisionOutput = ClipVisionOutput
|
||||||
|
AudioEncoderOutput = AudioEncoderOutput
|
||||||
StyleModel = StyleModel
|
StyleModel = StyleModel
|
||||||
Gligen = Gligen
|
Gligen = Gligen
|
||||||
UpscaleModel = UpscaleModel
|
UpscaleModel = UpscaleModel
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user