fixed some log dups for tool calling

This commit is contained in:
Luxferre
2026-03-23 08:31:45 +02:00
parent f931203cda
commit 4aeb84c9b1
2 changed files with 10 additions and 8 deletions
-2
View File
@@ -117,8 +117,6 @@ func (s *Sidekick) logIntermediate(msg Message) {
}
if msg.Content != "" {
s.IntermediateHandler(fmt.Sprintf("LLM Output: %s", msg.Content))
} else if len(msg.ToolCalls) > 0 {
s.IntermediateHandler(fmt.Sprintf("Tool Call: %s", msg.ToolCalls[0].Function.Name))
}
}