├── .dockerignore ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── cog.yaml ├── helpers ├── ComfyUI_LayerDiffuse.py └── comfyui.py ├── predict.py ├── scripts ├── clone_plugins.sh ├── get_weights.py └── reset.sh ├── sticker_maker_api.json ├── sticker_maker_ui.json ├── weights.json ├── weights_downloader.py └── weights_manifest.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/cog.yaml -------------------------------------------------------------------------------- /helpers/ComfyUI_LayerDiffuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/helpers/ComfyUI_LayerDiffuse.py -------------------------------------------------------------------------------- /helpers/comfyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/helpers/comfyui.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/predict.py -------------------------------------------------------------------------------- /scripts/clone_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/scripts/clone_plugins.sh -------------------------------------------------------------------------------- /scripts/get_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/scripts/get_weights.py -------------------------------------------------------------------------------- /scripts/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/scripts/reset.sh -------------------------------------------------------------------------------- /sticker_maker_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/sticker_maker_api.json -------------------------------------------------------------------------------- /sticker_maker_ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/sticker_maker_ui.json -------------------------------------------------------------------------------- /weights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/weights.json -------------------------------------------------------------------------------- /weights_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/weights_downloader.py -------------------------------------------------------------------------------- /weights_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-stickers/HEAD/weights_manifest.py --------------------------------------------------------------------------------