[Runway, Gemini] Update node display names and attributes (#194)

This commit is contained in:
Christian Byrne 2025-05-18 11:11:41 -07:00 committed by Robin Huang
parent aa706f7f40
commit dd4087e959
2 changed files with 2 additions and 1 deletions

View File

@ -150,6 +150,7 @@ class GeminiNode(ComfyNodeABC):
RETURN_TYPES = ("STRING",) RETURN_TYPES = ("STRING",)
FUNCTION = "api_call" FUNCTION = "api_call"
CATEGORY = "api node/text/Gemini" CATEGORY = "api node/text/Gemini"
API_NODE = True
def get_parts_from_response( def get_parts_from_response(
self, response: GeminiGenerateContentResponse self, response: GeminiGenerateContentResponse

View File

@ -555,7 +555,7 @@ NODE_CLASS_MAPPINGS = {
} }
NODE_DISPLAY_NAME_MAPPINGS = { NODE_DISPLAY_NAME_MAPPINGS = {
"RunwayStartEndFrameNode": "Runway Start-End Frame to Video", "RunwayStartEndFrameNode": "Runway First-Last-Frame to Video",
"RunwayImageToVideoNode": "Runway Image to Video", "RunwayImageToVideoNode": "Runway Image to Video",
"RunwayTextToImageNode": "Runway Text to Image", "RunwayTextToImageNode": "Runway Text to Image",
} }