From b3e6cb5d982d89b5cf923ade440bf0c43bf46bf9 Mon Sep 17 00:00:00 2001 From: Shubham Malhotra Date: Wed, 11 Mar 2026 12:57:36 -0700 Subject: [PATCH] personalization-a bit --- src/cli/tui_app.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/cli/tui_app.h b/src/cli/tui_app.h index c7b51da..93cc13a 100644 --- a/src/cli/tui_app.h +++ b/src/cli/tui_app.h @@ -1002,6 +1002,13 @@ class TuiApp { text("[Up/Down] navigate [Enter] select [ESC] close ") | dim, }); } + if (personality_mode_) { + return hbox({ + text(" Personality ") | ftxui::bold | ftxui::color(theme_.accent), + filler(), + text("[Up/Down] navigate [Enter] select [ESC] close ") | dim, + }); + } bool trace_on = tool_trace_enabled_.load(std::memory_order_relaxed); @@ -1016,6 +1023,7 @@ class TuiApp { right.push_back(text("[M] models ") | dim); right.push_back(text("[A] actions ") | dim); right.push_back(text("[R] RAG ") | dim); + right.push_back(text("[P] personality ") | dim); right.push_back(text("[D] cleanup ") | dim); if (trace_on) right.push_back(text("[T] trace ") | ftxui::color(theme_.info));