├── .github └── workflows │ └── publish_action.yml ├── .gitignore ├── LICENSE ├── README-CN.md ├── README.md ├── __init__.py ├── audio_to_prompt.py ├── deepseek.py ├── gemini.py ├── images ├── 2025-04-12_04-09-15.png ├── 2025-06-12_02-31-01.png ├── 2025-06-12_02-46-28.png ├── 2025-06-12_02-47-27.png ├── 2025-06-12_22-18-44.png ├── deepseekr1.png ├── gemini1.png └── qwen1.png ├── joycaption.py ├── model.safetensors.index.json ├── nodes.py ├── ollama_prompt_gen.py ├── pyproject.toml ├── qwen.py ├── requirements.txt └── workflow-examples ├── api-deepseek.json ├── api-gemini.json ├── api-qwen.json ├── flux-prompt.json ├── joycaption.json ├── 图片反推.json ├── 视频反推.json └── 音频反推打标.json /.github/workflows/publish_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/.github/workflows/publish_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/__init__.py -------------------------------------------------------------------------------- /audio_to_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/audio_to_prompt.py -------------------------------------------------------------------------------- /deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/deepseek.py -------------------------------------------------------------------------------- /gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/gemini.py -------------------------------------------------------------------------------- /images/2025-04-12_04-09-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/images/2025-04-12_04-09-15.png -------------------------------------------------------------------------------- /images/2025-06-12_02-31-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/images/2025-06-12_02-31-01.png -------------------------------------------------------------------------------- /images/2025-06-12_02-46-28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/images/2025-06-12_02-46-28.png -------------------------------------------------------------------------------- /images/2025-06-12_02-47-27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/images/2025-06-12_02-47-27.png -------------------------------------------------------------------------------- /images/2025-06-12_22-18-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/images/2025-06-12_22-18-44.png -------------------------------------------------------------------------------- /images/deepseekr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/images/deepseekr1.png -------------------------------------------------------------------------------- /images/gemini1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/images/gemini1.png -------------------------------------------------------------------------------- /images/qwen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/images/qwen1.png -------------------------------------------------------------------------------- /joycaption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/joycaption.py -------------------------------------------------------------------------------- /model.safetensors.index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/model.safetensors.index.json -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/nodes.py -------------------------------------------------------------------------------- /ollama_prompt_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/ollama_prompt_gen.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/pyproject.toml -------------------------------------------------------------------------------- /qwen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/qwen.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/requirements.txt -------------------------------------------------------------------------------- /workflow-examples/api-deepseek.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/workflow-examples/api-deepseek.json -------------------------------------------------------------------------------- /workflow-examples/api-gemini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/workflow-examples/api-gemini.json -------------------------------------------------------------------------------- /workflow-examples/api-qwen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/workflow-examples/api-qwen.json -------------------------------------------------------------------------------- /workflow-examples/flux-prompt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/workflow-examples/flux-prompt.json -------------------------------------------------------------------------------- /workflow-examples/joycaption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/workflow-examples/joycaption.json -------------------------------------------------------------------------------- /workflow-examples/图片反推.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/workflow-examples/图片反推.json -------------------------------------------------------------------------------- /workflow-examples/视频反推.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/workflow-examples/视频反推.json -------------------------------------------------------------------------------- /workflow-examples/音频反推打标.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billwuhao/ComfyUI_Prompt-All-In-One/HEAD/workflow-examples/音频反推打标.json --------------------------------------------------------------------------------