From e8b19b5826e32aa2eccd4cf381cde66ffdbdfd55 Mon Sep 17 00:00:00 2001 From: teknium1 Date: Tue, 10 Mar 2026 06:47:26 -0700 Subject: [PATCH] fix: cap user-input separator at 120 cols (matches response box) --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index f9a2765a4..aa09c425e 100755 --- a/cli.py +++ b/cli.py @@ -3239,7 +3239,7 @@ class HermesCLI: # Add user message to history self.conversation_history.append({"role": "user", "content": message}) - w = shutil.get_terminal_size().columns + w = min(shutil.get_terminal_size().columns, 120) _cprint(f"{_GOLD}{'─' * w}{_RST}") print(flush=True)