api.py 31.7 KB
Newer Older
1 2
import base64
import io
3
import time
V
Vladimir Mandic 已提交
4
import datetime
5
import uvicorn
6
import gradio as gr
B
Bruno Seoane 已提交
7
from threading import Lock
S
Sena 已提交
8
from io import BytesIO
V
Vladimir Mandic 已提交
9
from fastapi import APIRouter, Depends, FastAPI, Request, Response
10
from fastapi.security import HTTPBasic, HTTPBasicCredentials
V
Vladimir Mandic 已提交
11 12 13
from fastapi.exceptions import HTTPException
from fastapi.responses import JSONResponse
from fastapi.encoders import jsonable_encoder
14 15
from secrets import compare_digest

16
import modules.shared as shared
17
from modules import sd_samplers, deepbooru, sd_hijack, images, scripts, ui, postprocessing
A
AUTOMATIC 已提交
18 19
from modules.api import models
from modules.shared import opts
20
from modules.processing import StableDiffusionProcessingTxt2Img, StableDiffusionProcessingImg2Img, process_images
V
Vladimir Mandic 已提交
21 22 23
from modules.textual_inversion.textual_inversion import create_embedding, train_embedding
from modules.textual_inversion.preprocess import preprocess
from modules.hypernetworks.hypernetwork import create_hypernetwork, train_hypernetwork
S
Sena 已提交
24
from PIL import PngImagePlugin,Image
Φ
Φφ 已提交
25
from modules.sd_models import checkpoints_list, unload_model_weights, reload_model_weights
26
from modules.sd_models_config import find_checkpoint_config_near_filename
B
Bruno Seoane 已提交
27
from modules.realesrgan_model import get_realesrgan_models
V
Vladimir Mandic 已提交
28
from modules import devices
A
AUTOMATIC 已提交
29
from typing import Dict, List, Any
V
Vladimir Mandic 已提交
30 31
import piexif
import piexif.helper
A
arcticfaded 已提交
32

A
AUTOMATIC 已提交
33

B
Bruno Seoane 已提交
34 35 36
def upscaler_to_index(name: str):
    try:
        return [x.name.lower() for x in shared.sd_upscalers].index(name.lower())
A
AUTOMATIC 已提交
37 38 39
    except Exception as e:
        raise HTTPException(status_code=400, detail=f"Invalid upscaler, needs to be one of these: {' , '.join([x.name for x in shared.sd_upscalers])}") from e

40

N
noodleanon 已提交
41 42 43
def script_name_to_index(name, scripts):
    try:
        return [script.title().lower() for script in scripts].index(name.lower())
A
AUTOMATIC 已提交
44 45 46
    except Exception as e:
        raise HTTPException(status_code=422, detail=f"Script '{name}' not found") from e

47

48 49 50 51
def validate_sampler_name(name):
    config = sd_samplers.all_samplers_map.get(name, None)
    if config is None:
        raise HTTPException(status_code=404, detail="Sampler not found")
52

53
    return name
54

A
AUTOMATIC 已提交
55

B
Bruno Seoane 已提交
56 57
def setUpscalers(req: dict):
    reqDict = vars(req)
58 59
    reqDict['extras_upscaler_1'] = reqDict.pop('upscaler_1', None)
    reqDict['extras_upscaler_2'] = reqDict.pop('upscaler_2', None)
B
Bruno Seoane 已提交
60
    return reqDict
R
Roy Shilkrot 已提交
61

A
AUTOMATIC 已提交
62

S
Sena 已提交
63 64 65
def decode_base64_to_image(encoding):
    if encoding.startswith("data:image/"):
        encoding = encoding.split(";")[1].split(",")[1]
66 67 68
    try:
        image = Image.open(BytesIO(base64.b64decode(encoding)))
        return image
A
AUTOMATIC 已提交
69 70 71
    except Exception as e:
        raise HTTPException(status_code=500, detail="Invalid encoded image") from e

72

73
def encode_pil_to_base64(image):
E
evshiron 已提交
74 75
    with io.BytesIO() as output_bytes:

V
Vladimir Mandic 已提交
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
        if opts.samples_format.lower() == 'png':
            use_metadata = False
            metadata = PngImagePlugin.PngInfo()
            for key, value in image.info.items():
                if isinstance(key, str) and isinstance(value, str):
                    metadata.add_text(key, value)
                    use_metadata = True
            image.save(output_bytes, format="PNG", pnginfo=(metadata if use_metadata else None), quality=opts.jpeg_quality)

        elif opts.samples_format.lower() in ("jpg", "jpeg", "webp"):
            parameters = image.info.get('parameters', None)
            exif_bytes = piexif.dump({
                "Exif": { piexif.ExifIFD.UserComment: piexif.helper.UserComment.dump(parameters or "", encoding="unicode") }
            })
            if opts.samples_format.lower() in ("jpg", "jpeg"):
                image.save(output_bytes, format="JPEG", exif = exif_bytes, quality=opts.jpeg_quality)
            else:
                image.save(output_bytes, format="WEBP", exif = exif_bytes, quality=opts.jpeg_quality)

        else:
            raise HTTPException(status_code=500, detail="Invalid image format")
