├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── config.py ├── diffusion.py ├── docker-compose.yml ├── enhancement.py ├── ideas.txt ├── ignores.txt ├── negative.txt ├── prompt.py └── requirements.txt /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/config.py -------------------------------------------------------------------------------- /diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/diffusion.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /enhancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/enhancement.py -------------------------------------------------------------------------------- /ideas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/ideas.txt -------------------------------------------------------------------------------- /ignores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/ignores.txt -------------------------------------------------------------------------------- /negative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/negative.txt -------------------------------------------------------------------------------- /prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/prompt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/n0madic/ai-art-bot/HEAD/requirements.txt --------------------------------------------------------------------------------