From 350301c63df5736f96f755df9f35e3bd5d048894 Mon Sep 17 00:00:00 2001 From: skyjoshua Date: Fri, 27 Feb 2026 21:47:19 +0000 Subject: [PATCH] The AI now knows your Username and ID so that it can distinguish between users --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index 4a025fe..641ebcf 100644 --- a/Program.cs +++ b/Program.cs @@ -103,7 +103,7 @@ public class Program var history = GetOrCreateHistory(channelId); - history.Add(new ChatMessage { role = "user", content = prompt }); + history.Add(new ChatMessage { role = "user", content = $"User: {member.Name} (ID: {member.Id}) | {prompt}" }); TrimHistory(history); var payload = new @@ -133,7 +133,7 @@ public class Program history.Add(new ChatMessage { role = "assistant", content = output }); - output = "{ping} {output}"; + output = $"{ping} {output}"; output = Truncate(output);