Commit
·
c488d97
1
Parent(s):
bf49323
Refactor image_tab function to update pipeline mode logging
Browse files- tabs/images/handlers.py +1 -1
tabs/images/handlers.py
CHANGED
@@ -63,7 +63,7 @@ def get_pipe(request: BaseReq | BaseImg2ImgReq | BaseInpaintReq):
|
|
63 |
pipe_args['pipeline'] = AutoPipelineForText2Image.from_pipe(**pipe_args)
|
64 |
elif request.custom_addons:
|
65 |
...
|
66 |
-
gr.Info(f"Pipeline Mode: {type(pipe_args['pipeline'])}")
|
67 |
|
68 |
# Enable or Disable Vae
|
69 |
if request.vae:
|
|
|
63 |
pipe_args['pipeline'] = AutoPipelineForText2Image.from_pipe(**pipe_args)
|
64 |
elif request.custom_addons:
|
65 |
...
|
66 |
+
gr.Info(f"Pipeline Mode: {str(type(pipe_args['pipeline']))}")
|
67 |
|
68 |
# Enable or Disable Vae
|
69 |
if request.vae:
|