Skip to content

Demonstrates how to use 3rd party OpenAI libraries with DevExpress AI Assistant

License

Notifications You must be signed in to change notification settings

DevExpress-Examples/vcl-ai-memo-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DevExpress VCL - Integrate a Third-Party AI/LLM Provider Library

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).

DevExpress VCL AI Example

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).

Prerequisites

  • 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

Running the example

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.

Does this example address your development requirements/objectives?

(you will be redirected to DevExpress.com to submit your response)

About

Demonstrates how to use 3rd party OpenAI libraries with DevExpress AI Assistant

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages