From c3c28e282b745dc5a88180389e06135d20affccc Mon Sep 17 00:00:00 2001 From: Haiping Chen Date: Mon, 27 May 2024 19:26:58 -0500 Subject: [PATCH] Return Instruction for SSE. --- .../BotSharp.OpenAPI/Controllers/ConversationController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Infrastructure/BotSharp.OpenAPI/Controllers/ConversationController.cs b/src/Infrastructure/BotSharp.OpenAPI/Controllers/ConversationController.cs index 6ed27b32..71d824b3 100644 --- a/src/Infrastructure/BotSharp.OpenAPI/Controllers/ConversationController.cs +++ b/src/Infrastructure/BotSharp.OpenAPI/Controllers/ConversationController.cs @@ -298,6 +298,7 @@ public class ConversationController : ControllerBase MessageId = msg.MessageId, Text = msg.Indication, Function = "indicating", + Instruction = msg.Instruction, States = new Dictionary() }; await OnChunkReceived(Response, indicator);