├── .github └── workflows │ └── publish.yml ├── LICENSE ├── README.md ├── __init__.py ├── node.py ├── prompt.json └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenaka2004/ComfyUI-TagClassifier/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenaka2004/ComfyUI-TagClassifier/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenaka2004/ComfyUI-TagClassifier/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenaka2004/ComfyUI-TagClassifier/HEAD/__init__.py -------------------------------------------------------------------------------- /node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenaka2004/ComfyUI-TagClassifier/HEAD/node.py -------------------------------------------------------------------------------- /prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenaka2004/ComfyUI-TagClassifier/HEAD/prompt.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenaka2004/ComfyUI-TagClassifier/HEAD/pyproject.toml --------------------------------------------------------------------------------