Skip to content

Commit

Permalink
Add AuraFlowPipeline and KolorsPipeline to auto
Browse files Browse the repository at this point in the history
  • Loading branch information
Skquark committed Jul 14, 2024
1 parent df0bf24 commit 56aaa7b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/diffusers/pipelines/auto_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

from huggingface_hub.utils import validate_hf_hub_args

from .aura_flow import AuraFlowPipeline
from ..configuration_utils import ConfigMixin
from .controlnet import (
StableDiffusionControlNetImg2ImgPipeline,
Expand Down Expand Up @@ -45,6 +46,7 @@
KandinskyV22Pipeline,
)
from .kandinsky3 import Kandinsky3Img2ImgPipeline, Kandinsky3Pipeline
from .kolors import KolorsPipeline, KolorsImg2ImgPipeline
from .latent_consistency_models import LatentConsistencyModelImg2ImgPipeline, LatentConsistencyModelPipeline
from .pag import (
StableDiffusionControlNetPAGPipeline,
Expand Down Expand Up @@ -95,6 +97,8 @@
("stable-diffusion-controlnet-pag", StableDiffusionControlNetPAGPipeline),
("stable-diffusion-xl-pag", StableDiffusionXLPAGPipeline),
("stable-diffusion-xl-controlnet-pag", StableDiffusionXLControlNetPAGPipeline),
("auraflow", AuraFlowPipeline),
("kolors", KolorsPipeline),
]
)

Expand All @@ -111,6 +115,7 @@
("stable-diffusion-xl-controlnet", StableDiffusionXLControlNetImg2ImgPipeline),
("stable-diffusion-xl-pag", StableDiffusionXLPAGImg2ImgPipeline),
("lcm", LatentConsistencyModelImg2ImgPipeline),
("kolors", KolorsImg2ImgPipeline),
]
)

Expand Down

0 comments on commit 56aaa7b

Please sign in to comment.