Add files via upload

This commit is contained in:
tusharbhutt
2025-06-28 21:39:47 -06:00
committed by GitHub
parent b98d724b4b
commit 1717339547
11 changed files with 2582 additions and 313 deletions

View File

@@ -9,6 +9,10 @@ from .endless_batchers import (
EndlessNode_SDXLBatchPrompts,
EndlessNode_BatchNegativePrompts,
EndlessNode_PromptCounter,
# IGNORE ME, I AM NOT READY!!
# from .endless_fluxlatent import (
# EndlessNode_FluxLatentReplicator,
# EndlessNode_FluxLatentReplicatorFromPrompts,
)
# Node class mappings for ComfyUI
@@ -18,6 +22,9 @@ NODE_CLASS_MAPPINGS = {
"SDXLBatchPrompts": EndlessNode_SDXLBatchPrompts,
"BatchNegativePrompts": EndlessNode_BatchNegativePrompts,
"PromptCounter": EndlessNode_PromptCounter,
# IGNORE ME, I AM NOT READY!!
# "LatentReplicator": EndlessNode_FluxLatentReplicator,
# "LatentReplicatorPrompts": EndlessNode_FluxLatentReplicatorFromPrompts,
}
# Display names for ComfyUI interface
@@ -27,6 +34,7 @@ NODE_DISPLAY_NAME_MAPPINGS = {
"SDXLBatchPrompts": "SDXL Batch Prompts",
"BatchNegativePrompts": "Batch Negative Prompts",
"PromptCounter": "Prompt Counter",
# IGNORE ME, I AM NOT READY!!
# "LatentReplicator": "Latent Replicator",
# "LatentReplicatorPrompts": "Latent Replicator from Prompts",
}