Skip to content
Closed
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
4 changes: 2 additions & 2 deletions comfy_api_nodes/nodes_hunyuan3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class TencentTextToModelNode(IO.ComfyNode):
def define_schema(cls):
return IO.Schema(
node_id="TencentTextToModelNode",
display_name="Hunyuan3D: Text to Model",
display_name="Text to 3D model",
category="api node/3d/Tencent",
inputs=[
IO.Combo.Input(
Expand Down Expand Up @@ -166,7 +166,7 @@ class TencentImageToModelNode(IO.ComfyNode):
def define_schema(cls):
return IO.Schema(
node_id="TencentImageToModelNode",
display_name="Hunyuan3D: Image(s) to Model",
display_name="Image to 3D Model",
category="api node/3d/Tencent",
inputs=[
IO.Combo.Input(
Expand Down
2 changes: 1 addition & 1 deletion comfy_api_nodes/nodes_kling.py
Original file line number Diff line number Diff line change
Expand Up @@ -2260,7 +2260,7 @@ class KlingLipSyncAudioToVideoNode(IO.ComfyNode):
def define_schema(cls) -> IO.Schema:
return IO.Schema(
node_id="KlingLipSyncAudioToVideoNode",
display_name="Kling Lip Sync Video with Audio",
display_name="Lipsync",
category="api node/video/Kling",
description="Kling Lip Sync Audio to Video Node. Syncs mouth movements in a video file to the audio content of an audio file. When using, ensure that the audio contains clearly distinguishable vocals and that the video contains a distinct face. The audio file should not be larger than 5MB. The video file should not be larger than 100MB, should have height/width between 720px and 1920px, and should be between 2s and 10s in length.",
inputs=[
Expand Down
2 changes: 1 addition & 1 deletion comfy_api_nodes/nodes_openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ class OpenAIChatNode(IO.ComfyNode):
def define_schema(cls):
return IO.Schema(
node_id="OpenAIChatNode",
display_name="OpenAI ChatGPT",
display_name="Text generation (LLM)",
category="api node/text/OpenAI",
description="Generate text responses from an OpenAI model.",
inputs=[
Expand Down
2 changes: 1 addition & 1 deletion comfy_api_nodes/nodes_recraft.py
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ class RecraftRemoveBackgroundNode(IO.ComfyNode):
def define_schema(cls):
return IO.Schema(
node_id="RecraftRemoveBackgroundNode",
display_name="Recraft Remove Background",
display_name="Remove Background",
category="api node/image/Recraft",
description="Remove background from image, and return processed image and mask.",
inputs=[
Expand Down
2 changes: 1 addition & 1 deletion comfy_api_nodes/nodes_stability.py
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ class StabilityTextToAudio(IO.ComfyNode):
def define_schema(cls):
return IO.Schema(
node_id="StabilityTextToAudio",
display_name="Stability AI Text To Audio",
display_name="Music generation",
category="api node/audio/Stability AI",
description=cleandoc(cls.__doc__ or ""),
inputs=[
Expand Down
2 changes: 1 addition & 1 deletion comfy_extras/nodes_audio.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def define_schema(cls):
return IO.Schema(
node_id="SaveAudio",
search_aliases=["export flac"],
display_name="Save Audio (FLAC)",
display_name="Save Audio",
category="audio",
inputs=[
IO.Audio.Input("audio"),
Expand Down
3 changes: 2 additions & 1 deletion comfy_extras/nodes_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def define_schema(cls):
return IO.Schema(
node_id="ImageCrop",
search_aliases=["trim"],
display_name="Image Crop (Deprecated)",
display_name="Crop Image (Deprecated)",
category="image/transform",
is_deprecated=True,
inputs=[
Expand Down Expand Up @@ -587,6 +587,7 @@ class ImageRotate(IO.ComfyNode):
def define_schema(cls):
return IO.Schema(
node_id="ImageRotate",
display_name="Rotate",
search_aliases=["turn", "flip orientation"],
category="image/transform",
inputs=[
Expand Down
2 changes: 1 addition & 1 deletion comfy_extras/nodes_load_3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def define_schema(cls):
]
return IO.Schema(
node_id="Load3D",
display_name="Load 3D & Animation",
display_name="Load 3D model",
category="3d",
is_experimental=True,
inputs=[
Expand Down
2 changes: 1 addition & 1 deletion comfy_extras/nodes_video.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def define_schema(cls):
return io.Schema(
node_id="GetVideoComponents",
search_aliases=["extract frames", "split video", "video to images", "demux"],
display_name="Get Video Components",
display_name="Extract frame",
category="image/video",
description="Extracts all components from a video: frames, audio, and framerate.",
inputs=[
Expand Down
14 changes: 7 additions & 7 deletions nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -2105,7 +2105,7 @@ def expand_image(self, image, left, top, right, bottom, feathering):
"CheckpointLoader": "Load Checkpoint With Config (DEPRECATED)",
"CheckpointLoaderSimple": "Load Checkpoint",
"VAELoader": "Load VAE",
"LoraLoader": "Load LoRA (Model and CLIP)",
"LoraLoader": "Load style (LoRA)",
"LoraLoaderModelOnly": "Load LoRA",
"CLIPLoader": "Load CLIP",
"ControlNetLoader": "Load ControlNet Model",
Expand All @@ -2116,7 +2116,7 @@ def expand_image(self, image, left, top, right, bottom, feathering):
# Conditioning
"CLIPVisionEncode": "CLIP Vision Encode",
"StyleModelApply": "Apply Style Model",
"CLIPTextEncode": "CLIP Text Encode (Prompt)",
"CLIPTextEncode": "Text",
"CLIPSetLastLayer": "CLIP Set Last Layer",
"ConditioningCombine": "Conditioning (Combine)",
"ConditioningAverage ": "Conditioning (Average)",
Expand Down Expand Up @@ -2147,15 +2147,15 @@ def expand_image(self, image, left, top, right, bottom, feathering):
"LoadImage": "Load Image",
"LoadImageMask": "Load Image (as Mask)",
"LoadImageOutput": "Load Image (from Outputs)",
"ImageScale": "Upscale Image",
"ImageScale": "Resize Image",
"ImageScaleBy": "Upscale Image By",
"ImageInvert": "Invert Image",
"ImageInvert": "Invert",
"ImagePadForOutpaint": "Pad Image for Outpainting",
"ImageBatch": "Batch Images",
"ImageCrop": "Image Crop",
"ImageBatch": "Batch Image",
"ImageCrop": "Crop Image",
"ImageStitch": "Image Stitch",
"ImageBlend": "Image Blend",
"ImageBlur": "Image Blur",
"ImageBlur": "Blur",
"ImageQuantize": "Image Quantize",
"ImageSharpen": "Image Sharpen",
"ImageScaleToTotalPixels": "Scale Image to Total Pixels",
Expand Down