├── .claude └── settings.local.json ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── __init__.py ├── apnext.py ├── concat ├── create_prompt.py ├── output.json └── scrape_prompts.py ├── data ├── additional_details.json ├── artform.json ├── artist.json ├── background.json ├── body_types.json ├── claude_models.json ├── clothing.json ├── composition.json ├── custom_prompts │ ├── cloner.txt │ ├── cloner_concept_blender.txt │ ├── extractor.txt │ ├── follow.txt │ ├── gemini.txt │ ├── gemini_2_5_pro_images.txt │ ├── gemini_2_5_pro_ohwx.txt │ ├── gemini_ohwx.txt │ ├── gemini_ohwx_2.txt │ ├── gemini_text_ohwx.txt │ ├── gemini_video.txt │ ├── gpt4_cloner_prompt.txt │ ├── gpt4_cloner_prompt_combiner.txt │ ├── gpt4_cloner_prompt_combiner_hard.txt │ ├── gpt4_cloner_prompt_next.txt │ ├── image_analyze.txt │ ├── image_analyze_w_text.txt │ ├── ltxv.txt │ ├── next_scene.txt │ ├── original.txt │ ├── promptcreator.txt │ ├── promptcreator_evolved.txt │ ├── promptcreator_small.txt │ ├── promptcreator_small_082124.txt │ ├── promptcreator_small_ohwx.txt │ ├── promptcreator_tiny_082124.txt │ ├── promptcreator_tiny_ohwx.txt │ ├── promptcreator_tiny_ss_082124.txt │ ├── qwen_cinematic_blend.txt │ ├── qwen_detailed_blend.txt │ ├── qwen_simple_blend.txt │ ├── qwen_super_detailed_blend.txt │ ├── qwen_video_blend.txt │ ├── t5xxl.txt │ ├── t5xxl_evolved.txt │ └── t5xxl_w_text.txt ├── default_tags.json ├── device.json ├── digital_artform.json ├── gemini_models.json ├── gpt_models.json ├── grok_models.json ├── groq_models.json ├── hairstyles.json ├── lighting.json ├── next │ ├── architecture │ │ ├── architect.json │ │ ├── architecture.json │ │ ├── buildings.json │ │ ├── detailed_styles.json │ │ ├── exotic.json │ │ ├── extreme_location.json │ │ ├── homes.json │ │ ├── interior.json │ │ ├── interior_design.json │ │ ├── materials.json │ │ ├── public.json │ │ ├── rooms.json │ │ ├── styles.json │ │ └── terms.json │ ├── art │ │ ├── painting.json │ │ ├── palette.json │ │ ├── patterns.json │ │ ├── sculpture.json │ │ ├── styles.json │ │ ├── techniques.json │ │ └── types.json │ ├── artist │ │ ├── concept.json │ │ ├── dark.json │ │ ├── illustrator.json │ │ └── painters.json │ ├── brands │ │ └── brands.json │ ├── character │ │ ├── action.json │ │ ├── anime.json │ │ ├── fantasy.json │ │ ├── fictional.json │ │ ├── general.json │ │ ├── monsters.json │ │ ├── scifi.json │ │ ├── superheroes.json │ │ └── supervillains.json │ ├── cinematic │ │ ├── aesthetics.json │ │ ├── cinematic_effects.json │ │ ├── color_grading.json │ │ ├── color_modifiers.json │ │ ├── directors.json │ │ ├── effects.json │ │ ├── film_type.json │ │ ├── genre.json │ │ ├── movies.json │ │ └── shot_type.json │ ├── fashion │ │ ├── accessories.json │ │ ├── cultural.json │ │ ├── designers.json │ │ ├── feminine.json │ │ ├── feminine_hair_styles.json │ │ ├── feminine_outfits.json │ │ ├── masculine.json │ │ ├── masculine_hair_styles.json │ │ └── masculine_outfits.json │ ├── feelings │ │ ├── creepy.json │ │ ├── loving.json │ │ ├── melancholy.json │ │ └── unnerved.json │ ├── geography │ │ ├── countries.json │ │ ├── nationalities.json │ │ └── territories.json │ ├── human │ │ ├── festivities.json │ │ ├── groups.json │ │ ├── hobbies.json │ │ └── jobs.json │ ├── interaction │ │ ├── couple_interactions.json │ │ ├── couple_negative.json │ │ ├── crowd_interactions.json │ │ ├── detailed_individual_interactions.json │ │ ├── group_interactions.json │ │ └── individual_interactions.json │ ├── keywords │ │ ├── detailed.json │ │ ├── epic.json │ │ ├── genres.json │ │ ├── glitch.json │ │ ├── modifiers.json │ │ ├── negatives.json │ │ ├── prayers.json │ │ ├── trending.json │ │ └── unusual.json │ ├── people │ │ ├── archtype_female.json │ │ ├── archtype_male.json │ │ ├── archtypes.json │ │ ├── body_types.json │ │ ├── expressions.json │ │ └── eye_color.json │ ├── photography │ │ ├── camera.json │ │ ├── color_grading.json │ │ ├── film.json │ │ ├── keywords.json │ │ ├── landscape_subject.json │ │ ├── lenses.json │ │ ├── lighting.json │ │ └── portrait_photographer.json │ ├── plots │ │ ├── action.json │ │ ├── arthouse.json │ │ ├── cyberpunk.json │ │ ├── fantasy.json │ │ ├── general.json │ │ ├── horror.json │ │ ├── musical.json │ │ ├── romance.json │ │ ├── scifi.json │ │ └── war.json │ ├── poses │ │ ├── portrait_poses.json │ │ └── poses.json │ ├── scene │ │ ├── houseplants.json │ │ ├── modifiers.json │ │ ├── scenes.json │ │ ├── textures.json │ │ ├── trees.json │ │ └── weather.json │ ├── science │ │ ├── astronomy.json │ │ ├── elements.json │ │ ├── mathematics.json │ │ └── medical.json │ ├── stuff │ │ ├── city.json │ │ ├── everyday.json │ │ ├── fall.json │ │ ├── fantasy.json │ │ ├── gadgets.json │ │ ├── icons.json │ │ ├── office.json │ │ ├── scary.json │ │ ├── scifi.json │ │ ├── space.json │ │ ├── spring.json │ │ ├── summer.json │ │ └── winter.json │ ├── time │ │ ├── century.json │ │ ├── decades.json │ │ ├── eras.json │ │ └── time.json │ ├── typography │ │ ├── features.json │ │ ├── font_styles.json │ │ ├── fonts.json │ │ ├── types.json │ │ └── word_art.json │ ├── vehicle │ │ ├── cars.json │ │ ├── classic_cars.json │ │ ├── famous_cars.json │ │ ├── fast_cars.json │ │ └── types.json │ └── video_game │ │ ├── actions.json │ │ ├── designers.json │ │ ├── engines.json │ │ ├── games.json │ │ ├── regions.json │ │ └── type.json ├── photo_framing.json ├── photo_type.json ├── photographer.json ├── photography_styles.json ├── place.json ├── pose.json ├── qwenvl_models.json └── roles.json ├── examples ├── flux │ ├── apnext │ │ ├── APNext_Architecture_WF.json │ │ ├── APNext_Architecture_WF.jsonZone.Identifier │ │ ├── APNext_Art_WF.json │ │ ├── APNext_Art_WF.jsonZone.Identifier │ │ ├── APNext_Brand_Driven_WF.json │ │ ├── APNext_Brand_Driven_WF.jsonZone.Identifier │ │ ├── APNext_Examples.json │ │ └── APNext_Examples.jsonZone.Identifier │ ├── florence2 │ │ ├── dagthomas_florence2_workflow.json │ │ ├── dagthomas_florence2_workflow.jsonZone.Identifier │ │ ├── dagthomas_florence2_workflow.png │ │ └── dagthomas_florence2_workflow.pngZone.Identifier │ ├── gpt-4o-mini │ │ ├── dagthomas_gpt-4o-mini_workflow.json │ │ ├── dagthomas_gpt-4o-mini_workflow.jsonZone.Identifier │ │ └── dagthomas_gpt-4o-mini_workflow.png │ ├── gpt-4o_vision │ │ ├── dagthomas_gpt-4o-vision-workflow.png │ │ ├── dagthomas_gpt4o_vision_workflow.json │ │ └── dagthomas_gpt4o_vision_workflow.jsonZone.Identifier │ └── ollama_local_llm │ │ ├── comfyui_dagthomas_localllm__00044_.png │ │ ├── dagthomas_ollama_workflow.json │ │ └── dagthomas_ollama_workflow.jsonZone.Identifier └── minicpm │ ├── image_example.json │ ├── video_example.json │ └── video_input_example.json ├── nodes ├── __init__.py ├── claude │ ├── __init__.py │ ├── text_node.py │ └── vision_node.py ├── file_utils │ ├── __init__.py │ ├── file_reader.py │ ├── prompt_loader.py │ └── random_integer.py ├── gemini │ ├── __init__.py │ ├── custom_vision.py │ ├── next_scene.py │ ├── prompt_enhancer.py │ └── text_only.py ├── gpt │ ├── __init__.py │ ├── custom_vision.py │ ├── mini_node.py │ ├── vision_cloner.py │ └── vision_node.py ├── grok │ ├── __init__.py │ ├── text_node.py │ └── vision_node.py ├── groq │ ├── __init__.py │ ├── text_node.py │ └── vision_node.py ├── image_fx │ ├── __init__.py │ ├── bloom.py │ ├── color_grading.py │ ├── cross_processing.py │ ├── film_halation.py │ ├── glitch_art.py │ ├── hdr_tone_mapping.py │ ├── noise.py │ ├── rough.py │ ├── sharpen.py │ └── split_toning.py ├── latent_generators │ ├── __init__.py │ ├── apn_latent.py │ └── pgsd3_latent.py ├── minicpm │ ├── README.md │ ├── __init__.py │ ├── image_node.py │ └── video_node.py ├── ollama │ ├── __init__.py │ ├── node.py │ └── vision_node.py ├── phi │ ├── __init__.py │ ├── custom_inference.py │ ├── inference.py │ ├── model_loader.py │ └── pipeline.py ├── prompt_generators │ ├── __init__.py │ ├── apnext_nodes.py │ ├── auto_prompter.py │ ├── universal_generator.py │ └── universal_vision_cloner.py ├── qwenvl │ ├── __init__.py │ ├── video_node.py │ ├── vision_cloner.py │ └── vision_node.py └── string_utils │ ├── __init__.py │ ├── combiner.py │ ├── flexible_merger.py │ ├── merger.py │ └── mixer.py ├── original_sdxl_utility_backup.py ├── pyproject.toml ├── requirements.txt ├── sd3_auto_prompter_workflow_example.json ├── sdxl_utility.py └── utils ├── __init__.py ├── constants.py ├── image_utils.py └── update_groq_models.py /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/__init__.py -------------------------------------------------------------------------------- /apnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/apnext.py -------------------------------------------------------------------------------- /concat/create_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/concat/create_prompt.py -------------------------------------------------------------------------------- /concat/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/concat/output.json -------------------------------------------------------------------------------- /concat/scrape_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/concat/scrape_prompts.py -------------------------------------------------------------------------------- /data/additional_details.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/additional_details.json -------------------------------------------------------------------------------- /data/artform.json: -------------------------------------------------------------------------------- 1 | [ 2 | "photography", 3 | "art" 4 | ] -------------------------------------------------------------------------------- /data/artist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/artist.json -------------------------------------------------------------------------------- /data/background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/background.json -------------------------------------------------------------------------------- /data/body_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/body_types.json -------------------------------------------------------------------------------- /data/claude_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/claude_models.json -------------------------------------------------------------------------------- /data/clothing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/clothing.json -------------------------------------------------------------------------------- /data/composition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/composition.json -------------------------------------------------------------------------------- /data/custom_prompts/cloner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/cloner.txt -------------------------------------------------------------------------------- /data/custom_prompts/cloner_concept_blender.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/cloner_concept_blender.txt -------------------------------------------------------------------------------- /data/custom_prompts/extractor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/extractor.txt -------------------------------------------------------------------------------- /data/custom_prompts/follow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/follow.txt -------------------------------------------------------------------------------- /data/custom_prompts/gemini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gemini.txt -------------------------------------------------------------------------------- /data/custom_prompts/gemini_2_5_pro_images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gemini_2_5_pro_images.txt -------------------------------------------------------------------------------- /data/custom_prompts/gemini_2_5_pro_ohwx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gemini_2_5_pro_ohwx.txt -------------------------------------------------------------------------------- /data/custom_prompts/gemini_ohwx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gemini_ohwx.txt -------------------------------------------------------------------------------- /data/custom_prompts/gemini_ohwx_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gemini_ohwx_2.txt -------------------------------------------------------------------------------- /data/custom_prompts/gemini_text_ohwx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gemini_text_ohwx.txt -------------------------------------------------------------------------------- /data/custom_prompts/gemini_video.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gemini_video.txt -------------------------------------------------------------------------------- /data/custom_prompts/gpt4_cloner_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gpt4_cloner_prompt.txt -------------------------------------------------------------------------------- /data/custom_prompts/gpt4_cloner_prompt_combiner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gpt4_cloner_prompt_combiner.txt -------------------------------------------------------------------------------- /data/custom_prompts/gpt4_cloner_prompt_combiner_hard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gpt4_cloner_prompt_combiner_hard.txt -------------------------------------------------------------------------------- /data/custom_prompts/gpt4_cloner_prompt_next.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/gpt4_cloner_prompt_next.txt -------------------------------------------------------------------------------- /data/custom_prompts/image_analyze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/image_analyze.txt -------------------------------------------------------------------------------- /data/custom_prompts/image_analyze_w_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/image_analyze_w_text.txt -------------------------------------------------------------------------------- /data/custom_prompts/ltxv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/ltxv.txt -------------------------------------------------------------------------------- /data/custom_prompts/next_scene.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/next_scene.txt -------------------------------------------------------------------------------- /data/custom_prompts/original.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/original.txt -------------------------------------------------------------------------------- /data/custom_prompts/promptcreator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/promptcreator.txt -------------------------------------------------------------------------------- /data/custom_prompts/promptcreator_evolved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/promptcreator_evolved.txt -------------------------------------------------------------------------------- /data/custom_prompts/promptcreator_small.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/promptcreator_small.txt -------------------------------------------------------------------------------- /data/custom_prompts/promptcreator_small_082124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/promptcreator_small_082124.txt -------------------------------------------------------------------------------- /data/custom_prompts/promptcreator_small_ohwx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/promptcreator_small_ohwx.txt -------------------------------------------------------------------------------- /data/custom_prompts/promptcreator_tiny_082124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/promptcreator_tiny_082124.txt -------------------------------------------------------------------------------- /data/custom_prompts/promptcreator_tiny_ohwx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/promptcreator_tiny_ohwx.txt -------------------------------------------------------------------------------- /data/custom_prompts/promptcreator_tiny_ss_082124.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/promptcreator_tiny_ss_082124.txt -------------------------------------------------------------------------------- /data/custom_prompts/qwen_cinematic_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/qwen_cinematic_blend.txt -------------------------------------------------------------------------------- /data/custom_prompts/qwen_detailed_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/qwen_detailed_blend.txt -------------------------------------------------------------------------------- /data/custom_prompts/qwen_simple_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/qwen_simple_blend.txt -------------------------------------------------------------------------------- /data/custom_prompts/qwen_super_detailed_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/qwen_super_detailed_blend.txt -------------------------------------------------------------------------------- /data/custom_prompts/qwen_video_blend.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/qwen_video_blend.txt -------------------------------------------------------------------------------- /data/custom_prompts/t5xxl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/t5xxl.txt -------------------------------------------------------------------------------- /data/custom_prompts/t5xxl_evolved.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/t5xxl_evolved.txt -------------------------------------------------------------------------------- /data/custom_prompts/t5xxl_w_text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/custom_prompts/t5xxl_w_text.txt -------------------------------------------------------------------------------- /data/default_tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/default_tags.json -------------------------------------------------------------------------------- /data/device.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/device.json -------------------------------------------------------------------------------- /data/digital_artform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/digital_artform.json -------------------------------------------------------------------------------- /data/gemini_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/gemini_models.json -------------------------------------------------------------------------------- /data/gpt_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/gpt_models.json -------------------------------------------------------------------------------- /data/grok_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/grok_models.json -------------------------------------------------------------------------------- /data/groq_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/groq_models.json -------------------------------------------------------------------------------- /data/hairstyles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/hairstyles.json -------------------------------------------------------------------------------- /data/lighting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/lighting.json -------------------------------------------------------------------------------- /data/next/architecture/architect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/architect.json -------------------------------------------------------------------------------- /data/next/architecture/architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/architecture.json -------------------------------------------------------------------------------- /data/next/architecture/buildings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/buildings.json -------------------------------------------------------------------------------- /data/next/architecture/detailed_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/detailed_styles.json -------------------------------------------------------------------------------- /data/next/architecture/exotic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/exotic.json -------------------------------------------------------------------------------- /data/next/architecture/extreme_location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/extreme_location.json -------------------------------------------------------------------------------- /data/next/architecture/homes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/homes.json -------------------------------------------------------------------------------- /data/next/architecture/interior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/interior.json -------------------------------------------------------------------------------- /data/next/architecture/interior_design.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/interior_design.json -------------------------------------------------------------------------------- /data/next/architecture/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/materials.json -------------------------------------------------------------------------------- /data/next/architecture/public.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/public.json -------------------------------------------------------------------------------- /data/next/architecture/rooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/rooms.json -------------------------------------------------------------------------------- /data/next/architecture/styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/styles.json -------------------------------------------------------------------------------- /data/next/architecture/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/architecture/terms.json -------------------------------------------------------------------------------- /data/next/art/painting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/art/painting.json -------------------------------------------------------------------------------- /data/next/art/palette.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/art/palette.json -------------------------------------------------------------------------------- /data/next/art/patterns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/art/patterns.json -------------------------------------------------------------------------------- /data/next/art/sculpture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/art/sculpture.json -------------------------------------------------------------------------------- /data/next/art/styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/art/styles.json -------------------------------------------------------------------------------- /data/next/art/techniques.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/art/techniques.json -------------------------------------------------------------------------------- /data/next/art/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/art/types.json -------------------------------------------------------------------------------- /data/next/artist/concept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/artist/concept.json -------------------------------------------------------------------------------- /data/next/artist/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/artist/dark.json -------------------------------------------------------------------------------- /data/next/artist/illustrator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/artist/illustrator.json -------------------------------------------------------------------------------- /data/next/artist/painters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/artist/painters.json -------------------------------------------------------------------------------- /data/next/brands/brands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/brands/brands.json -------------------------------------------------------------------------------- /data/next/character/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/action.json -------------------------------------------------------------------------------- /data/next/character/anime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/anime.json -------------------------------------------------------------------------------- /data/next/character/fantasy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/fantasy.json -------------------------------------------------------------------------------- /data/next/character/fictional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/fictional.json -------------------------------------------------------------------------------- /data/next/character/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/general.json -------------------------------------------------------------------------------- /data/next/character/monsters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/monsters.json -------------------------------------------------------------------------------- /data/next/character/scifi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/scifi.json -------------------------------------------------------------------------------- /data/next/character/superheroes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/superheroes.json -------------------------------------------------------------------------------- /data/next/character/supervillains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/character/supervillains.json -------------------------------------------------------------------------------- /data/next/cinematic/aesthetics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/aesthetics.json -------------------------------------------------------------------------------- /data/next/cinematic/cinematic_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/cinematic_effects.json -------------------------------------------------------------------------------- /data/next/cinematic/color_grading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/color_grading.json -------------------------------------------------------------------------------- /data/next/cinematic/color_modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/color_modifiers.json -------------------------------------------------------------------------------- /data/next/cinematic/directors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/directors.json -------------------------------------------------------------------------------- /data/next/cinematic/effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/effects.json -------------------------------------------------------------------------------- /data/next/cinematic/film_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/film_type.json -------------------------------------------------------------------------------- /data/next/cinematic/genre.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/genre.json -------------------------------------------------------------------------------- /data/next/cinematic/movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/movies.json -------------------------------------------------------------------------------- /data/next/cinematic/shot_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/cinematic/shot_type.json -------------------------------------------------------------------------------- /data/next/fashion/accessories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/accessories.json -------------------------------------------------------------------------------- /data/next/fashion/cultural.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/cultural.json -------------------------------------------------------------------------------- /data/next/fashion/designers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/designers.json -------------------------------------------------------------------------------- /data/next/fashion/feminine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/feminine.json -------------------------------------------------------------------------------- /data/next/fashion/feminine_hair_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/feminine_hair_styles.json -------------------------------------------------------------------------------- /data/next/fashion/feminine_outfits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/feminine_outfits.json -------------------------------------------------------------------------------- /data/next/fashion/masculine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/masculine.json -------------------------------------------------------------------------------- /data/next/fashion/masculine_hair_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/masculine_hair_styles.json -------------------------------------------------------------------------------- /data/next/fashion/masculine_outfits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/fashion/masculine_outfits.json -------------------------------------------------------------------------------- /data/next/feelings/creepy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/feelings/creepy.json -------------------------------------------------------------------------------- /data/next/feelings/loving.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/feelings/loving.json -------------------------------------------------------------------------------- /data/next/feelings/melancholy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/feelings/melancholy.json -------------------------------------------------------------------------------- /data/next/feelings/unnerved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/feelings/unnerved.json -------------------------------------------------------------------------------- /data/next/geography/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/geography/countries.json -------------------------------------------------------------------------------- /data/next/geography/nationalities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/geography/nationalities.json -------------------------------------------------------------------------------- /data/next/geography/territories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/geography/territories.json -------------------------------------------------------------------------------- /data/next/human/festivities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/human/festivities.json -------------------------------------------------------------------------------- /data/next/human/groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/human/groups.json -------------------------------------------------------------------------------- /data/next/human/hobbies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/human/hobbies.json -------------------------------------------------------------------------------- /data/next/human/jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/human/jobs.json -------------------------------------------------------------------------------- /data/next/interaction/couple_interactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/interaction/couple_interactions.json -------------------------------------------------------------------------------- /data/next/interaction/couple_negative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/interaction/couple_negative.json -------------------------------------------------------------------------------- /data/next/interaction/crowd_interactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/interaction/crowd_interactions.json -------------------------------------------------------------------------------- /data/next/interaction/detailed_individual_interactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/interaction/detailed_individual_interactions.json -------------------------------------------------------------------------------- /data/next/interaction/group_interactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/interaction/group_interactions.json -------------------------------------------------------------------------------- /data/next/interaction/individual_interactions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/interaction/individual_interactions.json -------------------------------------------------------------------------------- /data/next/keywords/detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/detailed.json -------------------------------------------------------------------------------- /data/next/keywords/epic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/epic.json -------------------------------------------------------------------------------- /data/next/keywords/genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/genres.json -------------------------------------------------------------------------------- /data/next/keywords/glitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/glitch.json -------------------------------------------------------------------------------- /data/next/keywords/modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/modifiers.json -------------------------------------------------------------------------------- /data/next/keywords/negatives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/negatives.json -------------------------------------------------------------------------------- /data/next/keywords/prayers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/prayers.json -------------------------------------------------------------------------------- /data/next/keywords/trending.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/trending.json -------------------------------------------------------------------------------- /data/next/keywords/unusual.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/keywords/unusual.json -------------------------------------------------------------------------------- /data/next/people/archtype_female.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/people/archtype_female.json -------------------------------------------------------------------------------- /data/next/people/archtype_male.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/people/archtype_male.json -------------------------------------------------------------------------------- /data/next/people/archtypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/people/archtypes.json -------------------------------------------------------------------------------- /data/next/people/body_types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/people/body_types.json -------------------------------------------------------------------------------- /data/next/people/expressions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/people/expressions.json -------------------------------------------------------------------------------- /data/next/people/eye_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/people/eye_color.json -------------------------------------------------------------------------------- /data/next/photography/camera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/photography/camera.json -------------------------------------------------------------------------------- /data/next/photography/color_grading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/photography/color_grading.json -------------------------------------------------------------------------------- /data/next/photography/film.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/photography/film.json -------------------------------------------------------------------------------- /data/next/photography/keywords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/photography/keywords.json -------------------------------------------------------------------------------- /data/next/photography/landscape_subject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/photography/landscape_subject.json -------------------------------------------------------------------------------- /data/next/photography/lenses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/photography/lenses.json -------------------------------------------------------------------------------- /data/next/photography/lighting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/photography/lighting.json -------------------------------------------------------------------------------- /data/next/photography/portrait_photographer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/photography/portrait_photographer.json -------------------------------------------------------------------------------- /data/next/plots/action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/action.json -------------------------------------------------------------------------------- /data/next/plots/arthouse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/arthouse.json -------------------------------------------------------------------------------- /data/next/plots/cyberpunk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/cyberpunk.json -------------------------------------------------------------------------------- /data/next/plots/fantasy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/fantasy.json -------------------------------------------------------------------------------- /data/next/plots/general.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/general.json -------------------------------------------------------------------------------- /data/next/plots/horror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/horror.json -------------------------------------------------------------------------------- /data/next/plots/musical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/musical.json -------------------------------------------------------------------------------- /data/next/plots/romance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/romance.json -------------------------------------------------------------------------------- /data/next/plots/scifi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/scifi.json -------------------------------------------------------------------------------- /data/next/plots/war.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/plots/war.json -------------------------------------------------------------------------------- /data/next/poses/portrait_poses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/poses/portrait_poses.json -------------------------------------------------------------------------------- /data/next/poses/poses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/poses/poses.json -------------------------------------------------------------------------------- /data/next/scene/houseplants.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/scene/houseplants.json -------------------------------------------------------------------------------- /data/next/scene/modifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/scene/modifiers.json -------------------------------------------------------------------------------- /data/next/scene/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/scene/scenes.json -------------------------------------------------------------------------------- /data/next/scene/textures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/scene/textures.json -------------------------------------------------------------------------------- /data/next/scene/trees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/scene/trees.json -------------------------------------------------------------------------------- /data/next/scene/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/scene/weather.json -------------------------------------------------------------------------------- /data/next/science/astronomy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/science/astronomy.json -------------------------------------------------------------------------------- /data/next/science/elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/science/elements.json -------------------------------------------------------------------------------- /data/next/science/mathematics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/science/mathematics.json -------------------------------------------------------------------------------- /data/next/science/medical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/science/medical.json -------------------------------------------------------------------------------- /data/next/stuff/city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/city.json -------------------------------------------------------------------------------- /data/next/stuff/everyday.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/everyday.json -------------------------------------------------------------------------------- /data/next/stuff/fall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/fall.json -------------------------------------------------------------------------------- /data/next/stuff/fantasy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/fantasy.json -------------------------------------------------------------------------------- /data/next/stuff/gadgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/gadgets.json -------------------------------------------------------------------------------- /data/next/stuff/icons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/icons.json -------------------------------------------------------------------------------- /data/next/stuff/office.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/office.json -------------------------------------------------------------------------------- /data/next/stuff/scary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/scary.json -------------------------------------------------------------------------------- /data/next/stuff/scifi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/scifi.json -------------------------------------------------------------------------------- /data/next/stuff/space.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/space.json -------------------------------------------------------------------------------- /data/next/stuff/spring.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/spring.json -------------------------------------------------------------------------------- /data/next/stuff/summer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/summer.json -------------------------------------------------------------------------------- /data/next/stuff/winter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/stuff/winter.json -------------------------------------------------------------------------------- /data/next/time/century.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/time/century.json -------------------------------------------------------------------------------- /data/next/time/decades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/time/decades.json -------------------------------------------------------------------------------- /data/next/time/eras.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/time/eras.json -------------------------------------------------------------------------------- /data/next/time/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/time/time.json -------------------------------------------------------------------------------- /data/next/typography/features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/typography/features.json -------------------------------------------------------------------------------- /data/next/typography/font_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/typography/font_styles.json -------------------------------------------------------------------------------- /data/next/typography/fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/typography/fonts.json -------------------------------------------------------------------------------- /data/next/typography/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/typography/types.json -------------------------------------------------------------------------------- /data/next/typography/word_art.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/typography/word_art.json -------------------------------------------------------------------------------- /data/next/vehicle/cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/vehicle/cars.json -------------------------------------------------------------------------------- /data/next/vehicle/classic_cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/vehicle/classic_cars.json -------------------------------------------------------------------------------- /data/next/vehicle/famous_cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/vehicle/famous_cars.json -------------------------------------------------------------------------------- /data/next/vehicle/fast_cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/vehicle/fast_cars.json -------------------------------------------------------------------------------- /data/next/vehicle/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/vehicle/types.json -------------------------------------------------------------------------------- /data/next/video_game/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/video_game/actions.json -------------------------------------------------------------------------------- /data/next/video_game/designers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/video_game/designers.json -------------------------------------------------------------------------------- /data/next/video_game/engines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/video_game/engines.json -------------------------------------------------------------------------------- /data/next/video_game/games.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/video_game/games.json -------------------------------------------------------------------------------- /data/next/video_game/regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/video_game/regions.json -------------------------------------------------------------------------------- /data/next/video_game/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/next/video_game/type.json -------------------------------------------------------------------------------- /data/photo_framing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/photo_framing.json -------------------------------------------------------------------------------- /data/photo_type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/photo_type.json -------------------------------------------------------------------------------- /data/photographer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/photographer.json -------------------------------------------------------------------------------- /data/photography_styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/photography_styles.json -------------------------------------------------------------------------------- /data/place.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/place.json -------------------------------------------------------------------------------- /data/pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/pose.json -------------------------------------------------------------------------------- /data/qwenvl_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/qwenvl_models.json -------------------------------------------------------------------------------- /data/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/data/roles.json -------------------------------------------------------------------------------- /examples/flux/apnext/APNext_Architecture_WF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/apnext/APNext_Architecture_WF.json -------------------------------------------------------------------------------- /examples/flux/apnext/APNext_Architecture_WF.jsonZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/apnext/APNext_Architecture_WF.jsonZone.Identifier -------------------------------------------------------------------------------- /examples/flux/apnext/APNext_Art_WF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/apnext/APNext_Art_WF.json -------------------------------------------------------------------------------- /examples/flux/apnext/APNext_Art_WF.jsonZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/apnext/APNext_Art_WF.jsonZone.Identifier -------------------------------------------------------------------------------- /examples/flux/apnext/APNext_Brand_Driven_WF.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/apnext/APNext_Brand_Driven_WF.json -------------------------------------------------------------------------------- /examples/flux/apnext/APNext_Brand_Driven_WF.jsonZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/apnext/APNext_Brand_Driven_WF.jsonZone.Identifier -------------------------------------------------------------------------------- /examples/flux/apnext/APNext_Examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/apnext/APNext_Examples.json -------------------------------------------------------------------------------- /examples/flux/apnext/APNext_Examples.jsonZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/apnext/APNext_Examples.jsonZone.Identifier -------------------------------------------------------------------------------- /examples/flux/florence2/dagthomas_florence2_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/florence2/dagthomas_florence2_workflow.json -------------------------------------------------------------------------------- /examples/flux/florence2/dagthomas_florence2_workflow.jsonZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/florence2/dagthomas_florence2_workflow.jsonZone.Identifier -------------------------------------------------------------------------------- /examples/flux/florence2/dagthomas_florence2_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/florence2/dagthomas_florence2_workflow.png -------------------------------------------------------------------------------- /examples/flux/florence2/dagthomas_florence2_workflow.pngZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/florence2/dagthomas_florence2_workflow.pngZone.Identifier -------------------------------------------------------------------------------- /examples/flux/gpt-4o-mini/dagthomas_gpt-4o-mini_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/gpt-4o-mini/dagthomas_gpt-4o-mini_workflow.json -------------------------------------------------------------------------------- /examples/flux/gpt-4o-mini/dagthomas_gpt-4o-mini_workflow.jsonZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/gpt-4o-mini/dagthomas_gpt-4o-mini_workflow.jsonZone.Identifier -------------------------------------------------------------------------------- /examples/flux/gpt-4o-mini/dagthomas_gpt-4o-mini_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/gpt-4o-mini/dagthomas_gpt-4o-mini_workflow.png -------------------------------------------------------------------------------- /examples/flux/gpt-4o_vision/dagthomas_gpt-4o-vision-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/gpt-4o_vision/dagthomas_gpt-4o-vision-workflow.png -------------------------------------------------------------------------------- /examples/flux/gpt-4o_vision/dagthomas_gpt4o_vision_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/gpt-4o_vision/dagthomas_gpt4o_vision_workflow.json -------------------------------------------------------------------------------- /examples/flux/gpt-4o_vision/dagthomas_gpt4o_vision_workflow.jsonZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/gpt-4o_vision/dagthomas_gpt4o_vision_workflow.jsonZone.Identifier -------------------------------------------------------------------------------- /examples/flux/ollama_local_llm/comfyui_dagthomas_localllm__00044_.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/ollama_local_llm/comfyui_dagthomas_localllm__00044_.png -------------------------------------------------------------------------------- /examples/flux/ollama_local_llm/dagthomas_ollama_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/ollama_local_llm/dagthomas_ollama_workflow.json -------------------------------------------------------------------------------- /examples/flux/ollama_local_llm/dagthomas_ollama_workflow.jsonZone.Identifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/flux/ollama_local_llm/dagthomas_ollama_workflow.jsonZone.Identifier -------------------------------------------------------------------------------- /examples/minicpm/image_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/minicpm/image_example.json -------------------------------------------------------------------------------- /examples/minicpm/video_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/minicpm/video_example.json -------------------------------------------------------------------------------- /examples/minicpm/video_input_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/examples/minicpm/video_input_example.json -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/__init__.py -------------------------------------------------------------------------------- /nodes/claude/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/claude/__init__.py -------------------------------------------------------------------------------- /nodes/claude/text_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/claude/text_node.py -------------------------------------------------------------------------------- /nodes/claude/vision_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/claude/vision_node.py -------------------------------------------------------------------------------- /nodes/file_utils/__init__.py: -------------------------------------------------------------------------------- 1 | # File utility nodes 2 | -------------------------------------------------------------------------------- /nodes/file_utils/file_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/file_utils/file_reader.py -------------------------------------------------------------------------------- /nodes/file_utils/prompt_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/file_utils/prompt_loader.py -------------------------------------------------------------------------------- /nodes/file_utils/random_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/file_utils/random_integer.py -------------------------------------------------------------------------------- /nodes/gemini/__init__.py: -------------------------------------------------------------------------------- 1 | # Gemini-based nodes 2 | -------------------------------------------------------------------------------- /nodes/gemini/custom_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/gemini/custom_vision.py -------------------------------------------------------------------------------- /nodes/gemini/next_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/gemini/next_scene.py -------------------------------------------------------------------------------- /nodes/gemini/prompt_enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/gemini/prompt_enhancer.py -------------------------------------------------------------------------------- /nodes/gemini/text_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/gemini/text_only.py -------------------------------------------------------------------------------- /nodes/gpt/__init__.py: -------------------------------------------------------------------------------- 1 | # GPT-based nodes 2 | -------------------------------------------------------------------------------- /nodes/gpt/custom_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/gpt/custom_vision.py -------------------------------------------------------------------------------- /nodes/gpt/mini_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/gpt/mini_node.py -------------------------------------------------------------------------------- /nodes/gpt/vision_cloner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/gpt/vision_cloner.py -------------------------------------------------------------------------------- /nodes/gpt/vision_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/gpt/vision_node.py -------------------------------------------------------------------------------- /nodes/grok/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/grok/__init__.py -------------------------------------------------------------------------------- /nodes/grok/text_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/grok/text_node.py -------------------------------------------------------------------------------- /nodes/grok/vision_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/grok/vision_node.py -------------------------------------------------------------------------------- /nodes/groq/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/groq/__init__.py -------------------------------------------------------------------------------- /nodes/groq/text_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/groq/text_node.py -------------------------------------------------------------------------------- /nodes/groq/vision_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/groq/vision_node.py -------------------------------------------------------------------------------- /nodes/image_fx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/__init__.py -------------------------------------------------------------------------------- /nodes/image_fx/bloom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/bloom.py -------------------------------------------------------------------------------- /nodes/image_fx/color_grading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/color_grading.py -------------------------------------------------------------------------------- /nodes/image_fx/cross_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/cross_processing.py -------------------------------------------------------------------------------- /nodes/image_fx/film_halation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/film_halation.py -------------------------------------------------------------------------------- /nodes/image_fx/glitch_art.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/glitch_art.py -------------------------------------------------------------------------------- /nodes/image_fx/hdr_tone_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/hdr_tone_mapping.py -------------------------------------------------------------------------------- /nodes/image_fx/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/noise.py -------------------------------------------------------------------------------- /nodes/image_fx/rough.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/rough.py -------------------------------------------------------------------------------- /nodes/image_fx/sharpen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/sharpen.py -------------------------------------------------------------------------------- /nodes/image_fx/split_toning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/image_fx/split_toning.py -------------------------------------------------------------------------------- /nodes/latent_generators/__init__.py: -------------------------------------------------------------------------------- 1 | # Latent generator nodes 2 | -------------------------------------------------------------------------------- /nodes/latent_generators/apn_latent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/latent_generators/apn_latent.py -------------------------------------------------------------------------------- /nodes/latent_generators/pgsd3_latent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/latent_generators/pgsd3_latent.py -------------------------------------------------------------------------------- /nodes/minicpm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/minicpm/README.md -------------------------------------------------------------------------------- /nodes/minicpm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/minicpm/__init__.py -------------------------------------------------------------------------------- /nodes/minicpm/image_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/minicpm/image_node.py -------------------------------------------------------------------------------- /nodes/minicpm/video_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/minicpm/video_node.py -------------------------------------------------------------------------------- /nodes/ollama/__init__.py: -------------------------------------------------------------------------------- 1 | # Ollama-based nodes 2 | -------------------------------------------------------------------------------- /nodes/ollama/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/ollama/node.py -------------------------------------------------------------------------------- /nodes/ollama/vision_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/ollama/vision_node.py -------------------------------------------------------------------------------- /nodes/phi/__init__.py: -------------------------------------------------------------------------------- 1 | # Phi model nodes 2 | -------------------------------------------------------------------------------- /nodes/phi/custom_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/phi/custom_inference.py -------------------------------------------------------------------------------- /nodes/phi/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/phi/inference.py -------------------------------------------------------------------------------- /nodes/phi/model_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/phi/model_loader.py -------------------------------------------------------------------------------- /nodes/phi/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/phi/pipeline.py -------------------------------------------------------------------------------- /nodes/prompt_generators/__init__.py: -------------------------------------------------------------------------------- 1 | # Prompt generator nodes 2 | -------------------------------------------------------------------------------- /nodes/prompt_generators/apnext_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/prompt_generators/apnext_nodes.py -------------------------------------------------------------------------------- /nodes/prompt_generators/auto_prompter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/prompt_generators/auto_prompter.py -------------------------------------------------------------------------------- /nodes/prompt_generators/universal_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/prompt_generators/universal_generator.py -------------------------------------------------------------------------------- /nodes/prompt_generators/universal_vision_cloner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/prompt_generators/universal_vision_cloner.py -------------------------------------------------------------------------------- /nodes/qwenvl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/qwenvl/__init__.py -------------------------------------------------------------------------------- /nodes/qwenvl/video_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/qwenvl/video_node.py -------------------------------------------------------------------------------- /nodes/qwenvl/vision_cloner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/qwenvl/vision_cloner.py -------------------------------------------------------------------------------- /nodes/qwenvl/vision_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/qwenvl/vision_node.py -------------------------------------------------------------------------------- /nodes/string_utils/__init__.py: -------------------------------------------------------------------------------- 1 | # String utility nodes 2 | -------------------------------------------------------------------------------- /nodes/string_utils/combiner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/string_utils/combiner.py -------------------------------------------------------------------------------- /nodes/string_utils/flexible_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/string_utils/flexible_merger.py -------------------------------------------------------------------------------- /nodes/string_utils/merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/string_utils/merger.py -------------------------------------------------------------------------------- /nodes/string_utils/mixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/nodes/string_utils/mixer.py -------------------------------------------------------------------------------- /original_sdxl_utility_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/original_sdxl_utility_backup.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/requirements.txt -------------------------------------------------------------------------------- /sd3_auto_prompter_workflow_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/sd3_auto_prompter_workflow_example.json -------------------------------------------------------------------------------- /sdxl_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/sdxl_utility.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Shared utilities for comfyui_dagthomas nodes 2 | -------------------------------------------------------------------------------- /utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/utils/constants.py -------------------------------------------------------------------------------- /utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/utils/image_utils.py -------------------------------------------------------------------------------- /utils/update_groq_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dagthomas/comfyui_dagthomas/HEAD/utils/update_groq_models.py --------------------------------------------------------------------------------