参数名称 | 说明 |
---|---|
pipe | 来自前序模块传递的完整管线。 |
model | 指定新的模型对象。若填写,则会替换 pipe 中的 model。 |
pos | 正向 prompt 的 conditioning。替换 pipe 中的正向条件项。 |
neg | 负向 prompt 的 conditioning。替换 pipe 中的负向条件项。 |
latent | 初始 latent 图像(如噪声)。替换 pipe 中的 latent 样本,可用于接入预生成的 latent。 |
vae | 编解码器,替换原管线中的 VAE,可实现跨模型 VAE 组合。 |
clip | 文本编码模型(通常为 CLIP)。替换 prompt 编码器,适配不同风格模型需求。 |
controlnet | 控制模块,如 Canny、Pose 等。替换 pipe 中的 controlnet 部分,可用于模块化组合控制器。 |
image | 源图像,用于控制或修复流程。替换管线中的图像对象,例如输入参考图像。 |
✈️ CR Module Output
节点功能:将处理后的各种组件输出到管道(pipe)中,使其可以在工作流的后续部分使用。
输入参数
输出参数
参数名称 | 说明 |
---|---|
pipe | 更新后的完整管线元组 (model, pos, neg, latent, vae, clip, controlnet, image, seed)。 |
show_help | 节点帮助文档链接。 |
控件参数
参数名称 | 说明 |
---|---|
seed | 随机种子。替换原始 pipe 中的随机种子,控制生成一致性。 |
如下,当有多个工作流的✈️ CR Module Input信息输入时,可以通过✈️ CR Module Output节点进行选择输出哪一个。