2022-09-30 06:46:23 +08:00
|
|
|
import sys
|
|
|
|
|
2022-09-03 17:08:45 +08:00
|
|
|
import gradio as gr
|
|
|
|
|
2023-08-23 00:05:03 +08:00
|
|
|
from modules import shared_cmd_options, shared_gradio_themes, options, shared_items, sd_models_types
|
2023-05-10 14:02:23 +08:00
|
|
|
from modules.paths_internal import models_path, script_path, data_path, sd_configs_path, sd_default_config, sd_model_file, default_sd_model_file, extensions_dir, extensions_builtin_dir # noqa: F401
|
2023-08-09 15:25:35 +08:00
|
|
|
from modules import util
|
2022-11-27 16:52:53 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
cmd_opts = shared_cmd_options.cmd_opts
|
|
|
|
parser = shared_cmd_options.parser
|
2022-09-11 13:11:27 +08:00
|
|
|
|
2023-08-21 20:07:10 +08:00
|
|
|
batch_cond_uncond = True # old field, unused now in favor of shared.opts.batch_cond_uncond
|
2023-08-22 23:49:08 +08:00
|
|
|
parallel_processing_allowed = True
|
2022-09-14 06:18:07 +08:00
|
|
|
styles_filename = cmd_opts.styles_file
|
2023-08-09 15:25:35 +08:00
|
|
|
config_filename = cmd_opts.ui_settings_file
|
2022-09-24 21:29:20 +08:00
|
|
|
hide_dirs = {"visible": not cmd_opts.hide_ui_dir_config}
|
2023-05-18 01:22:38 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
demo = None
|
2023-01-30 05:25:30 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
device = None
|
2023-01-30 05:25:30 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
weight_load_location = None
|
2022-09-03 17:08:45 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
xformers_available = False
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
hypernetworks = {}
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
loaded_hypernetworks = []
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
state = None
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
prompt_styles = None
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
interrogator = None
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
face_restorers = []
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
options_templates = None
|
|
|
|
opts = None
|
2023-08-09 20:06:03 +08:00
|
|
|
restricted_opts = None
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-08-23 00:05:03 +08:00
|
|
|
sd_model: sd_models_types.WebuiSdModel = None
|
2023-05-02 14:08:00 +08:00
|
|
|
|
2023-01-30 05:25:30 +08:00
|
|
|
settings_components = None
|
2023-05-02 14:08:00 +08:00
|
|
|
"""assinged from ui.py, a mapping on setting names to gradio components repsponsible for those settings"""
|
2023-01-30 05:25:30 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
tab_names = []
|
|
|
|
|
2023-01-03 00:42:10 +08:00
|
|
|
latent_upscale_default_mode = "Latent"
|
|
|
|
latent_upscale_modes = {
|
2023-01-04 18:12:06 +08:00
|
|
|
"Latent": {"mode": "bilinear", "antialias": False},
|
|
|
|
"Latent (antialiased)": {"mode": "bilinear", "antialias": True},
|
|
|
|
"Latent (bicubic)": {"mode": "bicubic", "antialias": False},
|
2023-01-04 18:36:18 +08:00
|
|
|
"Latent (bicubic antialiased)": {"mode": "bicubic", "antialias": True},
|
2023-01-04 18:12:06 +08:00
|
|
|
"Latent (nearest)": {"mode": "nearest", "antialias": False},
|
2023-01-05 23:17:39 +08:00
|
|
|
"Latent (nearest-exact)": {"mode": "nearest-exact", "antialias": False},
|
2023-01-03 00:42:10 +08:00
|
|
|
}
|
|
|
|
|
2022-09-04 23:54:12 +08:00
|
|
|
sd_upscalers = []
|
2022-09-03 17:08:45 +08:00
|
|
|
|
2022-10-16 23:53:56 +08:00
|
|
|
clip_model = None
|
2022-09-06 04:08:06 +08:00
|
|
|
|
2022-09-08 21:37:13 +08:00
|
|
|
progress_print_out = sys.stdout
|
2022-09-06 04:08:06 +08:00
|
|
|
|
2023-03-26 04:11:41 +08:00
|
|
|
gradio_theme = gr.themes.Base()
|
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
total_tqdm = None
|
2023-03-26 04:11:41 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
mem_mon = None
|
2023-05-18 02:45:26 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
options_section = options.options_section
|
|
|
|
OptionInfo = options.OptionInfo
|
|
|
|
OptionHTML = options.OptionHTML
|
2023-08-01 05:24:48 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
natural_sort_key = util.natural_sort_key
|
|
|
|
listfiles = util.listfiles
|
|
|
|
html_path = util.html_path
|
|
|
|
html = util.html
|
|
|
|
walk_files = util.walk_files
|
|
|
|
ldm_print = util.ldm_print
|
2023-08-01 05:24:48 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
reload_gradio_theme = shared_gradio_themes.reload_gradio_theme
|
2023-08-01 05:24:48 +08:00
|
|
|
|
2023-08-09 15:25:35 +08:00
|
|
|
list_checkpoint_tiles = shared_items.list_checkpoint_tiles
|
|
|
|
refresh_checkpoints = shared_items.refresh_checkpoints
|
|
|
|
list_samplers = shared_items.list_samplers
|
|
|
|
reload_hypernetworks = shared_items.reload_hypernetworks
|