├── .gitignore ├── README.md ├── requirements.txt ├── src ├── main.py ├── module │ ├── client.py │ ├── eventloop.py │ ├── inference_manager.py │ ├── ui.py │ └── workflow_manager.py ├── schemas │ └── generate_settings.py └── utils │ └── util.py └── workflows ├── 852_a_scribble_xl ├── settings.json ├── workflow_api.json └── workflow_api_debug.json ├── img2img_xl ├── settings.json ├── workflow_api.json └── workflow_api_debug.json └── kataragi_lineart_xl ├── settings.json ├── workflow_api.json └── workflow_api_debug.json /.gitignore: -------------------------------------------------------------------------------- 1 | .logs 2 | venv 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/src/main.py -------------------------------------------------------------------------------- /src/module/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/src/module/client.py -------------------------------------------------------------------------------- /src/module/eventloop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/src/module/eventloop.py -------------------------------------------------------------------------------- /src/module/inference_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/src/module/inference_manager.py -------------------------------------------------------------------------------- /src/module/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/src/module/ui.py -------------------------------------------------------------------------------- /src/module/workflow_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/src/module/workflow_manager.py -------------------------------------------------------------------------------- /src/schemas/generate_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/src/schemas/generate_settings.py -------------------------------------------------------------------------------- /src/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/src/utils/util.py -------------------------------------------------------------------------------- /workflows/852_a_scribble_xl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/852_a_scribble_xl/settings.json -------------------------------------------------------------------------------- /workflows/852_a_scribble_xl/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/852_a_scribble_xl/workflow_api.json -------------------------------------------------------------------------------- /workflows/852_a_scribble_xl/workflow_api_debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/852_a_scribble_xl/workflow_api_debug.json -------------------------------------------------------------------------------- /workflows/img2img_xl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/img2img_xl/settings.json -------------------------------------------------------------------------------- /workflows/img2img_xl/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/img2img_xl/workflow_api.json -------------------------------------------------------------------------------- /workflows/img2img_xl/workflow_api_debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/img2img_xl/workflow_api_debug.json -------------------------------------------------------------------------------- /workflows/kataragi_lineart_xl/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/kataragi_lineart_xl/settings.json -------------------------------------------------------------------------------- /workflows/kataragi_lineart_xl/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/kataragi_lineart_xl/workflow_api.json -------------------------------------------------------------------------------- /workflows/kataragi_lineart_xl/workflow_api_debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minux302/psd-watch-inference/HEAD/workflows/kataragi_lineart_xl/workflow_api_debug.json --------------------------------------------------------------------------------