AIChatControl.IncludeFunctionCallInfo Property
Gets or sets whether the AI Chat displays basic details about an invoked function.
Namespace: DevExpress.AIIntegration.WinForms.Chat
Assembly: DevExpress.AIIntegration.WinForms.Chat.v26.1.dll
NuGet Package: DevExpress.AIIntegration.WinForms.Chat
Declaration
[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean IncludeFunctionCallInfo { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| DefaultBoolean | Default |
|
Available values:
| Name | Description | Return Value |
|---|---|---|
| True | The value is true. |
|
| False | The value is false. |
|
| Default | The value is specified by a global option or a higher-level object. |
|
Remarks
Enable the IncludeFunctionCallInfo property to automatically append the following details about each invoked function to the AI chat response:
- The name or unique identifier of the invoked function (AI tool).
- Arguments passed to the function.
- The value returned by the function.

Example
The following example displays basic details about invoked functions in chat responses:
Handle the ResponseReceived event to inspect or modify this metadata before the chat UI displays it.
Use the SetFunctionCallInfoContentTemplate method to customize how the control renders function call details.
Refer to the following help topic for additional information: Tool Calling API