E
evshiron 已提交
97 98

        bytes_data = output_bytes.getvalue()
V
Vladimir Mandic 已提交
99

E
evshiron 已提交
100
    return base64.b64encode(bytes_data)
101

A
AUTOMATIC 已提交
102

V
Vladimir Mandic 已提交
103
def api_middleware(app: FastAPI):
V
Vladimir Mandic 已提交
104 105 106 107 108 109
    rich_available = True
    try:
        import anyio # importing just so it can be placed on silent list
        import starlette # importing just so it can be placed on silent list
        from rich.console import Console
        console = Console()
A
AUTOMATIC 已提交
110
    except Exception:
V
Vladimir Mandic 已提交
111 112 113
        import traceback
        rich_available = False

V
Vladimir Mandic 已提交
114 115 116 117 118 119
    @app.middleware("http")
    async def log_and_time(req: Request, call_next):
        ts = time.time()
        res: Response = await call_next(req)
        duration = str(round(time.time() - ts, 4))
        res.headers["X-Process-Time"] = duration
V
Vladimir Mandic 已提交
120 121 122
        endpoint = req.scope.get('path', 'err')
        if shared.cmd_opts.api_log and endpoint.startswith('/sdapi'):
            print('API {t} {code} {prot}/{ver} {method} {endpoint} {cli} {duration}'.format(
V
Vladimir Mandic 已提交
123 124 125 126 127 128
                t = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f"),
                code = res.status_code,
                ver = req.scope.get('http_version', '0.0'),
                cli = req.scope.get('client', ('0:0.0.0', 0))[0],
                prot = req.scope.get('scheme', 'err'),
                method = req.scope.get('method', 'err'),
V
Vladimir Mandic 已提交
129
                endpoint = endpoint,
V
Vladimir Mandic 已提交
130 131 132 133
                duration = duration,
            ))
        return res

V
Vladimir Mandic 已提交
134 135 136 137 138 139 140 141
    def handle_exception(request: Request, e: Exception):
        err = {
            "error": type(e).__name__,
            "detail": vars(e).get('detail', ''),
            "body": vars(e).get('body', ''),
            "errors": str(e),
        }
        if not isinstance(e, HTTPException): # do not print backtrace on known httpexceptions
A
AUTOMATIC 已提交
142
            print(f"API error: {request.method}: {request.url} {err}")
V
Vladimir Mandic 已提交
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
            if rich_available:
                console.print_exception(show_locals=True, max_frames=2, extra_lines=1, suppress=[anyio, starlette], word_wrap=False, width=min([console.width, 200]))
            else:
                traceback.print_exc()
        return JSONResponse(status_code=vars(e).get('status_code', 500), content=jsonable_encoder(err))

    @app.middleware("http")
    async def exception_handling(request: Request, call_next):
        try:
            return await call_next(request)
        except Exception as e:
            return handle_exception(request, e)

    @app.exception_handler(Exception)
    async def fastapi_exception_handler(request: Request, e: Exception):
        return handle_exception(request, e)

    @app.exception_handler(HTTPException)
    async def http_exception_handler(request: Request, e: HTTPException):
        return handle_exception(request, e)

164

165
class Api:
B
Bruno Seoane 已提交
166
    def __init__(self, app: FastAPI, queue_lock: Lock):
167
        if shared.cmd_opts.api_auth:
J
Jim Hays 已提交
168
            self.credentials = dict()
169 170
            for auth in shared.cmd_opts.api_auth.split(","):
                user, password = auth.split(":")
J
Jim Hays 已提交
171
                self.credentials[user] = password
172

173
        self.router = APIRouter()
A
arcticfaded 已提交
174 175
        self.app = app
        self.queue_lock = queue_lock
V
Vladimir Mandic 已提交
176
        api_middleware(self.app)
A
AUTOMATIC 已提交
177 178 179 180 181 182
        self.add_api_route("/sdapi/v1/txt2img", self.text2imgapi, methods=["POST"], response_model=models.TextToImageResponse)
        self.add_api_route("/sdapi/v1/img2img", self.img2imgapi, methods=["POST"], response_model=models.ImageToImageResponse)
        self.add_api_route("/sdapi/v1/extra-single-image", self.extras_single_image_api, methods=["POST"], response_model=models.ExtrasSingleImageResponse)
        self.add_api_route("/sdapi/v1/extra-batch-images", self.extras_batch_images_api, methods=["POST"], response_model=models.ExtrasBatchImagesResponse)
        self.add_api_route("/sdapi/v1/png-info", self.pnginfoapi, methods=["POST"], response_model=models.PNGInfoResponse)
        self.add_api_route("/sdapi/v1/progress", self.progressapi, methods=["GET"], response_model=models.ProgressResponse)
