├── .github └── workflows │ └── publish.yml ├── HF_api.py ├── IFDisplayOmniNode.py ├── IFDisplayTextNode.py ├── IFDisplayTextWildcardNode.py ├── IFJoinTextNode.py ├── IFLLMDisplayOmniNode.py ├── IFLLMDisplayTextNode.py ├── IFLLMJoinTextNode.py ├── IFLLMLoadImagesNodeS.py ├── IFLLMNode.py ├── IFLLMSaveTextNode.py ├── IFLLMTextTyperNode.py ├── IFLoadImagesNodeS.py ├── IFSaveTextNode.py ├── IFTextTyperNode.py ├── IF_AI ├── placeholder.png ├── placeholder.png~ ├── presets │ ├── AutoCombo │ │ └── combo_settings.yaml │ ├── agents │ │ └── omost.json │ ├── assistants.json │ ├── claim_extraction.json │ ├── community_report.json │ ├── embellishments.json │ ├── entity_extraction.json │ ├── florence_prompts.json │ ├── neg_prompts.json │ ├── placeholder.png │ ├── profiles.json │ ├── settings.yaml │ ├── stop_strings.json │ ├── style_prompts.json │ ├── summarize_descriptions.json │ └── wildcards │ │ ├── Artist.yaml │ │ ├── Background.yaml │ │ ├── Body.yaml │ │ ├── Characters.yaml │ │ ├── Clothing.yaml │ │ ├── Colors.yaml │ │ ├── Concepts.yaml │ │ ├── Materials.yaml │ │ ├── Props.yaml │ │ ├── Species.yaml │ │ ├── States.yaml │ │ ├── Styling.yaml │ │ └── Vocab-and-List.yaml ├── rag │ └── settings.yaml └── rag_data │ └── kv_store_llm_response_cache.json ├── LICENSE ├── ListModelsNode.py ├── README.md ├── __init__.py ├── agent_tool.py ├── anthropic_api.py ├── deepseek_api.py ├── embedded_install.bat ├── gemini_api.py ├── groq_api.py ├── huggingface_api.py ├── kobold_api.py ├── lib_omost ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-312.pyc │ └── canvas.cpython-312.pyc ├── canvas.py ├── greedy_encode.py └── utils.py ├── llamacpp_api.py ├── lms_api.py ├── mistral_api.py ├── ollama_api.py ├── omost.py ├── openai_api.py ├── pyproject.toml ├── requirements.txt ├── send_request.py ├── textgen_api.py ├── transformers_api.py ├── utils.py ├── vllm_api.py ├── web └── js │ ├── IFDisplayOmniNode.js │ ├── IFDisplayTextNode.js │ ├── IFDisplayTextWildcardNode.js │ ├── IFJoinTextNode.js │ ├── IFLLMDisplayOmniNode.js │ ├── IFLLMDisplayTextNode.js │ ├── IFLLMDisplayTextWildcardNode.js │ ├── IFLLMJoinTextNode.js │ ├── IFLLMLoadImagesNodeS.js │ ├── IFLLMNode.js │ ├── IFLoadImagesNodeS.js │ └── ListModelsNode.js ├── workflows ├── CD_Character_Mixer_Simple.json ├── CD_HYVid_I2V_&_T2V_Native_IFLLM.json ├── CD_HYVid_I2V_&_T2V_i2VLora_Native.json ├── CD_HYVid_I2V_Lora_KjWrapper.json ├── CD_HyVid_V2V_Kj_wrapper.json ├── Final__00001_.png ├── GGUF_00005_.png ├── Gemini2.json ├── IF_LLM_Create.json ├── IF_LLM_GGUF_FLUX.json ├── IF_LLM_HoldMyBeer_art_replication.json ├── IF_LLM_HoldMyBeer_art_replication_ungruped_nodes.json ├── IF_LLM_OMOST.json ├── IF_LLM_SDXL.json ├── Proteus_00025_.png ├── Proteus_00026_.png └── omost_00036_.png └── xai_api.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /HF_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/HF_api.py -------------------------------------------------------------------------------- /IFDisplayOmniNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFDisplayOmniNode.py -------------------------------------------------------------------------------- /IFDisplayTextNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFDisplayTextNode.py -------------------------------------------------------------------------------- /IFDisplayTextWildcardNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFDisplayTextWildcardNode.py -------------------------------------------------------------------------------- /IFJoinTextNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFJoinTextNode.py -------------------------------------------------------------------------------- /IFLLMDisplayOmniNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFLLMDisplayOmniNode.py -------------------------------------------------------------------------------- /IFLLMDisplayTextNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFLLMDisplayTextNode.py -------------------------------------------------------------------------------- /IFLLMJoinTextNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFLLMJoinTextNode.py -------------------------------------------------------------------------------- /IFLLMLoadImagesNodeS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFLLMLoadImagesNodeS.py -------------------------------------------------------------------------------- /IFLLMNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFLLMNode.py -------------------------------------------------------------------------------- /IFLLMSaveTextNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFLLMSaveTextNode.py -------------------------------------------------------------------------------- /IFLLMTextTyperNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFLLMTextTyperNode.py -------------------------------------------------------------------------------- /IFLoadImagesNodeS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFLoadImagesNodeS.py -------------------------------------------------------------------------------- /IFSaveTextNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFSaveTextNode.py -------------------------------------------------------------------------------- /IFTextTyperNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IFTextTyperNode.py -------------------------------------------------------------------------------- /IF_AI/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/placeholder.png -------------------------------------------------------------------------------- /IF_AI/placeholder.png~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/placeholder.png~ -------------------------------------------------------------------------------- /IF_AI/presets/AutoCombo/combo_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/AutoCombo/combo_settings.yaml -------------------------------------------------------------------------------- /IF_AI/presets/agents/omost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/agents/omost.json -------------------------------------------------------------------------------- /IF_AI/presets/assistants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/assistants.json -------------------------------------------------------------------------------- /IF_AI/presets/claim_extraction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/claim_extraction.json -------------------------------------------------------------------------------- /IF_AI/presets/community_report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/community_report.json -------------------------------------------------------------------------------- /IF_AI/presets/embellishments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/embellishments.json -------------------------------------------------------------------------------- /IF_AI/presets/entity_extraction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/entity_extraction.json -------------------------------------------------------------------------------- /IF_AI/presets/florence_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/florence_prompts.json -------------------------------------------------------------------------------- /IF_AI/presets/neg_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/neg_prompts.json -------------------------------------------------------------------------------- /IF_AI/presets/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/placeholder.png -------------------------------------------------------------------------------- /IF_AI/presets/profiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/profiles.json -------------------------------------------------------------------------------- /IF_AI/presets/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/settings.yaml -------------------------------------------------------------------------------- /IF_AI/presets/stop_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/stop_strings.json -------------------------------------------------------------------------------- /IF_AI/presets/style_prompts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/style_prompts.json -------------------------------------------------------------------------------- /IF_AI/presets/summarize_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/summarize_descriptions.json -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Artist.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Artist.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Background.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Background.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Body.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Body.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Characters.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Characters.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Clothing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Clothing.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Colors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Colors.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Concepts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Concepts.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Materials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Materials.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Props.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Props.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Species.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Species.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/States.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/States.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Styling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Styling.yaml -------------------------------------------------------------------------------- /IF_AI/presets/wildcards/Vocab-and-List.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/presets/wildcards/Vocab-and-List.yaml -------------------------------------------------------------------------------- /IF_AI/rag/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/IF_AI/rag/settings.yaml -------------------------------------------------------------------------------- /IF_AI/rag_data/kv_store_llm_response_cache.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/LICENSE -------------------------------------------------------------------------------- /ListModelsNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/ListModelsNode.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/__init__.py -------------------------------------------------------------------------------- /agent_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/agent_tool.py -------------------------------------------------------------------------------- /anthropic_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/anthropic_api.py -------------------------------------------------------------------------------- /deepseek_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/deepseek_api.py -------------------------------------------------------------------------------- /embedded_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/embedded_install.bat -------------------------------------------------------------------------------- /gemini_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/gemini_api.py -------------------------------------------------------------------------------- /groq_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/groq_api.py -------------------------------------------------------------------------------- /huggingface_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/huggingface_api.py -------------------------------------------------------------------------------- /kobold_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/kobold_api.py -------------------------------------------------------------------------------- /lib_omost/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib_omost/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/lib_omost/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /lib_omost/__pycache__/canvas.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/lib_omost/__pycache__/canvas.cpython-312.pyc -------------------------------------------------------------------------------- /lib_omost/canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/lib_omost/canvas.py -------------------------------------------------------------------------------- /lib_omost/greedy_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/lib_omost/greedy_encode.py -------------------------------------------------------------------------------- /lib_omost/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/lib_omost/utils.py -------------------------------------------------------------------------------- /llamacpp_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/llamacpp_api.py -------------------------------------------------------------------------------- /lms_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/lms_api.py -------------------------------------------------------------------------------- /mistral_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/mistral_api.py -------------------------------------------------------------------------------- /ollama_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/ollama_api.py -------------------------------------------------------------------------------- /omost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/omost.py -------------------------------------------------------------------------------- /openai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/openai_api.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/requirements.txt -------------------------------------------------------------------------------- /send_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/send_request.py -------------------------------------------------------------------------------- /textgen_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/textgen_api.py -------------------------------------------------------------------------------- /transformers_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/transformers_api.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/utils.py -------------------------------------------------------------------------------- /vllm_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/vllm_api.py -------------------------------------------------------------------------------- /web/js/IFDisplayOmniNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFDisplayOmniNode.js -------------------------------------------------------------------------------- /web/js/IFDisplayTextNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFDisplayTextNode.js -------------------------------------------------------------------------------- /web/js/IFDisplayTextWildcardNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFDisplayTextWildcardNode.js -------------------------------------------------------------------------------- /web/js/IFJoinTextNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFJoinTextNode.js -------------------------------------------------------------------------------- /web/js/IFLLMDisplayOmniNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFLLMDisplayOmniNode.js -------------------------------------------------------------------------------- /web/js/IFLLMDisplayTextNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFLLMDisplayTextNode.js -------------------------------------------------------------------------------- /web/js/IFLLMDisplayTextWildcardNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFLLMDisplayTextWildcardNode.js -------------------------------------------------------------------------------- /web/js/IFLLMJoinTextNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFLLMJoinTextNode.js -------------------------------------------------------------------------------- /web/js/IFLLMLoadImagesNodeS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFLLMLoadImagesNodeS.js -------------------------------------------------------------------------------- /web/js/IFLLMNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFLLMNode.js -------------------------------------------------------------------------------- /web/js/IFLoadImagesNodeS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/IFLoadImagesNodeS.js -------------------------------------------------------------------------------- /web/js/ListModelsNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/web/js/ListModelsNode.js -------------------------------------------------------------------------------- /workflows/CD_Character_Mixer_Simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/CD_Character_Mixer_Simple.json -------------------------------------------------------------------------------- /workflows/CD_HYVid_I2V_&_T2V_Native_IFLLM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/CD_HYVid_I2V_&_T2V_Native_IFLLM.json -------------------------------------------------------------------------------- /workflows/CD_HYVid_I2V_&_T2V_i2VLora_Native.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/CD_HYVid_I2V_&_T2V_i2VLora_Native.json -------------------------------------------------------------------------------- /workflows/CD_HYVid_I2V_Lora_KjWrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/CD_HYVid_I2V_Lora_KjWrapper.json -------------------------------------------------------------------------------- /workflows/CD_HyVid_V2V_Kj_wrapper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/CD_HyVid_V2V_Kj_wrapper.json -------------------------------------------------------------------------------- /workflows/Final__00001_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/Final__00001_.png -------------------------------------------------------------------------------- /workflows/GGUF_00005_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/GGUF_00005_.png -------------------------------------------------------------------------------- /workflows/Gemini2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/Gemini2.json -------------------------------------------------------------------------------- /workflows/IF_LLM_Create.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/IF_LLM_Create.json -------------------------------------------------------------------------------- /workflows/IF_LLM_GGUF_FLUX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/IF_LLM_GGUF_FLUX.json -------------------------------------------------------------------------------- /workflows/IF_LLM_HoldMyBeer_art_replication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/IF_LLM_HoldMyBeer_art_replication.json -------------------------------------------------------------------------------- /workflows/IF_LLM_HoldMyBeer_art_replication_ungruped_nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/IF_LLM_HoldMyBeer_art_replication_ungruped_nodes.json -------------------------------------------------------------------------------- /workflows/IF_LLM_OMOST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/IF_LLM_OMOST.json -------------------------------------------------------------------------------- /workflows/IF_LLM_SDXL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/IF_LLM_SDXL.json -------------------------------------------------------------------------------- /workflows/Proteus_00025_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/Proteus_00025_.png -------------------------------------------------------------------------------- /workflows/Proteus_00026_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/Proteus_00026_.png -------------------------------------------------------------------------------- /workflows/omost_00036_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/workflows/omost_00036_.png -------------------------------------------------------------------------------- /xai_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/if-ai/ComfyUI-IF_LLM/HEAD/xai_api.py --------------------------------------------------------------------------------