fix: cap user-input separator at 120 cols (matches response box)

This commit is contained in:
teknium1
2026-03-10 06:47:26 -07:00
parent 9ea2209a43
commit e8b19b5826

2
cli.py
View File

@@ -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)