183 184
        self.add_api_route("/sdapi/v1/interrogate", self.interrogateapi, methods=["POST"])
        self.add_api_route("/sdapi/v1/interrupt", self.interruptapi, methods=["POST"])
185
        self.add_api_route("/sdapi/v1/skip", self.skip, methods=["POST"])
A
AUTOMATIC 已提交
186
        self.add_api_route("/sdapi/v1/options", self.get_config, methods=["GET"], response_model=models.OptionsModel)
187
        self.add_api_route("/sdapi/v1/options", self.set_config, methods=["POST"])
A
AUTOMATIC 已提交
188 189 190 191 192 193 194 195 196
        self.add_api_route("/sdapi/v1/cmd-flags", self.get_cmd_flags, methods=["GET"], response_model=models.FlagsModel)
        self.add_api_route("/sdapi/v1/samplers", self.get_samplers, methods=["GET"], response_model=List[models.SamplerItem])
        self.add_api_route("/sdapi/v1/upscalers", self.get_upscalers, methods=["GET"], response_model=List[models.UpscalerItem])
        self.add_api_route("/sdapi/v1/sd-models", self.get_sd_models, methods=["GET"], response_model=List[models.SDModelItem])
        self.add_api_route("/sdapi/v1/hypernetworks", self.get_hypernetworks, methods=["GET"], response_model=List[models.HypernetworkItem])
        self.add_api_route("/sdapi/v1/face-restorers", self.get_face_restorers, methods=["GET"], response_model=List[models.FaceRestorerItem])
        self.add_api_route("/sdapi/v1/realesrgan-models", self.get_realesrgan_models, methods=["GET"], response_model=List[models.RealesrganItem])
        self.add_api_route("/sdapi/v1/prompt-styles", self.get_prompt_styles, methods=["GET"], response_model=List[models.PromptStyleItem])
        self.add_api_route("/sdapi/v1/embeddings", self.get_embeddings, methods=["GET"], response_model=models.EmbeddingsResponse)
D
Dean Hopkins 已提交
197
        self.add_api_route("/sdapi/v1/refresh-checkpoints", self.refresh_checkpoints, methods=["POST"])
A
AUTOMATIC 已提交
198 199 200 201 202 203
        self.add_api_route("/sdapi/v1/create/embedding", self.create_embedding, methods=["POST"], response_model=models.CreateResponse)
        self.add_api_route("/sdapi/v1/create/hypernetwork", self.create_hypernetwork, methods=["POST"], response_model=models.CreateResponse)
        self.add_api_route("/sdapi/v1/preprocess", self.preprocess, methods=["POST"], response_model=models.PreprocessResponse)
        self.add_api_route("/sdapi/v1/train/embedding", self.train_embedding, methods=["POST"], response_model=models.TrainResponse)
        self.add_api_route("/sdapi/v1/train/hypernetwork", self.train_hypernetwork, methods=["POST"], response_model=models.TrainResponse)
        self.add_api_route("/sdapi/v1/memory", self.get_memory, methods=["GET"], response_model=models.MemoryResponse)
Φ
Φφ 已提交
204 205
        self.add_api_route("/sdapi/v1/unload-checkpoint", self.unloadapi, methods=["POST"])
        self.add_api_route("/sdapi/v1/reload-checkpoint", self.reloadapi, methods=["POST"])
A
AUTOMATIC 已提交
206
        self.add_api_route("/sdapi/v1/scripts", self.get_scripts_list, methods=["GET"], response_model=models.ScriptsList)
207

208 209 210
        self.default_script_arg_txt2img = []
        self.default_script_arg_img2img = []

211 212 213 214 215
    def add_api_route(self, path: str, endpoint, **kwargs):
        if shared.cmd_opts.api_auth:
            return self.app.add_api_route(path, endpoint, dependencies=[Depends(self.auth)], **kwargs)
        return self.app.add_api_route(path, endpoint, **kwargs)

J
Jim Hays 已提交
216 217 218
    def auth(self, credentials: HTTPBasicCredentials = Depends(HTTPBasic())):
        if credentials.username in self.credentials:
            if compare_digest(credentials.password, self.credentials[credentials.username]):
219 220 221
                return True

        raise HTTPException(status_code=401, detail="Incorrect username or password", headers={"WWW-Authenticate": "Basic"})
222

223 224
    def get_selectable_script(self, script_name, script_runner):
        if script_name is None or script_name == "":
A
AUTOMATIC 已提交
225 226 227 228 229
            return None, None

        script_idx = script_name_to_index(script_name, script_runner.selectable_scripts)
        script = script_runner.selectable_scripts[script_idx]
        return script, script_idx
Y
Yea chen 已提交
230 231
    
    def get_scripts_list(self):
Y
Yea Chen 已提交
232 233
        t2ilist = [str(title.lower()) for title in scripts.scripts_txt2img.titles]
        i2ilist = [str(title.lower()) for title in scripts.scripts_img2img.titles]
Y
Yea chen 已提交
234

A
AUTOMATIC 已提交
235
        return models.ScriptsList(txt2img=t2ilist, img2img=i2ilist)
