From 9e7c38d57b559c60e2c6c210f97aa3fbcd431448 Mon Sep 17 00:00:00 2001 From: Owl-V Date: Thu, 16 Oct 2025 10:49:04 +0800 Subject: [PATCH] Update custom-node-list.json ## Description This PR adds ComfyUI-Translator to the custom node list. ## Features ComfyUI-Translator provides a comprehensive translation toolkit for ComfyUI, including: - **Basic translator node** - General text translation functionality - **LLM translator node** - AI-powered translation using language models - **Multiple LLM service connectors** - Support for various AI services: - ChatGPT connector - Gemini connector - DeepSeek connector - Kimi connector - Ollama connector - SiliconFlow connector - Zhipu connector - **LLM model loader** - Dynamic model loading capabilities - **General LLM service connector** - Universal connector framework ## Repository Details - **Repository**: https://github.com/OwlvChirotha/ComfyUI-Translator - **Author**: Owl-V - **License**: GPL-3.0 ## Installation Requirements ```json { "requirements": [ "googletrans==4.0.0rc1", "requests>=2.25.0" ] } ``` ## Testing The node has been tested with: - ComfyUI version 0.3.65 - Basic translation functionality working - Multiple LLM connectors functional ## Notes - All nodes are properly categorized under "utility" and "translation" - Includes comprehensive manifest.json for proper ComfyUI Manager integration - Supports both basic translation and advanced LLM-based translation workflows --- custom-node-list.json | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/custom-node-list.json b/custom-node-list.json index f1192c73..e5373b5a 100755 --- a/custom-node-list.json +++ b/custom-node-list.json @@ -34825,6 +34825,22 @@ ], "install_type": "unzip", "description": "This is a node to convert an image into a CMYK Halftone dot image." - } + }, + { + "author": "Owl-V", + "title": "ComfyUI-Translator", + "id": "comfyui-translator-owlv", + "reference": "OwlvChirotha/ComfyUI-Translator", + "files": [ + { + "url": "https://github.com/OwlvChirotha/ComfyUI-Translator", + "dest": "custom_nodes/ComfyUI-Translator", + "method": "clone" + } + ], + "install_type": "git-clone", + "description": "ComfyUI plug-in collection of basic translator, LLM translator and a series of LLM Service Connectors.", + "tags": ["translation", "llm", "ai", "connector", "utility"] + } ] }