├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── chat_gpt_integration.py └── roles.json /.gitignore: -------------------------------------------------------------------------------- 1 | config.json 2 | __pycache__ 3 | prompt_log.txt 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vienteck/ComfyUI-Chat-GPT-Integration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vienteck/ComfyUI-Chat-GPT-Integration/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vienteck/ComfyUI-Chat-GPT-Integration/HEAD/__init__.py -------------------------------------------------------------------------------- /chat_gpt_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vienteck/ComfyUI-Chat-GPT-Integration/HEAD/chat_gpt_integration.py -------------------------------------------------------------------------------- /roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vienteck/ComfyUI-Chat-GPT-Integration/HEAD/roles.json --------------------------------------------------------------------------------