├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── Gemini2_0_nodes.py ├── LICENSE ├── README.md ├── README_EN.md ├── __init__.py ├── pyproject.toml ├── requirements.txt └── workflow ├── Gemini-API-多图.png └── Gemini-API.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemini2_0_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/Gemini2_0_nodes.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/README_EN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/requirements.txt -------------------------------------------------------------------------------- /workflow/Gemini-API-多图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/workflow/Gemini-API-多图.png -------------------------------------------------------------------------------- /workflow/Gemini-API.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-Gemini-API/HEAD/workflow/Gemini-API.png --------------------------------------------------------------------------------