Skip to main content
All docs
V26.1
  • AIChatControl.FunctionCallInfoContentTemplate Property

    Gets or sets a template used to display function call details appended to a message when the IncludeFunctionCallInfo property is enabled. 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

    public RenderFragment<BlazorChatMessage> FunctionCallInfoContentTemplate { get; set; }

    Property Value

    Type Description
    RenderFragment<BlazorChatMessage>

    The content of a message bubble.

    Remarks

    Enable the IncludeFunctionCallInfo property to automatically append basic details about each invoked function to the AI chat response.

    Use the FunctionCallInfoContentTemplate property to customize the appearance of the function call details section. This template does not affect how main message content is rendered.

    Refer to the following help topic for additional information: AI Chat Control

    See Also