We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6664d80 commit 5afe6bfCopy full SHA for 5afe6bf
src/diffusers/modular_pipelines/flux/modular_pipeline.py
@@ -13,15 +13,15 @@
13
# limitations under the License.
14
15
16
-from ...loaders import FluxLoraLoaderMixin
+from ...loaders import FluxLoraLoaderMixin, TextualInversionLoaderMixin
17
from ...utils import logging
18
from ..modular_pipeline import ModularPipeline
19
20
21
logger = logging.get_logger(__name__) # pylint: disable=invalid-name
22
23
24
-class FluxModularPipeline(ModularPipeline, FluxLoraLoaderMixin):
+class FluxModularPipeline(ModularPipeline, FluxLoraLoaderMixin, TextualInversionLoaderMixin):
25
"""
26
A ModularPipeline for Flux.
27
0 commit comments