From aaa70f4c4c487228d6f1906ecbadf70d86fe40e5 Mon Sep 17 00:00:00 2001 From: Satchel Baldwin Date: Fri, 20 Jun 2025 15:58:58 -0500 Subject: [PATCH] add: json tool output over a certain length is truncated --- beaker-vue/src/components/misc/DebugLogMessage.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/beaker-vue/src/components/misc/DebugLogMessage.vue b/beaker-vue/src/components/misc/DebugLogMessage.vue index acef6bd3..bbd4012f 100644 --- a/beaker-vue/src/components/misc/DebugLogMessage.vue +++ b/beaker-vue/src/components/misc/DebugLogMessage.vue @@ -38,8 +38,9 @@ readonly :modelValue="logEntry?.body?.output?.trim()" class="debug-code-display" - v-else + v-else-if="logEntry?.body?.output?.trim().length <= 1500" /> +

Tool output was significantly long and has been hidden by default - view additional details below to see the raw output.

{{ logEntry?.body?.final_answer?.response }}