This example integrates an AI agent into DevExpress VCL Controls using the official Embarcadero SmartCore AI Components pack available via the GetIt Package Manager. VCL developers can switch between different AI providers and execute commands that DevExpress AI Assistant adds to DevExpress Text Editors (such as TcxMemo or TdxRichEditControl).
Note
VCL developers can use either SmartCore AI Components, plug in third-party libraries, or leverage own implementation to support different AI providers. For example, the DevExpress VCL Rich Text Editor demo ("%Public%\DevExpress VCL Demos\MegaDemos\Product Demos\ExpressRichEditControl\dxAI.ChatClient.Azure.pas" uses our Azure OpenAI service deployment via a simple TdxAIAzureChatClient implementation (extends our base TdxAIChatClient API).
- Microsoft Windows 10 or newer
- Embarcadero RAD Studio IDE 13.0 or newer (Community Edition is not supported)
- The SmartCore AI Components package installed from GetIt
- DevExpress VCL Components v25.1.3 or newer
To connect to an AI provider within this sample project, you must:
- Open the main form in Designer mode.
- Select the OpenAI or Google Gemini provider component.
- Expand the
Paramsnode in the Object Inspector and paste a valid API key into theAPIKeyinput box. - Uncomment the
TdxSmartCoreAIChatClient.Createcall for the target AI provider:
procedure TSmartCoreAIDemoMainForm.FormCreate(Sender: TObject);
var
Client: TdxAIChatClient;
begin
// OpenAI
// Client := TdxSmartCoreAIChatClient.Create(OpenAIDriver);
// Google Gemini
// Client := TdxSmartCoreAIChatClient.Create(GeminiDriver);
TdxAIChatClients.AddChatClient(Client);
end;
Note
DevExpress AI-powered Extensions follow the "bring your own key" principle. DevExpress does not offer a REST API and does not ship any built-in LLMs/SLMs. You need an active subscription for the required AI service to obtain the REST API endpoint, key, and model deployment name. These variables must be specified at application startup to register AI clients and enable DevExpress AI-powered Extensions in your application.
(you will be redirected to DevExpress.com to submit your response)
