@@ -77,6 +77,36 @@ def from_pretrained(cls, *args, **kwargs):
77
77
requires_backends (cls , ["torch" , "transformers" ])
78
78
79
79
80
+ class QwenImageEditPlusAutoBlocks (metaclass = DummyObject ):
81
+ _backends = ["torch" , "transformers" ]
82
+
83
+ def __init__ (self , * args , ** kwargs ):
84
+ requires_backends (self , ["torch" , "transformers" ])
85
+
86
+ @classmethod
87
+ def from_config (cls , * args , ** kwargs ):
88
+ requires_backends (cls , ["torch" , "transformers" ])
89
+
90
+ @classmethod
91
+ def from_pretrained (cls , * args , ** kwargs ):
92
+ requires_backends (cls , ["torch" , "transformers" ])
93
+
94
+
95
+ class QwenImageEditPlusModularPipeline (metaclass = DummyObject ):
96
+ _backends = ["torch" , "transformers" ]
97
+
98
+ def __init__ (self , * args , ** kwargs ):
99
+ requires_backends (self , ["torch" , "transformers" ])
100
+
101
+ @classmethod
102
+ def from_config (cls , * args , ** kwargs ):
103
+ requires_backends (cls , ["torch" , "transformers" ])
104
+
105
+ @classmethod
106
+ def from_pretrained (cls , * args , ** kwargs ):
107
+ requires_backends (cls , ["torch" , "transformers" ])
108
+
109
+
80
110
class QwenImageModularPipeline (metaclass = DummyObject ):
81
111
_backends = ["torch" , "transformers" ]
82
112
0 commit comments