├── .gitignore ├── README.md ├── __init__.py ├── lib ├── __init__.py ├── credentials.py └── image.py ├── nodes.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | __pycache__/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyUI-KepOpenAI/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyUI-KepOpenAI/HEAD/__init__.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyUI-KepOpenAI/HEAD/lib/credentials.py -------------------------------------------------------------------------------- /lib/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyUI-KepOpenAI/HEAD/lib/image.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/M1kep/ComfyUI-KepOpenAI/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai>=1.1 2 | --------------------------------------------------------------------------------