2022-08-27 18:32:28 +00:00
|
|
|
import os
|
2022-09-03 09:08:45 +00:00
|
|
|
import threading
|
2022-10-01 20:47:42 +00:00
|
|
|
import time
|
2022-10-01 21:50:03 +00:00
|
|
|
import importlib
|
2022-08-31 08:04:19 +00:00
|
|
|
import signal
|
2022-09-26 14:29:50 +00:00
|
|
|
import threading
|
2022-10-18 06:51:53 +00:00
|
|
|
from fastapi import FastAPI
|
2022-10-07 21:56:00 +00:00
|
|
|
from fastapi.middleware.gzip import GZipMiddleware
|
|
|
|
|
2022-10-06 10:21:32 +00:00
|
|
|
from modules.paths import script_path
|
|
|
|
|
2022-10-31 14:36:45 +00:00
|
|
|
from modules import devices, sd_samplers, upscaler, extensions
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.codeformer_model as codeformer
|
2022-09-11 15:48:36 +00:00
|
|
|
import modules.extras
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.face_restoration
|
|
|
|
import modules.gfpgan_model as gfpgan
|
2022-09-03 09:08:45 +00:00
|
|
|
import modules.img2img
|
2022-10-02 12:56:22 +00:00
|
|
|
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.lowvram
|
2022-09-30 20:26:18 +00:00
|
|
|
import modules.paths
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.scripts
|
|
|
|
import modules.sd_hijack
|
2022-09-17 09:05:04 +00:00
|
|
|
import modules.sd_models
|
2022-10-30 14:54:31 +00:00
|
|
|
import modules.sd_vae
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.shared as shared
|
|
|
|
import modules.txt2img
|
2022-10-30 14:46:43 +00:00
|
|
|
import modules.script_callbacks
|
2022-10-02 12:56:22 +00:00
|
|
|
|
2022-09-26 14:29:50 +00:00
|
|
|
import modules.ui
|
2022-09-30 20:26:18 +00:00
|
|
|
from modules import devices
|
2022-09-26 15:27:18 +00:00
|
|
|
from modules import modelloader
|
2022-09-26 14:29:50 +00:00
|
|
|
from modules.paths import script_path
|
|
|
|
from modules.shared import cmd_opts
|
2022-10-11 12:51:22 +00:00
|
|
|
import modules.hypernetworks.hypernetwork
|
2022-09-03 09:08:45 +00:00
|
|
|
|
2022-09-17 09:05:04 +00:00
|
|
|
queue_lock = threading.Lock()
|
2022-09-11 15:48:36 +00:00
|
|
|
|
2022-09-08 09:17:26 +00:00
|
|
|
|
2022-09-17 09:05:04 +00:00
|
|
|
def wrap_queued_call(func):
|
|
|
|
def f(*args, **kwargs):
|
|
|
|
with queue_lock:
|
|
|
|
res = func(*args, **kwargs)
|
2022-08-22 14:15:46 +00:00
|
|
|
|
2022-09-17 09:05:04 +00:00
|
|
|
return res
|
2022-08-29 17:10:59 +00:00
|
|
|
|
2022-09-17 09:05:04 +00:00
|
|
|
return f
|
2022-08-27 18:32:28 +00:00
|
|
|
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-10-02 12:03:39 +00:00
|
|
|
def wrap_gradio_gpu_call(func, extra_outputs=None):
|
2022-09-03 09:08:45 +00:00
|
|
|
def f(*args, **kwargs):
|
2022-10-30 06:10:22 +00:00
|
|
|
|
|
|
|
shared.state.begin()
|
2022-09-05 23:09:01 +00:00
|
|
|
|
2022-09-03 09:08:45 +00:00
|
|
|
with queue_lock:
|
|
|
|
res = func(*args, **kwargs)
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-10-30 06:10:22 +00:00
|
|
|
shared.state.end()
|
2022-09-29 08:32:12 +00:00
|
|
|
|
2022-09-03 09:08:45 +00:00
|
|
|
return res
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-10-02 12:03:39 +00:00
|
|
|
return modules.ui.wrap_gradio_call(f, extra_outputs=extra_outputs)
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-10-22 09:23:45 +00:00
|
|
|
|
2022-10-12 06:00:39 +00:00
|
|
|
def initialize():
|
2022-10-31 14:36:45 +00:00
|
|
|
extensions.list_extensions()
|
|
|
|
|
2022-10-20 15:58:52 +00:00
|
|
|
if cmd_opts.ui_debug_mode:
|
2022-10-24 06:39:46 +00:00
|
|
|
shared.sd_upscalers = upscaler.UpscalerLanczos().scalers
|
|
|
|
modules.scripts.load_scripts()
|
2022-10-20 15:58:52 +00:00
|
|
|
return
|
2022-10-24 06:39:46 +00:00
|
|
|
|
2022-10-12 06:00:39 +00:00
|
|
|
modelloader.cleanup_models()
|
|
|
|
modules.sd_models.setup_model()
|
|
|
|
codeformer.setup_model(cmd_opts.codeformer_models_path)
|
|
|
|
gfpgan.setup_model(cmd_opts.gfpgan_models_path)
|
|
|
|
shared.face_restorers.append(modules.face_restoration.FaceRestoration())
|
|
|
|
modelloader.load_upscalers()
|
2022-08-25 18:52:05 +00:00
|
|
|
|
2022-10-24 06:39:46 +00:00
|
|
|
modules.scripts.load_scripts()
|
|
|
|
|
2022-10-30 14:54:31 +00:00
|
|
|
modules.sd_vae.refresh_vae_list()
|
2022-10-22 09:23:45 +00:00
|
|
|
modules.sd_models.load_model()
|
2022-11-01 07:01:49 +00:00
|
|
|
shared.opts.onchange("sd_model_checkpoint", wrap_queued_call(lambda: modules.sd_models.reload_model_weights()))
|
2022-11-02 05:51:46 +00:00
|
|
|
shared.opts.onchange("sd_vae", wrap_queued_call(lambda: modules.sd_vae.reload_vae_weights()), call=False)
|
2022-10-12 06:00:39 +00:00
|
|
|
shared.opts.onchange("sd_hypernetwork", wrap_queued_call(lambda: modules.hypernetworks.hypernetwork.load_hypernetwork(shared.opts.sd_hypernetwork)))
|
2022-10-13 17:12:37 +00:00
|
|
|
shared.opts.onchange("sd_hypernetwork_strength", modules.hypernetworks.hypernetwork.apply_strength)
|
2022-10-19 14:30:33 +00:00
|
|
|
|
2022-09-06 05:54:11 +00:00
|
|
|
# make the program just exit at ctrl+c without waiting for anything
|
|
|
|
def sigint_handler(sig, frame):
|
2022-09-06 16:33:51 +00:00
|
|
|
print(f'Interrupted with signal {sig} in {frame}')
|
2022-09-06 05:54:11 +00:00
|
|
|
os._exit(0)
|
2022-08-22 14:15:46 +00:00
|
|
|
|
2022-09-06 05:54:11 +00:00
|
|
|
signal.signal(signal.SIGINT, sigint_handler)
|
2022-08-31 19:19:30 +00:00
|
|
|
|
2022-10-02 18:26:38 +00:00
|
|
|
|
2022-10-17 16:58:34 +00:00
|
|
|
def create_api(app):
|
2022-10-17 08:38:32 +00:00
|
|
|
from modules.api.api import Api
|
2022-10-18 06:51:53 +00:00
|
|
|
api = Api(app, queue_lock)
|
2022-10-17 16:58:34 +00:00
|
|
|
return api
|
|
|
|
|
2022-10-31 14:36:45 +00:00
|
|
|
|
2022-10-17 16:58:34 +00:00
|
|
|
def wait_on_server(demo=None):
|
2022-10-01 17:31:58 +00:00
|
|
|
while 1:
|
2022-10-17 16:58:34 +00:00
|
|
|
time.sleep(0.5)
|
2022-10-31 14:36:45 +00:00
|
|
|
if shared.state.need_restart:
|
|
|
|
shared.state.need_restart = False
|
2022-10-17 16:58:34 +00:00
|
|
|
time.sleep(0.5)
|
|
|
|
demo.close()
|
|
|
|
time.sleep(0.5)
|
|
|
|
break
|
|
|
|
|
2022-10-31 14:36:45 +00:00
|
|
|
|
2022-10-17 16:58:34 +00:00
|
|
|
def api_only():
|
|
|
|
initialize()
|
2022-10-01 17:31:58 +00:00
|
|
|
|
2022-10-17 16:58:34 +00:00
|
|
|
app = FastAPI()
|
|
|
|
app.add_middleware(GZipMiddleware, minimum_size=1000)
|
|
|
|
api = create_api(app)
|
|
|
|
|
2022-11-02 07:04:35 +00:00
|
|
|
modules.script_callbacks.app_started_callback(None, app)
|
|
|
|
|
2022-10-17 16:58:34 +00:00
|
|
|
api.launch(server_name="0.0.0.0" if cmd_opts.listen else "127.0.0.1", port=cmd_opts.port if cmd_opts.port else 7861)
|
2022-10-06 09:08:48 +00:00
|
|
|
|
2022-10-17 06:58:42 +00:00
|
|
|
|
2022-10-20 15:32:17 +00:00
|
|
|
def webui():
|
|
|
|
launch_api = cmd_opts.api
|
2022-10-17 08:38:32 +00:00
|
|
|
initialize()
|
2022-10-17 06:58:42 +00:00
|
|
|
|
2022-10-17 08:38:32 +00:00
|
|
|
while 1:
|
2022-10-02 18:33:22 +00:00
|
|
|
demo = modules.ui.create_ui(wrap_gradio_gpu_call=wrap_gradio_gpu_call)
|
2022-10-18 15:51:36 +00:00
|
|
|
|
2022-10-12 06:00:39 +00:00
|
|
|
app, local_url, share_url = demo.launch(
|
2022-10-02 18:26:38 +00:00
|
|
|
share=cmd_opts.share,
|
|
|
|
server_name="0.0.0.0" if cmd_opts.listen else None,
|
|
|
|
server_port=cmd_opts.port,
|
|
|
|
debug=cmd_opts.gradio_debug,
|
|
|
|
auth=[tuple(cred.split(':')) for cred in cmd_opts.gradio_auth.strip('"').split(',')] if cmd_opts.gradio_auth else None,
|
|
|
|
inbrowser=cmd_opts.autolaunch,
|
|
|
|
prevent_thread_lock=True
|
|
|
|
)
|
2022-10-23 07:46:54 +00:00
|
|
|
# after initial launch, disable --autolaunch for subsequent restarts
|
|
|
|
cmd_opts.autolaunch = False
|
2022-10-17 08:38:32 +00:00
|
|
|
|
2022-11-04 07:07:29 +00:00
|
|
|
# gradio uses a very open CORS policy via app.user_middleware, which makes it possible for
|
|
|
|
# an attacker to trick the user into opening a malicious HTML page, which makes a request to the
|
|
|
|
# running web ui and do whatever the attcker wants, including installing an extension and
|
|
|
|
# runnnig its code. We disable this here. Suggested by RyotaK.
|
|
|
|
app.user_middleware = [x for x in app.user_middleware if x.cls.__name__ != 'CORSMiddleware']
|
|
|
|
|
2022-10-11 11:53:02 +00:00
|
|
|
app.add_middleware(GZipMiddleware, minimum_size=1000)
|
2022-10-02 18:26:38 +00:00
|
|
|
|
2022-10-31 14:36:45 +00:00
|
|
|
if launch_api:
|
2022-10-17 16:58:34 +00:00
|
|
|
create_api(app)
|
2022-10-02 18:26:38 +00:00
|
|
|
|
2022-10-30 14:46:43 +00:00
|
|
|
modules.script_callbacks.app_started_callback(demo, app)
|
|
|
|
|
2022-10-17 16:58:34 +00:00
|
|
|
wait_on_server(demo)
|
2022-10-19 14:30:33 +00:00
|
|
|
|
2022-10-06 09:08:48 +00:00
|
|
|
sd_samplers.set_samplers()
|
|
|
|
|
2022-10-31 14:36:45 +00:00
|
|
|
print('Reloading extensions')
|
|
|
|
extensions.list_extensions()
|
|
|
|
print('Reloading custom scripts')
|
2022-10-22 09:23:45 +00:00
|
|
|
modules.scripts.reload_scripts()
|
2022-10-02 18:26:38 +00:00
|
|
|
print('Reloading modules: modules.ui')
|
|
|
|
importlib.reload(modules.ui)
|
2022-10-11 13:03:31 +00:00
|
|
|
print('Refreshing Model List')
|
|
|
|
modules.sd_models.list_models()
|
2022-10-02 18:26:38 +00:00
|
|
|
print('Restarting Gradio')
|
2022-09-08 09:17:26 +00:00
|
|
|
|
2022-09-11 15:48:36 +00:00
|
|
|
|
2022-09-08 09:17:26 +00:00
|
|
|
if __name__ == "__main__":
|
2022-10-18 06:51:53 +00:00
|
|
|
if cmd_opts.nowebui:
|
2022-10-17 16:58:34 +00:00
|
|
|
api_only()
|
2022-10-17 08:38:32 +00:00
|
|
|
else:
|
2022-10-20 15:32:17 +00:00
|
|
|
webui()
|