From c9fa0572031e1a649b5e961c254fb60131ce983d Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Mon, 13 Apr 2026 18:43:14 -0300 Subject: [PATCH] fix: TOOL_EXEC uses correct MessageType constant from botlib, not enums Co-authored-by: Qwen-Coder --- src/core/bot/tool_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/bot/tool_executor.rs b/src/core/bot/tool_executor.rs index e6c59678..62b1a21f 100644 --- a/src/core/bot/tool_executor.rs +++ b/src/core/bot/tool_executor.rs @@ -1,6 +1,6 @@ /// Generic tool executor for LLM tool calls /// Works across all LLM providers (GLM, OpenAI, Claude, etc.) -use log::{error, info, trace, warn}; +use log::{error, info}; use serde_json::Value; use std::fs::OpenOptions; use std::io::Write;