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:
parent
6e851a1f6a
commit
ad7a16dca6
1 changed files with 2 additions and 0 deletions
2
cli.py
2
cli.py
|
|
@ -396,6 +396,7 @@ try:
|
||||||
except Exception:
|
except Exception:
|
||||||
pass # Skin engine is optional — default skin used if unavailable
|
pass # Skin engine is optional — default skin used if unavailable
|
||||||
|
|
||||||
|
from rich import box as rich_box
|
||||||
from rich.console import Console
|
from rich.console import Console
|
||||||
from rich.panel import Panel
|
from rich.panel import Panel
|
||||||
from rich.table import Table
|
from rich.table import Table
|
||||||
|
|
@ -3340,6 +3341,7 @@ class HermesCLI:
|
||||||
title=f"[bold]{label}[/bold]",
|
title=f"[bold]{label}[/bold]",
|
||||||
title_align="left",
|
title_align="left",
|
||||||
border_style=_resp_color,
|
border_style=_resp_color,
|
||||||
|
box=rich_box.HORIZONTALS,
|
||||||
padding=(1, 2),
|
padding=(1, 2),
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue