Skip to main content
All docs
V26.1
  • AIChatControl.SetFunctionCallInfoContentTemplate(RenderFragment<BlazorChatMessage>) Method

    Specifies the template used to display function call details appended to a message when the IncludeFunctionCallInfo property is enabled.

    Namespace: DevExpress.AIIntegration.WinForms.Chat

    Assembly: DevExpress.AIIntegration.WinForms.Chat.v26.1.dll

    NuGet Package: DevExpress.AIIntegration.WinForms.Chat

    Declaration

    public void SetFunctionCallInfoContentTemplate(
        RenderFragment<BlazorChatMessage> template
    )

    Parameters

    Name Type Description
    template RenderFragment<BlazorChatMessage>

    The function call info content template.

    Remarks

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

    Call the SetFunctionCallInfoContentTemplate method to customize the appearance of the function call details section. This template does not affect how the control renders main message content.

    Refer to the following help topic for additional information: Tool Calling API

    See Also