├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md └── src ├── comic_generator_xl.py ├── photomaker_id_encoder.py ├── pipeline.py ├── rp_handler.py ├── rp_schema.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/README.md -------------------------------------------------------------------------------- /src/comic_generator_xl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/src/comic_generator_xl.py -------------------------------------------------------------------------------- /src/photomaker_id_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/src/photomaker_id_encoder.py -------------------------------------------------------------------------------- /src/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/src/pipeline.py -------------------------------------------------------------------------------- /src/rp_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/src/rp_handler.py -------------------------------------------------------------------------------- /src/rp_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/src/rp_schema.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bes-dev/story-diffusion-runpod-serverless-worker/HEAD/src/utils.py --------------------------------------------------------------------------------