├── .gitattributes ├── .gitignore ├── README.md ├── README_zh.md ├── __init__.py ├── img └── preview.jpg ├── nodes.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/ComfyUI-llama-cpp_vllm/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/ComfyUI-llama-cpp_vllm/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/ComfyUI-llama-cpp_vllm/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/ComfyUI-llama-cpp_vllm/HEAD/README_zh.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/ComfyUI-llama-cpp_vllm/HEAD/__init__.py -------------------------------------------------------------------------------- /img/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/ComfyUI-llama-cpp_vllm/HEAD/img/preview.jpg -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lihaoyun6/ComfyUI-llama-cpp_vllm/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | diskcache 2 | scipy 3 | numpy 4 | pillow --------------------------------------------------------------------------------