This is a Google Gemini API integration node for ComfyUI, supporting text generation and image generation functions. With this node, you can directly use Google's Gemini 2.0 series models in your ComfyUI workflow. Special Note: Regarding the error [ERROR]API call error: 'NoneType' object has no attribute 'parts', it means that the image or prompt you uploaded violates the "Generative AI Prohibited Use Policy". Please test with general scene or product images first to ensure compliance.
2024.3.19: Updated to support multi-image processing.
- Supports Gemini 2.x and 3.x series models
- Supports text-to-text generation
- Supports image-to-text generation (image understanding)
- Supports text-to-image generation (Note: this functionality is implemented in separate .py files, not directly within this node.)
- Built-in proxy support for convenient use by users in China
- Automatic dependency checking and installation
- Comprehensive error handling and logging
- Ensure you have ComfyUI installed.
- Clone or download this repository into ComfyUI's
custom_nodesdirectory:cd ComfyUI/custom_nodes git clone https://github.com/silveroxides/ComfyUI_Gemini_Expanded_API.git - Install dependencies:
cd ComfyUI_Gemini_Expanded_API pip install -r requirements.txt - Restart ComfyUI.
First, you need to obtain a Google Gemini API key:
- Visit Google AI Studio or Google Cloud Console
- Create an API key (In Google Cloud Console it is recommended to set key restriction to the Generative Language API)
- In ComfyUI, locate and use the
Configure Gemini API Keynode to enter your API key.
- But start by visiting Google Cloud Console Vertex AI API and Enable it.
- Visit the Vertex AI Model Garden and select a Google Gemini model and then "view code" button.
- Read the instructions for chosen model at "Try (Python)" for the environment variable option or "Try while using express mode (Python)" for API key (Currently unsure if API here is working correctly)
- Set environment variables before launching:
GOOGLE_CLOUD_PROJECT=your-project-id,GOOGLE_CLOUD_LOCATION=globalandGOOGLE_GENAI_USE_VERTEXAI=Truefor variable option. - In ComfyUI, locate and use the
Configure Gemini API Keynode and setuse_vertexai_envtotrue.
Use the Expanded Gemini Text/Image node for text generation:
- Connect the API key configuration node to the
configinput. - Enter your prompt text in
prompt. - Adjust generation parameters (temperature, top_p, top_k, etc.).
- If needed, connect an image to the
input_imageinput for image understanding.
If you are in China or other regions requiring a proxy:
- Set
use_proxytoTrue. - Set
proxy_host(default is 127.0.0.1). - Set
proxy_port(default is 7890).
api_key: Google Gemini API key
config: API key configurationprompt: Prompt textmodel: Select model (gemini-2.0-flash, gemini-2.0-flash-exp, gemini-2.0-pro)temperature: Generation temperature (0.0-1.0), controls the randomness and creativity of the output.top_p: Nucleus sampling parameter (0.0-1.0)top_k: Number of candidate tokens to consider (1-100). Higher values mean more diversity.max_output_tokens: Maximum output tokens (1-8192)include_images: Whether to include images in the response (True/False)
input_image: Input image (for image understanding)use_proxy: Whether to use a proxy (True/False)proxy_host: Proxy host addressproxy_port: Proxy port
Text generation node output:
text: Generated textimage: If image generation is enabled, outputs the image.
-
According to Google's "Generative AI Prohibited Use Policy", Gemini API has the following restrictions:
-
Must not be used to generate content that violates laws and regulations.
-
Must not be used to generate harmful, fraudulent, pornographic, or violent content.
-
Must not be used to generate content that infringes on others' privacy or intellectual property rights.
-
Image generation may have additional restrictions, and certain types of images might not be generatable.
-
Using this node requires a stable network connection or effective proxy settings.
-
API requests may be affected by Google server load.
-
Large requests may require longer processing times.
-
The image generation feature requires a model that explicitly supports it (e.g.,
gemini-2.0-flash-exp).
- If you encounter network connection problems, please check your proxy settings.
- If API requests fail, please check if your API key is valid.
- If dependency installation fails, please manually install the required dependency packages.
Thanks to Google for providing the Gemini API service. Thanks to tatookan for creating the original custom node repository for me to expand upon.