From 6f9ed9562da66c2ec802428f28717c34eddbf1ed Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Wed, 12 Feb 2025 15:01:02 -0500 Subject: [PATCH] increase history; fix test --- ra_aid/proc/interactive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ra_aid/proc/interactive.py b/ra_aid/proc/interactive.py index c8aaac5..23f6d3a 100644 --- a/ra_aid/proc/interactive.py +++ b/ra_aid/proc/interactive.py @@ -56,7 +56,7 @@ def run_interactive_command(cmd: List[str]) -> Tuple[bytes, int]: cols, rows = 80, 24 # Instantiate HistoryScreen with a large history (scrollback) buffer. - screen = HistoryScreen(cols, rows, history=1000, ratio=0.5) + screen = HistoryScreen(cols, rows, history=15000, ratio=0.5) stream = pyte.Stream(screen) # Open a new pseudo-tty.