Skip to main content
All docs
V25.2
  • SmartPasteBehavior.PromptAugmentation Property

    Gets or sets additional instructions that modify the prompt before processing.

    Namespace: DevExpress.AIIntegration.Wpf

    Assembly: DevExpress.AIIntegration.Wpf.v25.2.dll

    Declaration

    public string PromptAugmentation { get; set; }

    Property Value

    Type Description
    String

    Additional instructions.

    Remarks

    The following code snippet registers a SmartPasteBehavior and configures it to always return results in English:

    <dxmvvm:Interaction.Behaviors>
        <dxai:SmartPasteBehavior x:Name="smartPasteBehavior"
                        PromptAugmentation="Always translate the result into English."/>
    </dxmvvm:Interaction.Behaviors>
    

    See the following help topic for more information: Smart Paste — Prompt Augmentation.

    See Also