2023-01-21 05:36:07 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
from modules import shared, ui_extra_networks
|
2023-07-16 06:25:32 +00:00
|
|
|
from modules.ui_extra_networks import quote_js
|
2023-08-13 06:32:54 +00:00
|
|
|
from modules.hashes import sha256_from_cache
|
2023-01-21 05:36:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ExtraNetworksPageHypernetworks(ui_extra_networks.ExtraNetworksPage):
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('Hypernetworks')
|
|
|
|
|
|
|
|
def refresh(self):
|
|
|
|
shared.reload_hypernetworks()
|
2024-04-15 16:37:04 +00:00
|
|
|
super().refresh()
|
2023-01-21 05:36:07 +00:00
|
|
|
|
2023-08-03 19:46:57 +00:00
|
|
|
def create_item(self, name, index=None, enable_filter=True):
|
2023-09-09 08:28:06 +00:00
|
|
|
full_path = shared.hypernetworks.get(name)
|
|
|
|
if full_path is None:
|
|
|
|
return
|
|
|
|
|
2023-07-16 05:38:23 +00:00
|
|
|
path, ext = os.path.splitext(full_path)
|
2023-08-13 06:32:54 +00:00
|
|
|
sha256 = sha256_from_cache(full_path, f'hypernet/{name}')
|
|
|
|
shorthash = sha256[0:10] if sha256 else None
|
2024-01-11 20:06:57 +00:00
|
|
|
search_terms = [self.search_terms_from_path(path)]
|
|
|
|
if sha256:
|
|
|
|
search_terms.append(sha256)
|
2023-07-16 05:38:23 +00:00
|
|
|
return {
|
|
|
|
"name": name,
|
|
|
|
"filename": full_path,
|
2023-08-13 06:32:54 +00:00
|
|
|
"shorthash": shorthash,
|
2023-07-16 05:38:23 +00:00
|
|
|
"preview": self.find_preview(path),
|
|
|
|
"description": self.find_description(path),
|
2024-01-11 20:06:57 +00:00
|
|
|
"search_terms": search_terms,
|
2024-04-22 18:10:08 +00:00
|
|
|
"prompt": quote_js(f"<hypernet:{name}:{shared.opts.extra_networks_default_multiplier}>"),
|
2023-07-16 05:38:23 +00:00
|
|
|
"local_preview": f"{path}.preview.{shared.opts.samples_format}",
|
|
|
|
"sort_keys": {'default': index, **self.get_sort_keys(path + ext)},
|
|
|
|
}
|
|
|
|
|
2023-01-21 05:36:07 +00:00
|
|
|
def list_items(self):
|
2023-09-12 00:29:07 +00:00
|
|
|
# instantiate a list to protect against concurrent modification
|
2023-09-09 08:05:50 +00:00
|
|
|
names = list(shared.hypernetworks)
|
|
|
|
for index, name in enumerate(names):
|
2023-09-09 08:28:06 +00:00
|
|
|
item = self.create_item(name, index)
|
|
|
|
if item is not None:
|
|
|
|
yield item
|
2023-01-21 05:36:07 +00:00
|
|
|
|
|
|
|
def allowed_directories_for_previews(self):
|
|
|
|
return [shared.cmd_opts.hypernetwork_dir]
|
|
|
|
|