OpenAI GPT-4, DALL-E, Whisper
Integrate OpenAI GPT-4, DALL-E, and Whisper APIs into Delphi applications. Chat completions, image generation, and speech-to-text.
Integrate OpenAI GPT-4, DALL-E, and Whisper APIs into Delphi applications. Chat completions, image generation, and speech-to-text.
uses
sgcAI_OpenAI;
var
OpenAI: TsgcAIOpenAI;
begin
OpenAI := TsgcAIOpenAI.Create(nil);
OpenAI.ApiKey := 'sk-...';
OpenAI.Model := 'gpt-4o';
OpenAI.OnResponse := HandleResponse;
// Send a chat completion request
OpenAI.ChatCompletion('Explain WebSockets in 3 sentences.');
end;
Deep-link to the component reference, grab the ready-to-run demo project, and download the trial.