@@ -36,15 +36,13 @@ You can use the `Width` property to set the width of the AI AssistView.
## Setting height
-You can use the `Height` property to set the height of the AI AssistView.
-
-> By default, the component `Width` & `Height` will be inherited based on the parent dimensions.
+You can use the [Height](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_Height) property to set the height of the AI AssistView. The default value is `100%`.
```cshtml
@using Syncfusion.Blazor.InteractiveChat
-
+
@@ -63,14 +61,14 @@ You can use the `Height` property to set the height of the AI AssistView.
## CssClass
-You can customize the appearance of the AI AssistView component by using the `CssClass` property.
+You can customize the appearance of the AI AssistView component by using the [CssClass](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_CssClass) property.
```cshtml
@using Syncfusion.Blazor.InteractiveChat
-
+
@code {
@@ -82,18 +80,18 @@ You can customize the appearance of the AI AssistView component by using the `Cs
}
}
diff --git a/blazor/ai-assistview/assist-view.md b/blazor/ai-assistview/assist-view.md
index 525801945d..2a67b45d02 100644
--- a/blazor/ai-assistview/assist-view.md
+++ b/blazor/ai-assistview/assist-view.md
@@ -11,7 +11,7 @@ documentation: ug
## Setting prompt text
-You can use the `Prompt` property to define the prompt text for the AI AssistView component.
+You can use the [Prompt](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_Prompt) property to define the prompt text for the AI AssistView component.
```cshtml
@@ -36,7 +36,7 @@ You can use the `Prompt` property to define the prompt text for the AI AssistVie
## Setting prompt placeholder
-You can use the `PromptPlaceholder` property to set the placeholder text for the prompt textarea. The default value is `Type prompt for assistance...`.
+You can use the [PromptPlaceholder](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_PromptPlaceholder) property to set the placeholder text for the prompt textarea. The default value is `Type prompt for assistance...`.
```cshtml
@@ -61,7 +61,7 @@ You can use the `PromptPlaceholder` property to set the placeholder text for the
## Prompt-response collection
-By using the `Prompts` property, you can specify the collection of prompts and responses, allowing you to load pre-defined pairs or individual entries ensuring the AI AssistView component is initialized with the configured data.
+You can use the [Prompts](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_Prompts) property to initialize the component with the configured data as a collection of prompts and responses or individual entries.
The `Prompts` collection stores all the prompts and responses generated.
@@ -94,7 +94,7 @@ The `Prompts` collection stores all the prompts and responses generated.
## Adding prompt suggestions
-By using the `PromptSuggestions` property, you can configure the list of suggested prompts in the AI AssistView. Users can choose from these suggestions to use as their prompts.
+You can use the [PromptSuggestions](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_PromptSuggestions) property, to add the suggestions in both initial and on-demand which help users to refine their prompts. Additionally, custom header can be set for suggestions further enhancing the user experience.
```cshtml
@@ -122,7 +122,7 @@ By using the `PromptSuggestions` property, you can configure the list of suggest
### Adding suggestion headers
-You can use the `PromptSuggestionsHeader` property to set the header text for the prompt suggestions in the AI AssistView.
+You can use the [PromptSuggestionsHeader](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_PromptSuggestionsHeader) property to set the header text for the prompt suggestions in the AI AssistView.
```cshtml
@@ -148,9 +148,9 @@ You can use the `PromptSuggestionsHeader` property to set the header text for th

-## Adding prompt iconCSS
+## Adding prompt iconCss
-You can customize the appearance of the prompter avatar by using the `PromptIconCss` property.
+You can customize the appearance of the prompter avatar by using the [PromptIconCss](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_PromptIconCss) property.
```cshtml
@@ -179,16 +179,16 @@ You can customize the appearance of the prompter avatar by using the `PromptIcon

-## Adding response iconCSS
+## Adding response iconCss
-You can use the `ResponseIconCss` property to customize the appearance of the responder avatar. By default, the `e-assistview-icon` class is added as the built-in AI AssistView response icon.
+You can use the [ResponseIconCss](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.SfAIAssistView.html#Syncfusion_Blazor_InteractiveChat_SfAIAssistView_ResponseIconCss) property to customize the appearance of the responder avatar. By default, the `e-assistview-icon` class is added as the built-in AI AssistView response icon.
```cshtml
@using Syncfusion.Blazor.InteractiveChat
-
+
@code {
diff --git a/blazor/ai-assistview/custom-view.md b/blazor/ai-assistview/custom-view.md
index af845e42b4..21081a8c86 100644
--- a/blazor/ai-assistview/custom-view.md
+++ b/blazor/ai-assistview/custom-view.md
@@ -15,7 +15,7 @@ The Blazor AI AssistView allows you to add different views available for user in
#### Setting view type
-You can change the type of view by using the `AssistView` and `CustomView` tag directive.
+You can set the type of view by using the [AssistView](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.AssistView.html) and [CustomView](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.CustomView.html) tag directive.
```cshtml
@@ -25,7 +25,11 @@ You can change the type of view by using the `AssistView` and `CustomView` tag d
-
+
+
+ Response view content
+
+
@@ -45,7 +49,7 @@ You can change the type of view by using the `AssistView` and `CustomView` tag d
### Setting name
-You can use the `Header` property to specifies the header name of the `Assist` or `Custom` views in the AI AssistView.
+You can use the [Header](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.InteractiveChat.AssistView.html#Syncfusion_Blazor_InteractiveChat_AssistView_Header) property to specifies the header name of the `Assist` or `Custom` views in the AI AssistView.
```cshtml
@@ -55,7 +59,11 @@ You can use the `Header` property to specifies the header name of the `Assist` o