diff --git a/wpf/AI-AssistView/Getting-Started.md b/wpf/AI-AssistView/Getting-Started.md
index e83dfbe22..ed31e2a11 100644
--- a/wpf/AI-AssistView/Getting-Started.md
+++ b/wpf/AI-AssistView/Getting-Started.md
@@ -15,7 +15,7 @@ This section explains the steps required to add the Wpf [SfAIAssistView](https:/

-## Adding WPF SfAIAssistview via xaml
+## Adding WPF SfAIAssistView via xaml
1. Create a [Wpf desktop app for C# and .NET 6](https://learn.microsoft.com/en-us/dotnet/desktop/wpf/get-started/create-app-visual-studio?view=netdesktop-9.0).
2. Add reference to [Syncfusion.SfChat.Wpf](https://www.nuget.org/packages/Syncfusion.SfChat.Wpf) NuGet.
@@ -43,7 +43,7 @@ This section explains the steps required to add the Wpf [SfAIAssistView](https:/
{% endhighlight %}
{% endtabs %}
-## Adding WPF SfAIAssistview via C#
+## Adding WPF SfAIAssistView via C#
1. Create a [Wpf desktop app for C# and .NET 6](https://learn.microsoft.com/en-us/dotnet/desktop/wpf/get-started/create-app-visual-studio?view=netdesktop-9.0).
2. Add reference to [Syncfusion.SfChat.Wpf](https://www.nuget.org/packages/Syncfusion.SfChat.Wpf) NuGet.
diff --git a/wpf/AI-AssistView/Getting-started.md b/wpf/AI-AssistView/Getting-started.md
deleted file mode 100644
index e83dfbe22..000000000
--- a/wpf/AI-AssistView/Getting-started.md
+++ /dev/null
@@ -1,176 +0,0 @@
----
-layout: post
-title: Getting Started with WPF AI AssistView control | Syncfusion
-description: Learn about getting started with the Syncfusion WPF AI AssistView (SfAIAssistView) control with its basic features.
-platform: wpf
-control: AI AssistView
-documentation: ug
----
-
-# Getting Started with WPF AI AssistView
-
-This section explains the steps required to add the Wpf [SfAIAssistView](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Chat.SfAIAssistView.html) control with its basic features.
-
-## Structure of SfAIAssistView
-
-
-
-## Adding WPF SfAIAssistview via xaml
-
-1. Create a [Wpf desktop app for C# and .NET 6](https://learn.microsoft.com/en-us/dotnet/desktop/wpf/get-started/create-app-visual-studio?view=netdesktop-9.0).
-2. Add reference to [Syncfusion.SfChat.Wpf](https://www.nuget.org/packages/Syncfusion.SfChat.Wpf) NuGet.
-3. Import the control namespace `Syncfusion.UI.Xaml.Chat` in XAML or C# code.
-4. Initialize the [SfAIAssistView](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Chat.SfAIAssistView.html) control.
-
-{% tabs %}
-{% highlight xaml %}
-
-
-
-
-
-
-
-{% endhighlight %}
-{% endtabs %}
-
-## Adding WPF SfAIAssistview via C#
-
-1. Create a [Wpf desktop app for C# and .NET 6](https://learn.microsoft.com/en-us/dotnet/desktop/wpf/get-started/create-app-visual-studio?view=netdesktop-9.0).
-2. Add reference to [Syncfusion.SfChat.Wpf](https://www.nuget.org/packages/Syncfusion.SfChat.Wpf) NuGet.
-3. Import the control namespace `Syncfusion.UI.Xaml.Chat` in XAML or C# code.
-4. Initialize the [SfAIAssistView](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Chat.SfAIAssistView.html) control.
-
-{% tabs %}
-{% highlight C# %}
-
-using Syncfusion.UI.Xaml.Chat;
-
-namespace GettingStarted
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- this.InitializeComponent();
- // Creating an instance of the AIAssistView control
- SfAIAssistView assistView = new SfAIAssistView();
- grid.Children.Add(assistView);
- }
- }
-}
-
-{% endhighlight %}
-{% endtabs %}
-
-
-## Creating ViewModel for AI AssistView
-
-Create a simple chat collection as shown in the following code example in a new class file. Save it as ViewModel.cs file.
-
-{% tabs %}
-{% highlight C# %}
-
- public class ViewModel : INotifyPropertyChanged
- {
- private ObservableCollection