From 267d26e952670150c4432e9f5a0070dd8f94cdc6 Mon Sep 17 00:00:00 2001 From: skyjoshua Date: Fri, 27 Feb 2026 20:53:35 +0000 Subject: [PATCH] made the Ping be included in the trunctation --- Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index eacb7fb..4a025fe 100644 --- a/Program.cs +++ b/Program.cs @@ -133,7 +133,9 @@ public class Program history.Add(new ChatMessage { role = "assistant", content = output }); - output = $"{ping} {Truncate(output)}"; + output = "{ping} {output}"; + + output = Truncate(output); await Utils.SendReplyAsync(ChannelCache, channelId, output); };