AIChatControl.IncludeFunctionCallInfo Property
Gets or sets whether the AI Chat displays basic details about an invoked function. 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 |
|---|---|
| Boolean |
|
Remarks
Enable the IncludeFunctionCallInfo property to automatically append basic details about each invoked function into the AI chat response:
- The name or unique identifier of the invoked function (AI tool).
- Arguments passed to the function.
- The return value.
Example
The following example displays basic details about invoked functions in chat responses:
<dxaichat:AIChatControl x:Name="aiChatControl"
IncludeFunctionCallInfo="True" />
Refer to the following help topic for additional information: Tool Calling API
See Also