use short model name and update hints

This commit is contained in:
Vladimir Mandic
2023-10-19 11:43:29 -04:00
parent 11c073a3ca
commit 6bda4fbc71
8 changed files with 40 additions and 49 deletions
+8 -5
View File
@@ -172,12 +172,15 @@ class StableDiffusionProcessing:
self.s_max = shared.opts.s_max
self.s_tmin = shared.opts.s_tmin
self.s_tmax = float('inf') # not representable as a standard ui option
self.refiner_switch_at = 0 # a1111 compatibility item
self.all_hr_prompts = [] # a1111 compatibility item
self.hr_prompt = '' # a1111 compatibility item
self.comments = {} # a1111 compatibility item
self.is_api = False # a1111 compatibility item
shared.opts.data['clip_skip'] = clip_skip
# TODO a1111 compatibility items
self.refiner_switch_at = 0
self.hr_prompt = ''
self.all_hr_prompts = []
self.hr_negative_prompt = ''
self.all_hr_negative_prompts = []
self.comments = {}
self.is_api = False
@property
def sd_model(self):