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) <noreply@anthropic.com>
This commit is contained in:
parent
fe42042c0c
commit
937ed67b04
1 changed files with 4 additions and 0 deletions
|
|
@ -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 {
|
func (a *channelManagerAdapter) SendPlaceholder(ctx context.Context, channel, chatID string) bool {
|
||||||
return a.inner.SendPlaceholder(ctx, channel, chatID)
|
return a.inner.SendPlaceholder(ctx, channel, chatID)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (a *channelManagerAdapter) DismissToolFeedback(ctx context.Context, channel, chatID string) {
|
||||||
|
a.inner.DismissToolFeedback(ctx, channel, chatID)
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue