From 87a4be7439c55b63571467e6181c37f3f49fba98 Mon Sep 17 00:00:00 2001 From: Fodesu Date: Mon, 23 Feb 2026 20:04:00 +0800 Subject: [PATCH] fix: discord channel stream ignore Reasoning content --- internal/channel/adapters/discord/stream.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/channel/adapters/discord/stream.go b/internal/channel/adapters/discord/stream.go index 4279acf9..d343d837 100644 --- a/internal/channel/adapters/discord/stream.go +++ b/internal/channel/adapters/discord/stream.go @@ -47,7 +47,7 @@ func (s *discordOutboundStream) Push(ctx context.Context, event channel.StreamEv return nil case channel.StreamEventDelta: - if event.Delta == "" { + if event.Delta == "" || event.Phase == channel.StreamPhaseReasoning { return nil } s.mu.Lock()