236

237
    def get_script(self, script_name, script_runner):
V
Vespinian 已提交
238 239 240 241 242
        if script_name is None or script_name == "":
            return None, None
        
        script_idx = script_name_to_index(script_name, script_runner.scripts)
        return script_runner.scripts[script_idx]
243

244
    def init_default_script_args(self, script_runner):
245 246 247 248 249
        #find max idx from the scripts in runner and generate a none array to init script_args
        last_arg_index = 1
        for script in script_runner.scripts:
            if last_arg_index < script.args_to:
                last_arg_index = script.args_to
V
Vespinian 已提交
250
        # None everywhere except position 0 to initialize script args
251
        script_args = [None]*last_arg_index
252 253 254 255 256 257 258 259 260 261 262 263 264 265
        script_args[0] = 0

        # get default values
        with gr.Blocks(): # will throw errors calling ui function without this
            for script in script_runner.scripts:
                if script.ui(script.is_img2img):
                    ui_default_values = []
                    for elem in script.ui(script.is_img2img):
                        ui_default_values.append(elem.value)
                    script_args[script.args_from:script.args_to] = ui_default_values
        return script_args

    def init_script_args(self, request, default_script_args, selectable_scripts, selectable_idx, script_runner):
        script_args = default_script_args.copy()
V
Vespinian 已提交
266 267 268 269
        # position 0 in script_arg is the idx+1 of the selectable script that is going to be run when using scripts.scripts_*2img.run()
        if selectable_scripts:
            script_args[selectable_scripts.args_from:selectable_scripts.args_to] = request.script_args
            script_args[0] = selectable_idx + 1
270 271

        # Now check for always on scripts
272 273
        if request.alwayson_scripts and (len(request.alwayson_scripts) > 0):
            for alwayson_script_name in request.alwayson_scripts.keys():
274
                alwayson_script = self.get_script(alwayson_script_name, script_runner)
A
AUTOMATIC 已提交
275
                if alwayson_script is None:
276 277
                    raise HTTPException(status_code=422, detail=f"always on script {alwayson_script_name} not found")
                # Selectable script in always on script param check
A
AUTOMATIC 已提交
278 279
                if alwayson_script.alwayson is False:
                    raise HTTPException(status_code=422, detail="Cannot have a selectable script in the always on scripts params")
280 281
                # always on script with no arg should always run so you don't really need to add them to the requests
                if "args" in request.alwayson_scripts[alwayson_script_name]:
282 283 284
                    # min between arg length in scriptrunner and arg length in the request
                    for idx in range(0, min((alwayson_script.args_to - alwayson_script.args_from), len(request.alwayson_scripts[alwayson_script_name]["args"]))):
                        script_args[alwayson_script.args_from + idx] = request.alwayson_scripts[alwayson_script_name]["args"][idx]
V
Vespinian 已提交
285 286
        return script_args

A
AUTOMATIC 已提交
287
    def text2imgapi(self, txt2imgreq: models.StableDiffusionTxt2ImgProcessingAPI):
V
Vespinian 已提交
288 289 290 291
        script_runner = scripts.scripts_txt2img
        if not script_runner.scripts:
            script_runner.initialize_scripts(False)
            ui.create_ui()
292 293
        if not self.default_script_arg_txt2img:
            self.default_script_arg_txt2img = self.init_default_script_args(script_runner)
V
Vespinian 已提交
294 295
        selectable_scripts, selectable_script_idx = self.get_selectable_script(txt2imgreq.script_name, script_runner)

296
        populate = txt2imgreq.copy(update={  # Override __init__ params
V
Vespinian 已提交
297
            "sampler_name": validate_sampler_name(txt2imgreq.sampler_name or txt2imgreq.sampler_index),
298 299 300
            "do_not_save_samples": not txt2imgreq.save_images,
            "do_not_save_grid": not txt2imgreq.save_images,
        })
V
Vespinian 已提交
301 302 303 304 305 306
        if populate.sampler_name:
            populate.sampler_index = None  # prevent a warning later on

        args = vars(populate)
        args.pop('script_name', None)
        args.pop('script_args', None) # will refeed them to the pipeline directly after initializing them
307
        args.pop('alwayson_scripts', None)
V
Vespinian 已提交
308

309
        script_args = self.init_script_args(txt2imgreq, self.default_script_arg_txt2img, selectable_scripts, selectable_script_idx, script_runner)
310

311 312
        send_images = args.pop('send_images', True)
        args.pop('save_images', None)
313

A
arcticfaded 已提交
314
        with self.queue_lock:
315
            p = StableDiffusionProcessingTxt2Img(sd_model=shared.sd_model, **args)
316
            p.scripts = script_runner
317 318
            p.outpath_grids = opts.outdir_txt2img_grids
            p.outpath_samples = opts.outdir_txt2img_samples
319

P
Philpax 已提交
320
            shared.state.begin()
A
AUTOMATIC 已提交
321
            if selectable_scripts is not None:
