add memory
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 16s

This commit is contained in:
Garret Patti
2026-07-11 10:06:48 -04:00
parent 048005f0a8
commit a794e387f3
13 changed files with 728 additions and 60 deletions

View File

@@ -30,7 +30,7 @@ public class LlmCommands : InteractionModuleBase<SocketInteractionContext>
{
var accumulated = "";
await foreach (var text in _llmService.SendMessageAsync(channelId, userName, prompt))
await foreach (var text in _llmService.SendMessageAsync(channelId, Context.User.Id, userName, prompt))
{
accumulated = text;
}