From dafde17776ef1d6de11bf466e320208a12ab6855 Mon Sep 17 00:00:00 2001 From: Lily Du Date: Tue, 22 Oct 2024 14:04:27 -0700 Subject: [PATCH] updated README --- getting-started/CONCEPTS/STREAMING.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/getting-started/CONCEPTS/STREAMING.md b/getting-started/CONCEPTS/STREAMING.md index 02fdefef9b..54eae077a9 100644 --- a/getting-started/CONCEPTS/STREAMING.md +++ b/getting-started/CONCEPTS/STREAMING.md @@ -74,7 +74,7 @@ You can configure streaming with your bot by following these steps: #### Optional additions: - Set the informative message in the `ActionPlanner` declaration via the `StartStreamingMessage` config. -- Set the feedback loop toggle in the `ActionPlanner` declaration and specify a handler. +- As previously, set the feedback loop toggle in the `AIOptions` object in the `ai` declaration and specify a handler. - Set attachments in the final chunk via the `EndStreamHandler` in the `ActionPlanner` declaration. #### C# @@ -155,7 +155,6 @@ const planner = new ActionPlanner({ defaultPrompt: 'default', startStreamingMessage: 'Loading stream results...', // Set informative message endStreamHandler: endStreamHandler // Set final chunk handler - enableFeedbackLoop: true, // Set the feedback loop }); ```