322
                p.script_args = script_args
V
Vespinian 已提交
323
                processed = scripts.scripts_txt2img.run(p, *p.script_args) # Need to pass args as list here
324
            else:
V
Vespinian 已提交
325
                p.script_args = tuple(script_args) # Need to pass args as tuple here
326
                processed = process_images(p)
P
Philpax 已提交
327
            shared.state.end()
328

329
        b64images = list(map(encode_pil_to_base64, processed.images)) if send_images else []
E
evshiron 已提交
330

A
AUTOMATIC 已提交
331
        return models.TextToImageResponse(images=b64images, parameters=vars(txt2imgreq), info=processed.js())
332

A
AUTOMATIC 已提交
333
    def img2imgapi(self, img2imgreq: models.StableDiffusionImg2ImgProcessingAPI):
334 335
        init_images = img2imgreq.init_images
        if init_images is None:
E
evshiron 已提交
336
            raise HTTPException(status_code=404, detail="Init image not found")
337

S
Stephen 已提交
338 339
        mask = img2imgreq.mask
        if mask:
S
Sena 已提交
340
            mask = decode_base64_to_image(mask)
S
Stephen 已提交
341

342 343 344 345
        script_runner = scripts.scripts_img2img
        if not script_runner.scripts:
            script_runner.initialize_scripts(True)
            ui.create_ui()
346 347
        if not self.default_script_arg_img2img:
            self.default_script_arg_img2img = self.init_default_script_args(script_runner)
V
Vespinian 已提交
348
        selectable_scripts, selectable_script_idx = self.get_selectable_script(img2imgreq.script_name, script_runner)
349

V
Vespinian 已提交
350
        populate = img2imgreq.copy(update={  # Override __init__ params
351
            "sampler_name": validate_sampler_name(img2imgreq.sampler_name or img2imgreq.sampler_index),
352 353 354 355
            "do_not_save_samples": not img2imgreq.save_images,
            "do_not_save_grid": not img2imgreq.save_images,
            "mask": mask,
        })
356 357
        if populate.sampler_name:
            populate.sampler_index = None  # prevent a warning later on
358 359 360

        args = vars(populate)
        args.pop('include_init_images', None)  # this is meant to be done by "exclude": True in model, but it's for a reason that I cannot determine.
N
noodleanon 已提交
361
        args.pop('script_name', None)
V
Vespinian 已提交
362
        args.pop('script_args', None)  # will refeed them to the pipeline directly after initializing them
363
        args.pop('alwayson_scripts', None)
364

365
        script_args = self.init_script_args(img2imgreq, self.default_script_arg_img2img, selectable_scripts, selectable_script_idx, script_runner)
366

367 368
        send_images = args.pop('send_images', True)
        args.pop('save_images', None)
369

370
        with self.queue_lock:
371 372
            p = StableDiffusionProcessingImg2Img(sd_model=shared.sd_model, **args)
            p.init_images = [decode_base64_to_image(x) for x in init_images]
373
            p.scripts = script_runner
374 375
            p.outpath_grids = opts.outdir_img2img_grids
            p.outpath_samples = opts.outdir_img2img_samples
376

P
Philpax 已提交
377
            shared.state.begin()
A
AUTOMATIC 已提交
378
            if selectable_scripts is not None:
379
                p.script_args = script_args
V
Vespinian 已提交
380
                processed = scripts.scripts_img2img.run(p, *p.script_args) # Need to pass args as list here
N
noodleanon 已提交
381
            else:
V
Vespinian 已提交
382
                p.script_args = tuple(script_args) # Need to pass args as tuple here
N
noodleanon 已提交
383
                processed = process_images(p)
P
Philpax 已提交
384
            shared.state.end()
E
evshiron 已提交
385

386
        b64images = list(map(encode_pil_to_base64, processed.images)) if send_images else []
387

388
        if not img2imgreq.include_init_images:
389 390 391
            img2imgreq.init_images = None
            img2imgreq.mask = None

A
AUTOMATIC 已提交
392
        return models.ImageToImageResponse(images=b64images, parameters=vars(img2imgreq), info=processed.js())
393

A
AUTOMATIC 已提交
394
    def extras_single_image_api(self, req: models.ExtrasSingleImageRequest):
B
Bruno Seoane 已提交
395
        reqDict = setUpscalers(req)
B
Bruno Seoane 已提交
396

B
Bruno Seoane 已提交
397
        reqDict['image'] = decode_base64_to_image(reqDict['image'])
B
Bruno Seoane 已提交
398 399

        with self.queue_lock:
400
            result = postprocessing.run_extras(extras_mode=0, image_folder="", input_dir="", output_dir="", save_output=False, **reqDict)
B
Bruno Seoane 已提交
401

A
AUTOMATIC 已提交
402
        return models.ExtrasSingleImageResponse(image=encode_pil_to_base64(result[0][0]), html_info=result[1])
403

A
AUTOMATIC 已提交
404
    def extras_batch_images_api(self, req: models.ExtrasBatchImagesRequest):
B
Bruno Seoane 已提交
405
        reqDict = setUpscalers(req)
406

A
AUTOMATIC 已提交
407 408
        image_list = reqDict.pop('imageList', [])
        image_folder = [decode_base64_to_image(x.data) for x in image_list]
409 410

        with self.queue_lock:
A
AUTOMATIC 已提交
411
            result = postprocessing.run_extras(extras_mode=1, image_folder=image_folder, image="", input_dir="", output_dir="", save_output=False, **reqDict)
412

A
AUTOMATIC 已提交
413
        return models.ExtrasBatchImagesResponse(images=list(map(encode_pil_to_base64, result[0])), html_info=result[1])
414

A
AUTOMATIC 已提交
415
    def pnginfoapi(self, req: models.PNGInfoRequest):
B
Bruno Seoane 已提交
416
        if(not req.image.strip()):
A
AUTOMATIC 已提交
417
            return models.PNGInfoResponse(info="")
B
Bruno Seoane 已提交
418

419 420
        image = decode_base64_to_image(req.image.strip())
        if image is None:
A
AUTOMATIC 已提交
421
            return models.PNGInfoResponse(info="")
422 423 424 425 426 427

        geninfo, items = images.read_info_from_image(image)
        if geninfo is None:
            geninfo = ""

        items = {**{'parameters': geninfo}, **items}
B
Bruno Seoane 已提交
428

A
AUTOMATIC 已提交
429
        return models.PNGInfoResponse(info=geninfo, items=items)
430

A
AUTOMATIC 已提交
431
    def progressapi(self, req: models.ProgressRequest = Depends()):
E
evshiron 已提交
432 433 434
        # copy from check_progress_call of ui.py

        if shared.state.job_count == 0:
A
AUTOMATIC 已提交
435
            return models.ProgressResponse(progress=0, eta_relative=0, state=shared.state.dict(), textinfo=shared.state.textinfo)
E
evshiron 已提交
436 437 438 439 440 441 442 443 444 445 446 447 448 449 450

        # avoid dividing zero
        progress = 0.01

        if shared.state.job_count > 0:
            progress += shared.state.job_no / shared.state.job_count
        if shared.state.sampling_steps > 0:
            progress += 1 / shared.state.job_count * shared.state.sampling_step / shared.state.sampling_steps

        time_since_start = time.time() - shared.state.time_start
        eta = (time_since_start/progress)
        eta_relative = eta-time_since_start

        progress = min(progress, 1)

A
AUTOMATIC 已提交
451
        shared.state.set_current_image()
452

453
        current_image = None
454
        if shared.state.current_image and not req.skip_current_image:
455 456
            current_image = encode_pil_to_base64(shared.state.current_image)

A
AUTOMATIC 已提交
457
        return models.ProgressResponse(progress=progress, eta_relative=eta_relative, state=shared.state.dict(), current_image=current_image, textinfo=shared.state.textinfo)
E
evshiron 已提交
458

A
AUTOMATIC 已提交
459
    def interrogateapi(self, interrogatereq: models.InterrogateRequest):
R
Roy Shilkrot 已提交
460 461
        image_b64 = interrogatereq.image
        if image_b64 is None:
J
Jim Hays 已提交
462
            raise HTTPException(status_code=404, detail="Image not found")
R
Roy Shilkrot 已提交
463

464 465
        img = decode_base64_to_image(image_b64)
        img = img.convert('RGB')
R
Roy Shilkrot 已提交
466 467 468

        # Override object param
        with self.queue_lock:
469 470 471
            if interrogatereq.model == "clip":
                processed = shared.interrogator.interrogate(img)
            elif interrogatereq.model == "deepdanbooru":
472
                processed = deepbooru.model.tag(img)
473 474
            else:
                raise HTTPException(status_code=404, detail="Model not found")
J
Jim Hays 已提交
475

A
AUTOMATIC 已提交
476
        return models.InterrogateResponse(caption=processed)
477

E
evshiron 已提交
478 479 480 481 482
    def interruptapi(self):
        shared.state.interrupt()

        return {}

Φ
Φφ 已提交
483 484 485 486 487 488 489 490 491 492
    def unloadapi(self):
        unload_model_weights()

        return {}

    def reloadapi(self):
        reload_model_weights()

        return {}

B
Bruno Seoane 已提交
493 494 495
    def skip(self):
        shared.state.skip()

B
Bruno Seoane 已提交
496 497 498 499 500 501 502 503
    def get_config(self):
        options = {}
        for key in shared.opts.data.keys():
            metadata = shared.opts.data_labels.get(key)
            if(metadata is not None):
                options.update({key: shared.opts.data.get(key, shared.opts.data_labels.get(key).default)})
            else:
                options.update({key: shared.opts.data.get(key, None)})
504

B
Bruno Seoane 已提交
505
        return options
506

B
Bruno Seoane 已提交
507
    def set_config(self, req: Dict[str, Any]):
508 509
        for k, v in req.items():
            shared.opts.set(k, v)
