mirror of
https://github.com/tusharbhutt/Endless-Nodes.git
synced 2026-03-21 20:42:12 -03:00
Add files via upload
Uploading files for Endless Nodes V1.0
This commit is contained in:
32
batchers/__init__.py
Normal file
32
batchers/__init__.py
Normal 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",
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user