-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathDelphiChatGPT.dpr
37 lines (33 loc) · 1.6 KB
/
DelphiChatGPT.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
program DelphiChatGPT;
uses
Vcl.Forms,
UChatGPT in 'UChatGPT.pas' {Form1},
SpeechLib_TLB in '..\Libs\TextToSpeech\SpeechLib_TLB.pas',
uTTS.Amazon.Polly in '..\Libs\TextToSpeech\uTTS.Amazon.Polly.pas',
uTTS in '..\Libs\TextToSpeech\uTTS.pas',
uTTS.ElevenLabs in '..\Libs\TextToSpeech\uTTS.ElevenLabs.pas',
uElevenLabs.Voices.DTO in '..\Libs\TextToSpeech\uElevenLabs.Voices.DTO.pas',
uTTS.GoogleSpeech.DTO in '..\Libs\TextToSpeech\uTTS.GoogleSpeech.DTO.pas',
uTTS.GoogleSpeech in '..\Libs\TextToSpeech\uTTS.GoogleSpeech.pas',
uTTS.Microsoft.Cognitive in '..\Libs\TextToSpeech\uTTS.Microsoft.Cognitive.pas',
uTTS.Microsoft.Cognitive.Voices.DTO in '..\Libs\TextToSpeech\uTTS.Microsoft.Cognitive.Voices.DTO.pas',
uTTS.Windows.Engine in '..\Libs\TextToSpeech\uTTS.Windows.Engine.pas',
uLLM.OpenAI in '..\Libs\LLM\uLLM.OpenAI.pas',
REST.Authenticator.EnhancedOAuth in '..\Libs\REST.Authenticator.EnhancedOAuth.pas',
uEngineManager in '..\Libs\uEngineManager.pas',
uLLM.Azure in '..\Libs\LLM\uLLM.Azure.pas',
uLLM in '..\Libs\LLM\uLLM.pas',
uLLM.Anthropic in '..\Libs\LLM\uLLM.Anthropic.pas',
uLLM.Replicate in '..\Libs\LLM\uLLM.Replicate.pas',
uLLM.Functions in '..\Libs\LLM\uLLM.Functions.pas',
uAttributes in '..\Libs\LLM\uAttributes.pas',
ApiKeyStore in '..\Libs\ApiKeyStore\ApiKeyStore.pas',
ApiKeyStore.Windows in '..\Libs\ApiKeyStore\ApiKeyStore.Windows.pas',
frmApiKeyStore in '..\Libs\ApiKeyStore\frmApiKeyStore.pas' {frmApiKeyStores};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.