v0.6.1 (improve compatibility with other plugins)
parent
17f857b2de
commit
b2baec1d74
|
|
@ -15,7 +15,7 @@ from modules import script_callbacks
|
|||
from modules.ui_components import FormGroup, FormRow
|
||||
from modules.processing import StableDiffusionProcessingTxt2Img, StableDiffusionProcessingImg2Img, get_fixed_seed
|
||||
|
||||
from scripts.helpers import WebUiComponents, image_hash
|
||||
from scripts.fabric_utils import WebUiComponents, image_hash
|
||||
from scripts.patching import patch_unet_forward_pass, unpatch_unet_forward_pass
|
||||
|
||||
# Compatibility with WebUI v1.3.0 and earlier versions
|
||||
|
|
@ -27,7 +27,7 @@ except ImportError:
|
|||
from modules.ui import create_refresh_button
|
||||
|
||||
|
||||
__version__ = "0.6.0"
|
||||
__version__ = "0.6.1"
|
||||
|
||||
DEBUG = os.getenv("DEBUG", "false").lower() in ("true", "1")
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ from modules.processing import StableDiffusionProcessingTxt2Img
|
|||
from ldm.modules.attention import BasicTransformerBlock
|
||||
|
||||
from scripts.marking import apply_marking_patch, unmark_prompt_context
|
||||
from scripts.helpers import image_hash
|
||||
from scripts.fabric_utils import image_hash
|
||||
from scripts.weighted_attention import weighted_attention
|
||||
from scripts.merging import compute_merge
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue