Files
comfyui_o1key/nodes/__init__.py
T
Jony ba920f2b66 Publish current ComfyUI O1Key code baseline
Replace the prior release tree with the current plugin, frontend, tests, and documentation. Document retired node IDs and the public Gitea update source.
2026-09-24 19:56:48 +08:00

45 lines
2.5 KiB
Python

"""
节点模块
包含所有 ComfyUI 自定义节点的实现
"""
from .stream_preview import StreamPreview
from .nano_banana import NanoBanana
NanoBananaPro = NanoBanana
from .batch_nano_banana import BatchNanoBananaPro
from .google_gemini import GoogleGemini
from .load_file import LoadFile
from .load_images_from_folder import LoadImagesFromFolder
from .image_stitch_pro import ImageStitchPro
from .remove_metadata import BatchCleanMetadata
from .video_preview import VideoPreview
from .veo_video import GoogleVeo
from .newapi_veo_video import Google31Video
from .minimax_h3_video import MiniMaxH3Video
from .flux_edit import FluxImageEdit
from .universal_llm import UniversalLLMChat
from .batch_images_o1key import BatchImagesO1key
from .seedance_video import SeedanceMultiModal
from .doubao_image import DoubaoImage
from .gpt_image import O1keyGPTImage
from .gpt_image_batch import O1keyGPTImageBatch
from .grok_image import O1keyGrokImage
from .grok_video import O1keyGrokVideo, O1keyGrokVideoEdit
from .K3_video import K3Video
from .K3_motion_control import K3MotionControl
from .save_image_format import SaveImageFormat
from .save_psd import O1keySavePSD
from .remove_bg import O1keyRemoveBackground
from .grid_splitter import O1keyGridSplitter
from .auto_red_cast import O1keyAutoRedCast
from .prompt_multi_function import O1keyPromptMultiFunction
from .video_trim import O1keyVideoTrim
from .seedance_element import SeedanceElementCreate
from .seedance_autopass import SeedanceAutoPass
from .seedance_autopass_batch import SeedanceAutoPassBatch
from .o1key_image_generator import O1keyImageGenerator, O1keyImageSave
from .o1key_video_generator import O1keyVideoGenerator, O1keyVideoResult
from .omni_flash_video import O1keyOmniFlashVideo
__all__ = ['NanoBanana', 'BatchNanoBananaPro', 'GoogleGemini', 'LoadFile', 'LoadImagesFromFolder', 'ImageStitchPro', 'BatchCleanMetadata', 'VideoPreview', 'GoogleVeo', 'Google31Video', 'MiniMaxH3Video', 'FluxImageEdit', 'UniversalLLMChat', 'BatchImagesO1key', 'SeedanceMultiModal', 'StreamPreview', 'DoubaoImage', 'O1keyGPTImage', 'O1keyGPTImageBatch', 'O1keyGrokImage', 'O1keyGrokVideo', 'O1keyGrokVideoEdit', 'K3Video', 'K3MotionControl', 'SaveImageFormat', 'O1keySavePSD', 'O1keyRemoveBackground', 'O1keyGridSplitter', 'O1keyAutoRedCast', 'O1keyPromptMultiFunction', 'O1keyVideoTrim', 'SeedanceElementCreate', 'SeedanceAutoPass', 'SeedanceAutoPassBatch', 'O1keyImageGenerator', 'O1keyImageSave', 'O1keyVideoGenerator', 'O1keyVideoResult', 'O1keyOmniFlashVideo']