Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions comfy_api/latest/_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -731,11 +731,11 @@ class MODEL_PATCH(ComfyTypeIO):
Type = Any

@comfytype(io_type="AUDIO_ENCODER")
class AUDIO_ENCODER(ComfyTypeIO):
class AudioEncoder(ComfyTypeIO):
Type = Any

@comfytype(io_type="AUDIO_ENCODER_OUTPUT")
class AUDIO_ENCODER_OUTPUT(ComfyTypeIO):
class AudioEncoderOutput(ComfyTypeIO):
Type = Any

@comfytype(io_type="COMFY_MULTITYPED_V3")
Expand Down Expand Up @@ -1592,6 +1592,7 @@ class _IO:
Model = Model
ClipVision = ClipVision
ClipVisionOutput = ClipVisionOutput
AudioEncoderOutput = AudioEncoderOutput
StyleModel = StyleModel
Gligen = Gligen
UpscaleModel = UpscaleModel
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
comfyui-frontend-package==1.25.10
comfyui-workflow-templates==0.1.65
comfyui-workflow-templates==0.1.66
comfyui-embedded-docs==0.2.6
torch
torchsde
Expand Down
Loading