From 2952b4d52f47fa672eb3bf2134fd8f83da7b04d3 Mon Sep 17 00:00:00 2001 From: SenthilarasuBalu <119287329+SenthilarasuBalu@users.noreply.github.com> Date: Mon, 16 Sep 2024 19:07:34 +0530 Subject: [PATCH] 903622: event removed --- blazor/ai-assistview/custom-view.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/blazor/ai-assistview/custom-view.md b/blazor/ai-assistview/custom-view.md index 5d20012406..af845e42b4 100644 --- a/blazor/ai-assistview/custom-view.md +++ b/blazor/ai-assistview/custom-view.md @@ -112,7 +112,7 @@ You can use the `ViewTemplate` tag directive to add the view content of the mult @using Syncfusion.Blazor.InteractiveChat
- + @@ -128,14 +128,6 @@ You can use the `ViewTemplate` tag directive to add the view content of the mult
-@code { - private async Task PromptRequest(AssistViewPromptRequestedEventArgs args) - { - await Task.Delay(1000); - var defaultResponse = "For real-time prompt processing, connect the AI AssistView component to your preferred AI service, such as OpenAI or Azure Cognitive Services. Ensure you obtain the necessary API credentials to authenticate and enable seamless integration."; - args.Response = defaultResponse; - } -}