test(agent): format subturn feedback cleanup test

This commit is contained in:
Anton Bogdanovich 2026-05-08 10:29:28 -07:00
parent fee085985f
commit c2c1baf365

View file

@ -41,17 +41,21 @@ func (m *recordingChannelManager) InvokeTypingStop(channel, chatID string)
func (m *recordingChannelManager) SendMessage(ctx context.Context, msg bus.OutboundMessage) error { func (m *recordingChannelManager) SendMessage(ctx context.Context, msg bus.OutboundMessage) error {
return nil return nil
} }
func (m *recordingChannelManager) SendMedia(ctx context.Context, msg bus.OutboundMediaMessage) error { func (m *recordingChannelManager) SendMedia(ctx context.Context, msg bus.OutboundMediaMessage) error {
return nil return nil
} }
func (m *recordingChannelManager) SendPlaceholder(ctx context.Context, channel, chatID string) bool { func (m *recordingChannelManager) SendPlaceholder(ctx context.Context, channel, chatID string) bool {
return false return false
} }
func (m *recordingChannelManager) DismissToolFeedback( func (m *recordingChannelManager) DismissToolFeedback(
ctx context.Context, channel, chatID string, outboundCtx *bus.InboundContext, ctx context.Context, channel, chatID string, outboundCtx *bus.InboundContext,
) { ) {
m.dismissedChatIDs = append(m.dismissedChatIDs, fmt.Sprintf("%s:%s", channel, chatID)) m.dismissedChatIDs = append(m.dismissedChatIDs, fmt.Sprintf("%s:%s", channel, chatID))
} }
func (m *recordingChannelManager) DismissToolFeedbackForSession( func (m *recordingChannelManager) DismissToolFeedbackForSession(
ctx context.Context, ctx context.Context,
channel, chatID string, channel, chatID string,