fix: remove left/right borders from response box for easier copy-paste

Use rich_box.HORIZONTALS instead of the default ROUNDED box style
for the agent response panel. This keeps the top/bottom horizontal
rules (with title) but removes the vertical │ borders on left and
right, making it much easier to copy-paste response text from the
terminal.
This commit is contained in:
teknium1
2026-03-10 15:59:08 -07:00
parent 6e851a1f6a
commit ad7a16dca6

2
cli.py
View File

@@ -396,6 +396,7 @@ try:
except Exception:
pass # Skin engine is optional — default skin used if unavailable
from rich import box as rich_box
from rich.console import Console
from rich.panel import Panel
from rich.table import Table
@@ -3340,6 +3341,7 @@ class HermesCLI:
title=f"[bold]{label}[/bold]",
title_align="left",
border_style=_resp_color,
box=rich_box.HORIZONTALS,
padding=(1, 2),
))