From 8250336498e3379106925d5d8d1ab75a2927f3d3 Mon Sep 17 00:00:00 2001 From: Jicheng Lu Date: Tue, 9 Sep 2025 01:58:46 -0500 Subject: [PATCH] fix missing label --- .../BotSharp.Plugin.ChatHub/Hooks/ChatHubConversationHook.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Plugins/BotSharp.Plugin.ChatHub/Hooks/ChatHubConversationHook.cs b/src/Plugins/BotSharp.Plugin.ChatHub/Hooks/ChatHubConversationHook.cs index e00340014..9aa7e5b66 100644 --- a/src/Plugins/BotSharp.Plugin.ChatHub/Hooks/ChatHubConversationHook.cs +++ b/src/Plugins/BotSharp.Plugin.ChatHub/Hooks/ChatHubConversationHook.cs @@ -153,6 +153,7 @@ public override async Task OnResponseGenerated(RoleDialogModel message) { ConversationId = conv.ConversationId, MessageId = item.MessageId, + MessageLabel = item.MessageLabel, Text = !string.IsNullOrEmpty(item.SecondaryContent) ? item.SecondaryContent : item.Content, Function = item.FunctionName, RichContent = item.SecondaryRichContent ?? item.RichContent,