B
Bruno Seoane 已提交
510 511 512 513 514 515 516 517

        shared.opts.save(shared.config_filename)
        return

    def get_cmd_flags(self):
        return vars(shared.cmd_opts)

    def get_samplers(self):
518
        return [{"name": sampler[0], "aliases":sampler[2], "options":sampler[3]} for sampler in sd_samplers.all_samplers]
B
Bruno Seoane 已提交
519 520

    def get_upscalers(self):
521 522 523 524 525
        return [
            {
                "name": upscaler.name,
                "model_name": upscaler.scaler.model_name,
                "model_path": upscaler.data_path,
526
                "model_url": None,
527 528 529 530
                "scale": upscaler.scale,
            }
            for upscaler in shared.sd_upscalers
        ]
531

B
Bruno Seoane 已提交
532
    def get_sd_models(self):
533
        return [{"title": x.title, "model_name": x.model_name, "hash": x.shorthash, "sha256": x.sha256, "filename": x.filename, "config": find_checkpoint_config_near_filename(x)} for x in checkpoints_list.values()]
B
Bruno Seoane 已提交
534 535 536 537 538 539 540 541 542

    def get_hypernetworks(self):
        return [{"name": name, "path": shared.hypernetworks[name]} for name in shared.hypernetworks]

    def get_face_restorers(self):
        return [{"name":x.name(), "cmd_dir": getattr(x, "cmd_dir", None)} for x in shared.face_restorers]

    def get_realesrgan_models(self):
        return [{"name":x.name,"path":x.data_path, "scale":x.scale} for x in get_realesrgan_models(None)]
543

J
Jim Hays 已提交
544
    def get_prompt_styles(self):
B
Bruno Seoane 已提交
545 546
        styleList = []
        for k in shared.prompt_styles.styles:
547
            style = shared.prompt_styles.styles[k]
548
            styleList.append({"name":style[0], "prompt": style[1], "negative_prompt": style[2]})
B
Bruno Seoane 已提交
549 550 551

        return styleList

P
Philpax 已提交
552 553
    def get_embeddings(self):
        db = sd_hijack.model_hijack.embedding_db
554 555 556 557 558 559 560 561 562 563 564 565 566

        def convert_embedding(embedding):
            return {
                "step": embedding.step,
                "sd_checkpoint": embedding.sd_checkpoint,
                "sd_checkpoint_name": embedding.sd_checkpoint_name,
                "shape": embedding.shape,
                "vectors": embedding.vectors,
            }

        def convert_embeddings(embeddings):
            return {embedding.name: convert_embedding(embedding) for embedding in embeddings.values()}

P
Philpax 已提交
567
        return {
568 569
            "loaded": convert_embeddings(db.word_embeddings),
            "skipped": convert_embeddings(db.skipped_embeddings),
P
Philpax 已提交
570 571
        }

D
Dean Hopkins 已提交
572 573
    def refresh_checkpoints(self):
        shared.refresh_checkpoints()
E
evshiron 已提交
574

V
Vladimir Mandic 已提交
575 576 577 578 579 580
    def create_embedding(self, args: dict):
        try:
            shared.state.begin()
            filename = create_embedding(**args) # create empty embedding
            sd_hijack.model_hijack.embedding_db.load_textual_inversion_embeddings() # reload embeddings so new one can be immediately used
            shared.state.end()
A
AUTOMATIC 已提交
581
            return models.CreateResponse(info=f"create embedding filename: {filename}")
V
Vladimir Mandic 已提交
582 583
        except AssertionError as e:
            shared.state.end()
A
AUTOMATIC 已提交
584
            return models.TrainResponse(info=f"create embedding error: {e}")
V
Vladimir Mandic 已提交
585 586 587 588 589 590

    def create_hypernetwork(self, args: dict):
        try:
            shared.state.begin()
            filename = create_hypernetwork(**args) # create empty embedding
            shared.state.end()
A
AUTOMATIC 已提交
591
            return models.CreateResponse(info=f"create hypernetwork filename: {filename}")
V
Vladimir Mandic 已提交
592 593
        except AssertionError as e:
            shared.state.end()
A
AUTOMATIC 已提交
594
            return models.TrainResponse(info=f"create hypernetwork error: {e}")
V
Vladimir Mandic 已提交
595 596 597 598 599 600

    def preprocess(self, args: dict):
        try:
            shared.state.begin()
            preprocess(**args) # quick operation unless blip/booru interrogation is enabled
            shared.state.end()
A
AUTOMATIC 已提交
601
            return models.PreprocessResponse(info = 'preprocess complete')
V
Vladimir Mandic 已提交
602 603
        except KeyError as e:
            shared.state.end()
A
AUTOMATIC 已提交
604
            return models.PreprocessResponse(info=f"preprocess error: invalid token: {e}")
V
Vladimir Mandic 已提交
605 606
        except AssertionError as e:
            shared.state.end()
A
AUTOMATIC 已提交
607
            return models.PreprocessResponse(info=f"preprocess error: {e}")
