feat: add GOOSE_SHOW_FULL_OUTPUT config to disable tool output truncation (#7919)
Signed-off-by: Dale Lakes <6843636+spitfire55@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -76,7 +76,9 @@ thread_local! {
|
|||||||
.unwrap_or(Theme::Ansi)
|
.unwrap_or(Theme::Ansi)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
static SHOW_FULL_TOOL_OUTPUT: RefCell<bool> = const { RefCell::new(false) };
|
static SHOW_FULL_TOOL_OUTPUT: RefCell<bool> = RefCell::new(
|
||||||
|
Config::global().get_param::<bool>("GOOSE_SHOW_FULL_OUTPUT").unwrap_or(false)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn set_theme(theme: Theme) {
|
pub fn set_theme(theme: Theme) {
|
||||||
|
|||||||
Reference in New Issue
Block a user