This simple example integrates AI into DevExpress VCL Controls using a 3rd-party AI library (GenAI) available via the GetIt Package Manager. VCL developers can switch between different AI providers and utilize commands that DevExpress AI Assistant adds to DevExpress Text Editors (such as TcxMemo or TdxRichEditControl).
Note
Until Embarcadero ships official AI-related SDK libraries, VCL developers can 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 12.0 or newer (Community Edition is not supported)
- The GenAI package installed from GetIt
- DevExpress VCL Components v25.1.3 or newer
To connect to an AI provider, uncomment the TdxGenAIChatClient.Create
call for the required AI provider (OpenAI, DeepSeek, or Google Gemini) and insert a valid API key instead of 'YOUR-API-KEY'
:
procedure TAIDemoMainForm.FormCreate(Sender: TObject);
var
Client: TdxAIChatClient;
begin
// OpenAI
// Client := TdxGenAIChatClient.Create('https://api.openai.com/v1', 'YOUR-API-KEY', 'gpt-4o-mini');
// DeepSeek
// Client := TdxGenAIChatClient.Create('https://api.deepseek.com/v1', 'YOUR-API-KEY', 'deepseek-chat');
// Google Gemini
// Client := TdxGenAIChatClient.Create('https://generativelanguage.googleapis.com/v1beta/openai', 'YOUR-API-KEY', 'gemini-2.0-flash');
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)