V
Vladimir Mandic 已提交
608 609
        except FileNotFoundError as e:
            shared.state.end()
A
AUTOMATIC 已提交
610
            return models.PreprocessResponse(info=f'preprocess error: {e}')
V
Vladimir Mandic 已提交
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627

    def train_embedding(self, args: dict):
        try:
            shared.state.begin()
            apply_optimizations = shared.opts.training_xattention_optimizations
            error = None
            filename = ''
            if not apply_optimizations:
                sd_hijack.undo_optimizations()
            try:
                embedding, filename = train_embedding(**args) # can take a long time to complete
            except Exception as e:
                error = e
            finally:
                if not apply_optimizations:
                    sd_hijack.apply_optimizations()
                shared.state.end()
A
AUTOMATIC 已提交
628
            return models.TrainResponse(info=f"train embedding complete: filename: {filename} error: {error}")
V
Vladimir Mandic 已提交
629 630
        except AssertionError as msg:
            shared.state.end()
A
AUTOMATIC 已提交
631
            return models.TrainResponse(info=f"train embedding error: {msg}")
V
Vladimir Mandic 已提交
632 633 634 635

    def train_hypernetwork(self, args: dict):
        try:
            shared.state.begin()
A
AUTOMATIC 已提交
636
            shared.loaded_hypernetworks = []
V
Vladimir Mandic 已提交
637 638 639 640 641 642
            apply_optimizations = shared.opts.training_xattention_optimizations
            error = None
            filename = ''
            if not apply_optimizations:
                sd_hijack.undo_optimizations()
            try:
M
minux302 已提交
643
                hypernetwork, filename = train_hypernetwork(**args)
V
Vladimir Mandic 已提交
644 645 646 647 648 649 650 651
            except Exception as e:
                error = e
            finally:
                shared.sd_model.cond_stage_model.to(devices.device)
                shared.sd_model.first_stage_model.to(devices.device)
                if not apply_optimizations:
                    sd_hijack.apply_optimizations()
                shared.state.end()
A
AUTOMATIC 已提交
652
            return models.TrainResponse(info=f"train embedding complete: filename: {filename} error: {error}")
A
AUTOMATIC 已提交
653
        except AssertionError:
V
Vladimir Mandic 已提交
654
            shared.state.end()
A
AUTOMATIC 已提交
655
            return models.TrainResponse(info=f"train embedding error: {error}")
V
Vladimir Mandic 已提交
656

V
Vladimir Mandic 已提交
657 658
    def get_memory(self):
        try:
A
AUTOMATIC 已提交
659 660
            import os
            import psutil
V
Vladimir Mandic 已提交
661
            process = psutil.Process(os.getpid())
V
Vladimir Mandic 已提交
662 663 664
            res = process.memory_info() # only rss is cross-platform guaranteed so we dont rely on other values
            ram_total = 100 * res.rss / process.memory_percent() # and total memory is calculated as actual value is not cross-platform safe
            ram = { 'free': ram_total - res.rss, 'used': res.rss, 'total': ram_total }
V
Vladimir Mandic 已提交
665 666 667 668 669 670
        except Exception as err:
            ram = { 'error': f'{err}' }
        try:
            import torch
            if torch.cuda.is_available():
                s = torch.cuda.mem_get_info()
V
Vladimir Mandic 已提交
671
                system = { 'free': s[0], 'used': s[1] - s[0], 'total': s[1] }
V
Vladimir Mandic 已提交
672
                s = dict(torch.cuda.memory_stats(shared.device))
V
Vladimir Mandic 已提交
673 674 675 676
                allocated = { 'current': s['allocated_bytes.all.current'], 'peak': s['allocated_bytes.all.peak'] }
                reserved = { 'current': s['reserved_bytes.all.current'], 'peak': s['reserved_bytes.all.peak'] }
                active = { 'current': s['active_bytes.all.current'], 'peak': s['active_bytes.all.peak'] }
                inactive = { 'current': s['inactive_split_bytes.all.current'], 'peak': s['inactive_split_bytes.all.peak'] }
V
Vladimir Mandic 已提交
677 678 679 680 681 682 683 684 685 686
                warnings = { 'retries': s['num_alloc_retries'], 'oom': s['num_ooms'] }
                cuda = {
                    'system': system,
                    'active': active,
                    'allocated': allocated,
                    'reserved': reserved,
                    'inactive': inactive,
                    'events': warnings,
                }
            else:
A
AUTOMATIC 已提交
687
                cuda = {'error': 'unavailable'}
V
Vladimir Mandic 已提交
688
        except Exception as err:
A
AUTOMATIC 已提交
689 690
            cuda = {'error': f'{err}'}
        return models.MemoryResponse(ram=ram, cuda=cuda)
V
Vladimir Mandic 已提交
691

692
    def launch(self, server_name, port):
A
arcticfaded 已提交
693 694
        self.app.include_router(self.router)
        uvicorn.run(self.app, host=server_name, port=port)