From 6046e52c7659075483f858fc121fb39008467fa6 Mon Sep 17 00:00:00 2001 From: Oleg Yermolenko Date: Fri, 28 Nov 2025 19:50:21 +0200 Subject: [PATCH] fix formatting --- src/lib/utils/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index 4a952f964e..feffbd546b 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -896,13 +896,13 @@ export const processDetailsAndExtractToolCalls = (content) => { name: attributes.name, arguments: unescapeHtml(attributes.arguments ?? ''), result: unescapeHtml(attributes.result ?? '') - } + }; toolCall.arguments = parseDoubleEncodedString(toolCall.arguments); toolCall.result = parseDoubleEncodedString(toolCall.result); messages.push(toolCall); - }; + } let finalAssistantMessage = content.substr(previousDetailsEndIndex); finalAssistantMessage = finalAssistantMessage.trim('\n');