feat(channels): enable tool hints by default

This commit is contained in:
chengyongru
2026-07-26 21:22:12 +08:00
committed by chengyongru
parent ee93725e83
commit d576804f23
8 changed files with 27 additions and 16 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ class BaseChannel(ABC):
name: str = "base"
display_name: str = "Base"
send_progress: bool = True
send_tool_hints: bool = False
send_tool_hints: bool = True
show_reasoning: bool = True
def __init__(self, config: Any, bus: MessageBus):