From 5fb0a12d8e480aac1a9afabb86190144db26875d Mon Sep 17 00:00:00 2001 From: Chris Dumas Date: Fri, 14 Aug 2026 13:09:42 +0000 Subject: [PATCH] Refine character helper reference text --- dumas_image_nodes.py | 1 + tests/test_dumas_image_nodes.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/dumas_image_nodes.py b/dumas_image_nodes.py index 68773e1..7a2734b 100644 --- a/dumas_image_nodes.py +++ b/dumas_image_nodes.py @@ -321,6 +321,7 @@ def _build_character_helper_text( lines = [ first_line, f" is the primary full-body reference for {character_label}.", + f" is a frontal facial reference for {character_label}.", ] if character_id: diff --git a/tests/test_dumas_image_nodes.py b/tests/test_dumas_image_nodes.py index 5a9ac86..2339715 100644 --- a/tests/test_dumas_image_nodes.py +++ b/tests/test_dumas_image_nodes.py @@ -264,6 +264,7 @@ class DumasImageNodeTests(unittest.TestCase): ( " and reference the same character who is called Dave.\n" " is the primary full-body reference for Dave.\n" + " is a frontal facial reference for Dave.\n" 'The character ID string is "char_dave".\n' "Dave is 6'2\" tall.\n" "Dave has a northern English accent.\n" @@ -293,7 +294,8 @@ class DumasImageNodeTests(unittest.TestCase): result[2], ( " and reference the same character.\n" - " is the primary full-body reference for the character." + " is the primary full-body reference for the character.\n" + " is a frontal facial reference for the character." ), )