├── .flake8 ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ └── bug_report.yml ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── README_JP.md ├── esbuild.config.mjs ├── eslint.config.mjs ├── javascript ├── weight_helper.js └── weight_helper.js.map ├── package.json ├── scripts ├── analyzer.py ├── api.py ├── const.py ├── env.py ├── utils.py └── weight_helper.py ├── src ├── components │ ├── sections │ │ ├── common-section.ts │ │ ├── header-section.ts │ │ ├── lbw-section.ts │ │ ├── lora-settings-section.ts │ │ ├── metadata-section.ts │ │ └── preview-section.ts │ └── ui-template.ts ├── index.ts └── shared │ ├── constants │ └── common-const.ts │ ├── hooks │ └── use-global-state.ts │ ├── manager │ ├── api-manager.ts │ ├── cache-manager.ts │ ├── config-manager.ts │ └── history-manager.ts │ ├── state │ ├── current-state.ts │ └── global-weight-helper-state.ts │ ├── types │ ├── global.d.ts │ └── lora-types.ts │ └── utils │ ├── api-utils.ts │ ├── common-utils.ts │ ├── editor-utils.ts │ ├── helper-utils.ts │ ├── state-utils.ts │ └── weight-utils.ts ├── style.css └── tsconfig.json /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 160 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/README.md -------------------------------------------------------------------------------- /README_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/README_JP.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /javascript/weight_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/javascript/weight_helper.js -------------------------------------------------------------------------------- /javascript/weight_helper.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/javascript/weight_helper.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/package.json -------------------------------------------------------------------------------- /scripts/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/scripts/analyzer.py -------------------------------------------------------------------------------- /scripts/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/scripts/api.py -------------------------------------------------------------------------------- /scripts/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/scripts/const.py -------------------------------------------------------------------------------- /scripts/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/scripts/env.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /scripts/weight_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/scripts/weight_helper.py -------------------------------------------------------------------------------- /src/components/sections/common-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/components/sections/common-section.ts -------------------------------------------------------------------------------- /src/components/sections/header-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/components/sections/header-section.ts -------------------------------------------------------------------------------- /src/components/sections/lbw-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/components/sections/lbw-section.ts -------------------------------------------------------------------------------- /src/components/sections/lora-settings-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/components/sections/lora-settings-section.ts -------------------------------------------------------------------------------- /src/components/sections/metadata-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/components/sections/metadata-section.ts -------------------------------------------------------------------------------- /src/components/sections/preview-section.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/components/sections/preview-section.ts -------------------------------------------------------------------------------- /src/components/ui-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/components/ui-template.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/shared/constants/common-const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/constants/common-const.ts -------------------------------------------------------------------------------- /src/shared/hooks/use-global-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/hooks/use-global-state.ts -------------------------------------------------------------------------------- /src/shared/manager/api-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/manager/api-manager.ts -------------------------------------------------------------------------------- /src/shared/manager/cache-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/manager/cache-manager.ts -------------------------------------------------------------------------------- /src/shared/manager/config-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/manager/config-manager.ts -------------------------------------------------------------------------------- /src/shared/manager/history-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/manager/history-manager.ts -------------------------------------------------------------------------------- /src/shared/state/current-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/state/current-state.ts -------------------------------------------------------------------------------- /src/shared/state/global-weight-helper-state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/state/global-weight-helper-state.ts -------------------------------------------------------------------------------- /src/shared/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/types/global.d.ts -------------------------------------------------------------------------------- /src/shared/types/lora-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/types/lora-types.ts -------------------------------------------------------------------------------- /src/shared/utils/api-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/utils/api-utils.ts -------------------------------------------------------------------------------- /src/shared/utils/common-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/utils/common-utils.ts -------------------------------------------------------------------------------- /src/shared/utils/editor-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/utils/editor-utils.ts -------------------------------------------------------------------------------- /src/shared/utils/helper-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/utils/helper-utils.ts -------------------------------------------------------------------------------- /src/shared/utils/state-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/utils/state-utils.ts -------------------------------------------------------------------------------- /src/shared/utils/weight-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/src/shared/utils/weight-utils.ts -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/style.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nihedon/sd-webui-weight-helper/HEAD/tsconfig.json --------------------------------------------------------------------------------