diff --git a/wpf/AI-AssistView/Input-Toolbar.md b/wpf/AI-AssistView/Input-Toolbar.md
new file mode 100644
index 000000000..06f01076d
--- /dev/null
+++ b/wpf/AI-AssistView/Input-Toolbar.md
@@ -0,0 +1,123 @@
+---
+layout: post
+title: Input Toolbar in WPF AI AssistView control | Syncfusion
+description: Learn about the input toolbar feature in the AI AssistView control, which enables users to access quick actions to input textbox responses through toolbar items.
+platform: wpf
+control: SfAIAssistView
+documentation: ug
+---
+
+# Input Toolbar in WPF AI AssistView
+
+The [SfAIAssistView](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Chat.SfAIAssistView.html) control includes a toolbar feature inside the input textbox. This toolbar allows users to add custom toolbar items directly within the text input area, providing quick access to frequently used actions and tools.
+
+## InputToolbarItem
+
+The **InputToolbarItem** class is used to define and add items to the input textbox toolbar in the SfAIAssistView. The following properties are available in this class:
+
+- **IsEnabled**: Specifies whether the toolbar item is enabled (interactive) or disabled (non-interactive).
+- **Tooltip**: Sets the tooltip text displayed when the user hovers over the toolbar item.
+- **Visible**: Indicates whether the toolbar item is visible.
+- **ItemTemplate**: Allows you to set a custom template for rendering the toolbar item.
+
+## Adding an input toolbar item to the input toolbar
+
+The **InputToolbarItem** in [SfAIAssistView](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Chat.SfAIAssistView.html) the text area does not include built-in toolbar items like the response toolbar (e.g., Copy, Like, Dislike, Regenerate). However, you can add custom items using the InputToolbarItem class.
+
+Use the ItemTemplate property to define the appearance and behavior of each toolbar item. This allows you to display icons, buttons, text, or even complex UI elements such as Path, Image, or TextBlock within the toolbar.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+## Input toolbar position
+
+The **InputToolbarPosition** property of the [SfAIAssistView](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Chat.SfAIAssistView.html) control specifies the placement of the input toolbar within the control. By default, the toolbar is positioned on the right side of the control.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+
+{% endhighlight %}
+{% highlight C# %}
+
+SfAIAssistView aiAssistView = new SfAIAssistView();
+aiAssistView.InputToolbarPosition = ToolbarPosition.Left;
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+## Input toolbar visibility
+
+The **IsInputToolbarVisible** property of the [SfAIAssistView](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Chat.SfAIAssistView.html) control determines whether the input toolbar is displayed in the SfAIAssistView. When set to true, the input toolbar becomes visible. By default, this property is set to false.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+
+{% endhighlight %}
+{% highlight C# %}
+
+SfAIAssistView aiAssistView = new SfAIAssistView();
+aiAssistView.IsInputToolbarVisible = True;
+
+{% endhighlight %}
+{% endtabs %}
+
+
+
+## Item clicked event
+
+The **InputToolbarItemClicked** event is triggered whenever a toolbar item in the InputToolbarItems collection is clicked by the user. You can handle this event to perform custom actions based on which item was clicked.
+
+{% tabs %}
+{% highlight xaml %}
+
+
+
+{% endhighlight %}
+{% highlight C# %}
+
+SfAIAssistView sfAIAssistView = new SfAIAssistView();
+sfAIAssistView.InputToolbarItemClicked += AiAssistView_InputToolbarItemClicked;
+
+private void AiAssistView_InputToolbarItemClicked(object sender, InputToolbarItemClickedEventArgs e)
+{
+ // Call your actions based on the toolbar item clicked.
+}
+
+{% endhighlight %}
+{% endtabs %}
diff --git a/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_items.png b/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_items.png
new file mode 100644
index 000000000..3405f378a
Binary files /dev/null and b/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_items.png differ
diff --git a/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_left.png b/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_left.png
new file mode 100644
index 000000000..b042dfb4e
Binary files /dev/null and b/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_left.png differ
diff --git a/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_visibility.png b/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_visibility.png
new file mode 100644
index 000000000..3405f378a
Binary files /dev/null and b/wpf/AI-AssistView/aiassistview_images/wpf_aiassistview_input_toolbar_visibility.png differ