From ffe9fb81b001747b0d99d4627d39b9a0abf6f7ce Mon Sep 17 00:00:00 2001 From: "C. Oceania" Date: Thu, 28 Mar 2024 16:44:57 -0500 Subject: [PATCH] Update RoutingService.InvokeFunction.cs --- .../BotSharp.Core/Routing/RoutingService.InvokeFunction.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Infrastructure/BotSharp.Core/Routing/RoutingService.InvokeFunction.cs b/src/Infrastructure/BotSharp.Core/Routing/RoutingService.InvokeFunction.cs index fdf68b82..2bce93a3 100644 --- a/src/Infrastructure/BotSharp.Core/Routing/RoutingService.InvokeFunction.cs +++ b/src/Infrastructure/BotSharp.Core/Routing/RoutingService.InvokeFunction.cs @@ -69,11 +69,11 @@ public partial class RoutingService } // Save to Storage as well - if (!message.StopCompletion && message.FunctionName != "route_to_agent") + /*if (!message.StopCompletion && message.FunctionName != "route_to_agent") { var storage = _services.GetRequiredService(); storage.Append(Context.ConversationId, message); - } + }*/ return result; }