From 4ea696e32ae12ea0ffc1208b158baa4755397f1d Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Wed, 11 Dec 2024 16:24:18 -0500 Subject: [PATCH] ux --- ra_aid/tools/programmer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ra_aid/tools/programmer.py b/ra_aid/tools/programmer.py index 4fd4129..0a342c5 100644 --- a/ra_aid/tools/programmer.py +++ b/ra_aid/tools/programmer.py @@ -42,9 +42,9 @@ def emit_related_files(files: List[str]) -> List[str]: # Rich output - single consolidated panel if added_files: files_added_md = '\n'.join(f"- `{file}`" for file in added_files) - md_content = f"**Files Added:**\n{files_added_md}" + md_content = f"**Files Noted:**\n{files_added_md}" console.print(Panel(Markdown(md_content), - title="📁 Related Files Added", + title="📁 Related Files Noted", border_style="green")) return results