├── .gitignore ├── README-EN.md ├── README.md ├── chilloutmix-api-template ├── Dockerfile ├── build.sh ├── handler.py ├── start.sh └── webui.py ├── chilloutmix-template ├── Dockerfile ├── build.sh ├── models │ └── download.sh ├── relauncher.py ├── start.sh └── webui-user.sh ├── guofeng-api-template ├── Dockerfile ├── build.sh ├── handler.py ├── start.sh └── webui.py ├── guofeng-template ├── Dockerfile ├── build.sh ├── models │ └── download.sh ├── relauncher.py ├── start.sh └── webui-user.sh ├── runpod_api_test.py ├── sd-auto-v1 ├── Dockerfile ├── build.sh ├── install.py ├── relauncher.py ├── start.sh ├── webui-user.sh └── webui.py ├── serverless-zh.md └── web-ui-zh.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.safetensors 2 | *.log -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/README-EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/README.md -------------------------------------------------------------------------------- /chilloutmix-api-template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-api-template/Dockerfile -------------------------------------------------------------------------------- /chilloutmix-api-template/build.sh: -------------------------------------------------------------------------------- 1 | DOCKER_BUILDKIT=1 docker build -t chilloutai/auto-api:1.2.0 . -------------------------------------------------------------------------------- /chilloutmix-api-template/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-api-template/handler.py -------------------------------------------------------------------------------- /chilloutmix-api-template/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-api-template/start.sh -------------------------------------------------------------------------------- /chilloutmix-api-template/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-api-template/webui.py -------------------------------------------------------------------------------- /chilloutmix-template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-template/Dockerfile -------------------------------------------------------------------------------- /chilloutmix-template/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-template/build.sh -------------------------------------------------------------------------------- /chilloutmix-template/models/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-template/models/download.sh -------------------------------------------------------------------------------- /chilloutmix-template/relauncher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-template/relauncher.py -------------------------------------------------------------------------------- /chilloutmix-template/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-template/start.sh -------------------------------------------------------------------------------- /chilloutmix-template/webui-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/chilloutmix-template/webui-user.sh -------------------------------------------------------------------------------- /guofeng-api-template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-api-template/Dockerfile -------------------------------------------------------------------------------- /guofeng-api-template/build.sh: -------------------------------------------------------------------------------- 1 | DOCKER_BUILDKIT=1 docker build -t chilloutai/guofeng-api:1.0.0 . -------------------------------------------------------------------------------- /guofeng-api-template/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-api-template/handler.py -------------------------------------------------------------------------------- /guofeng-api-template/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-api-template/start.sh -------------------------------------------------------------------------------- /guofeng-api-template/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-api-template/webui.py -------------------------------------------------------------------------------- /guofeng-template/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-template/Dockerfile -------------------------------------------------------------------------------- /guofeng-template/build.sh: -------------------------------------------------------------------------------- 1 | DOCKER_BUILDKIT=1 docker build -t chilloutai/guofeng-template:1.0.0 . -------------------------------------------------------------------------------- /guofeng-template/models/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-template/models/download.sh -------------------------------------------------------------------------------- /guofeng-template/relauncher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-template/relauncher.py -------------------------------------------------------------------------------- /guofeng-template/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-template/start.sh -------------------------------------------------------------------------------- /guofeng-template/webui-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/guofeng-template/webui-user.sh -------------------------------------------------------------------------------- /runpod_api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/runpod_api_test.py -------------------------------------------------------------------------------- /sd-auto-v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/sd-auto-v1/Dockerfile -------------------------------------------------------------------------------- /sd-auto-v1/build.sh: -------------------------------------------------------------------------------- 1 | DOCKER_BUILDKIT=1 docker build -t chilloutai/stable-diffusion:1.0.0 . -------------------------------------------------------------------------------- /sd-auto-v1/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/sd-auto-v1/install.py -------------------------------------------------------------------------------- /sd-auto-v1/relauncher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/sd-auto-v1/relauncher.py -------------------------------------------------------------------------------- /sd-auto-v1/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/sd-auto-v1/start.sh -------------------------------------------------------------------------------- /sd-auto-v1/webui-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/sd-auto-v1/webui-user.sh -------------------------------------------------------------------------------- /sd-auto-v1/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/sd-auto-v1/webui.py -------------------------------------------------------------------------------- /serverless-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/serverless-zh.md -------------------------------------------------------------------------------- /web-ui-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kale5195/chilloutai/HEAD/web-ui-zh.md --------------------------------------------------------------------------------