test(agent): format subturn feedback cleanup test
This commit is contained in:
parent
fee085985f
commit
c2c1baf365
1 changed files with 6 additions and 2 deletions
|
|
@ -36,22 +36,26 @@ type recordingChannelManager struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *recordingChannelManager) GetChannel(name string) (channels.Channel, bool) { return nil, false }
|
func (m *recordingChannelManager) GetChannel(name string) (channels.Channel, bool) { return nil, false }
|
||||||
func (m *recordingChannelManager) GetEnabledChannels() []string { return nil }
|
func (m *recordingChannelManager) GetEnabledChannels() []string { return nil }
|
||||||
func (m *recordingChannelManager) InvokeTypingStop(channel, chatID string) {}
|
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,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue