From 937ed67b04de70b4810d2de5fc156d571bdc4881 Mon Sep 17 00:00:00 2001 From: Guoguo Date: Wed, 29 Apr 2026 05:24:51 -0700 Subject: [PATCH] fix(adapters): add DismissToolFeedback to channelManagerAdapter The adapter must implement the new interface method added in the previous commit, otherwise the package fails to compile. Co-Authored-By: Claude Opus 4.7 (1M context) --- pkg/agent/adapters/channelmanager.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/agent/adapters/channelmanager.go b/pkg/agent/adapters/channelmanager.go index 8265ef99d..185269e0c 100644 --- a/pkg/agent/adapters/channelmanager.go +++ b/pkg/agent/adapters/channelmanager.go @@ -43,3 +43,7 @@ func (a *channelManagerAdapter) SendMedia(ctx context.Context, msg bus.OutboundM func (a *channelManagerAdapter) SendPlaceholder(ctx context.Context, channel, chatID string) bool { return a.inner.SendPlaceholder(ctx, channel, chatID) } + +func (a *channelManagerAdapter) DismissToolFeedback(ctx context.Context, channel, chatID string) { + a.inner.DismissToolFeedback(ctx, channel, chatID) +}