├── .gitignore ├── README.md ├── package.json ├── src ├── db.ts ├── fileLocations.ts ├── http-server.ts ├── index.ts ├── process-handler.ts ├── process │ ├── implementations │ │ ├── automatic1111.ts │ │ ├── automatic1111_scripts │ │ │ ├── README.md │ │ │ ├── advanced_seed_blending.py │ │ │ └── prompt_blending.py │ │ └── mock.ts │ ├── index.ts │ └── shared-types.ts └── socket-server.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/package.json -------------------------------------------------------------------------------- /src/db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/db.ts -------------------------------------------------------------------------------- /src/fileLocations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/fileLocations.ts -------------------------------------------------------------------------------- /src/http-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/http-server.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/process-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/process-handler.ts -------------------------------------------------------------------------------- /src/process/implementations/automatic1111.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/process/implementations/automatic1111.ts -------------------------------------------------------------------------------- /src/process/implementations/automatic1111_scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/process/implementations/automatic1111_scripts/README.md -------------------------------------------------------------------------------- /src/process/implementations/automatic1111_scripts/advanced_seed_blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/process/implementations/automatic1111_scripts/advanced_seed_blending.py -------------------------------------------------------------------------------- /src/process/implementations/automatic1111_scripts/prompt_blending.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/process/implementations/automatic1111_scripts/prompt_blending.py -------------------------------------------------------------------------------- /src/process/implementations/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/process/implementations/mock.ts -------------------------------------------------------------------------------- /src/process/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/process/index.ts -------------------------------------------------------------------------------- /src/process/shared-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/process/shared-types.ts -------------------------------------------------------------------------------- /src/socket-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/src/socket-server.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amotile/stable-diffusion-backend/HEAD/tsconfig.json --------------------------------------------------------------------------------