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;
- }
-}