├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── __pycache__ ├── __init__.cpython-312.pyc ├── __init__.cpython-313.pyc ├── deepseek_node.cpython-312.pyc ├── google_file_api.cpython-312.pyc ├── image_generation.cpython-312.pyc ├── image_preprocessor.cpython-312.pyc ├── image_understanding.cpython-312.pyc ├── llm_loader.cpython-312.pyc ├── model_loader.cpython-312.pyc ├── openai_compatible_loader.cpython-312.pyc └── test_node.cpython-312.pyc ├── config └── env.example ├── docs ├── README.md ├── api_guide_cn.md ├── configuration.md └── readme_en.md ├── examples ├── notebooks │ └── README.md └── workflows │ └── README.md ├── requirements.txt ├── src ├── __init__.py ├── core │ ├── __init__.py │ ├── llm_loader.py │ ├── model_loader.py │ └── openai_compatible.py ├── nodes │ └── __init__.py ├── processors │ ├── __init__.py │ ├── image_generation.py │ ├── image_processor.py │ └── image_understanding.py └── utils │ ├── __init__.py │ └── file_uploader.py └── tests ├── __init__.py └── test_basic.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__init__.py -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/__init__.cpython-313.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/__init__.cpython-313.pyc -------------------------------------------------------------------------------- /__pycache__/deepseek_node.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/deepseek_node.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/google_file_api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/google_file_api.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/image_generation.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/image_generation.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/image_preprocessor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/image_preprocessor.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/image_understanding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/image_understanding.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/llm_loader.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/llm_loader.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/model_loader.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/model_loader.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/openai_compatible_loader.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/openai_compatible_loader.cpython-312.pyc -------------------------------------------------------------------------------- /__pycache__/test_node.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/__pycache__/test_node.cpython-312.pyc -------------------------------------------------------------------------------- /config/env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/config/env.example -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api_guide_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/docs/api_guide_cn.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/readme_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/docs/readme_en.md -------------------------------------------------------------------------------- /examples/notebooks/README.md: -------------------------------------------------------------------------------- 1 | # Jupyter示例将在这里提供 2 | -------------------------------------------------------------------------------- /examples/workflows/README.md: -------------------------------------------------------------------------------- 1 | # 示例工作流将在这里提供 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/core/llm_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/src/core/llm_loader.py -------------------------------------------------------------------------------- /src/core/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/src/core/model_loader.py -------------------------------------------------------------------------------- /src/core/openai_compatible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/src/core/openai_compatible.py -------------------------------------------------------------------------------- /src/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/processors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/processors/image_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/src/processors/image_generation.py -------------------------------------------------------------------------------- /src/processors/image_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/src/processors/image_processor.py -------------------------------------------------------------------------------- /src/processors/image_understanding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/src/processors/image_understanding.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/src/utils/__init__.py -------------------------------------------------------------------------------- /src/utils/file_uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/src/utils/file_uploader.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuangYuChuh/ComfyUI-LLMs-Toolkit/HEAD/tests/test_basic.py --------------------------------------------------------------------------------