Add files via upload

Uploading files for Endless Nodes V1.0
This commit is contained in:
tusharbhutt
2025-06-21 18:51:00 -06:00
committed by GitHub
parent 4a202db6db
commit df0c9d20c2
20 changed files with 2510 additions and 0 deletions

32
batchers/__init__.py Normal file
View File

@@ -0,0 +1,32 @@
"""
EndlessSeaofStars Custom Nodes for ComfyUI
Batch processing nodes with specialized support for FLUX and SDXL models
"""
from .endless_batchers import (
EndlessNode_SimpleBatchPrompts,
EndlessNode_FluxBatchPrompts,
EndlessNode_SDXLBatchPrompts,
EndlessNode_BatchNegativePrompts,
EndlessNode_PromptCounter,
)
# Node class mappings for ComfyUI
NODE_CLASS_MAPPINGS = {
"SimpleBatchPrompts": EndlessNode_SimpleBatchPrompts,
"FluxBatchPrompts": EndlessNode_FluxBatchPrompts,
"SDXLBatchPrompts": EndlessNode_SDXLBatchPrompts,
"BatchNegativePrompts": EndlessNode_BatchNegativePrompts,
"PromptCounter": EndlessNode_PromptCounter,
}
# Display names for ComfyUI interface
NODE_DISPLAY_NAME_MAPPINGS = {
"SimpleBatchPrompts": "Simple Batch Prompts",
"FluxBatchPrompts": "FLUX Batch Prompts",
"SDXLBatchPrompts": "SDXL Batch Prompts",
"BatchNegativePrompts": "Batch Negative Prompts",
"PromptCounter": "Prompt Counter",
}