clean code

This commit is contained in:
Jicheng Lu 2024-05-26 22:19:06 -05:00
parent 6b5d77604e
commit 953a53c4bc

View file

@ -1,4 +1,3 @@
using BotSharp.Abstraction.Conversations.Enums;
using BotSharp.Abstraction.Templating;
namespace BotSharp.Core.Conversations.Services;
@ -52,9 +51,4 @@ public partial class ConversationService
return response.Content;
}
private void SaveState(string summary)
{
_state.SetState("conversation_summary", summary, source: StateSource.Application);
}
}