AIChatControl.PromptSuggestions Property
Gets or sets the collection of prompt suggestions (hint bubbles). This is a dependency property.
Namespace: DevExpress.AIIntegration.Wpf.Chat
Assembly: DevExpress.AIIntegration.Wpf.Chat.v26.1.dll
NuGet Package: DevExpress.AIIntegration.Wpf.Chat
Declaration
Property Value
| Type | Description |
|---|---|
| ObservableCollection<IPromptSuggestion> | A collection of prompt suggestions (hint bubbles). |
Remarks
To help users get started or explore new possibilities, the AI Chat Control can display prompt suggestions.

Use the PromptSuggestions property to supply intelligent suggestions:
<dxaichat:AIChatControl>
<dxaichat:AIChatControl.PromptSuggestions>
<chat:DxAIChatPromptSuggestion
Title="Birthday Wish"
Text="A warm and cheerful birthday greeting message."
PromptMessage="Write a heartfelt birthday message for a close friend." />
<chat:DxAIChatPromptSuggestion
Title="Thank You Note"
Text="A polite thank you note to express gratitude."
PromptMessage="Compose a short thank you note to a colleague who helped with a project." />
</dxaichat:AIChatControl.PromptSuggestions>
</dxaichat:AIChatControl>
Refer to the following help topic for additional information: AI Chat Control
See Also