├── .dockerignore ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── LICENSE ├── README.md ├── become-image-api.json ├── become-image-ui.json ├── cog.yaml ├── feature-extractor └── preprocessor_config.json ├── helpers ├── ComfyUI_BRIA_AI_RMBG.py ├── ComfyUI_Controlnet_Aux.py ├── ComfyUI_IPAdapter_plus.py ├── ComfyUI_InstantID.py └── comfyui.py ├── predict.py ├── safety_checker.py ├── scripts ├── clone_plugins.sh ├── get_weights.py ├── package_disk_usage.py └── reset.sh ├── weights.json ├── weights_downloader.py ├── weights_licenses.md └── weights_manifest.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/README.md -------------------------------------------------------------------------------- /become-image-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/become-image-api.json -------------------------------------------------------------------------------- /become-image-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/become-image-ui.json -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/cog.yaml -------------------------------------------------------------------------------- /feature-extractor/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/feature-extractor/preprocessor_config.json -------------------------------------------------------------------------------- /helpers/ComfyUI_BRIA_AI_RMBG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/helpers/ComfyUI_BRIA_AI_RMBG.py -------------------------------------------------------------------------------- /helpers/ComfyUI_Controlnet_Aux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/helpers/ComfyUI_Controlnet_Aux.py -------------------------------------------------------------------------------- /helpers/ComfyUI_IPAdapter_plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/helpers/ComfyUI_IPAdapter_plus.py -------------------------------------------------------------------------------- /helpers/ComfyUI_InstantID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/helpers/ComfyUI_InstantID.py -------------------------------------------------------------------------------- /helpers/comfyui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/helpers/comfyui.py -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/predict.py -------------------------------------------------------------------------------- /safety_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/safety_checker.py -------------------------------------------------------------------------------- /scripts/clone_plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/scripts/clone_plugins.sh -------------------------------------------------------------------------------- /scripts/get_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/scripts/get_weights.py -------------------------------------------------------------------------------- /scripts/package_disk_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/scripts/package_disk_usage.py -------------------------------------------------------------------------------- /scripts/reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/scripts/reset.sh -------------------------------------------------------------------------------- /weights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/weights.json -------------------------------------------------------------------------------- /weights_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/weights_downloader.py -------------------------------------------------------------------------------- /weights_licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/weights_licenses.md -------------------------------------------------------------------------------- /weights_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fofr/cog-become-image/HEAD/weights_manifest.py --------------------------------------------------------------------------------