├── .gitignore ├── LICENSE ├── README.md ├── README.zh-CN.md ├── TGate.py ├── __init__.py ├── assets ├── after_fixed.png ├── auto_cfg_boost.png ├── auto_cfg_fatest.png ├── before_fixed.png ├── origin_result.png ├── tgate_0_35.png └── tgate_result.png ├── examples └── tgate_workflow_example.png └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /TGate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/TGate.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/after_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/assets/after_fixed.png -------------------------------------------------------------------------------- /assets/auto_cfg_boost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/assets/auto_cfg_boost.png -------------------------------------------------------------------------------- /assets/auto_cfg_fatest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/assets/auto_cfg_fatest.png -------------------------------------------------------------------------------- /assets/before_fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/assets/before_fixed.png -------------------------------------------------------------------------------- /assets/origin_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/assets/origin_result.png -------------------------------------------------------------------------------- /assets/tgate_0_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/assets/tgate_0_35.png -------------------------------------------------------------------------------- /assets/tgate_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/assets/tgate_result.png -------------------------------------------------------------------------------- /examples/tgate_workflow_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/examples/tgate_workflow_example.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JettHu/ComfyUI_TGate/HEAD/pyproject.toml --------------------------------------------------------------------------------