-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConsumindoIAsViaAPI.dpr
More file actions
26 lines (23 loc) · 1.2 KB
/
ConsumindoIAsViaAPI.dpr
File metadata and controls
26 lines (23 loc) · 1.2 KB
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
program ConsumindoIAsViaAPI;
uses
Vcl.Forms,
Main.View in 'Src\Main.View.pas' {MainView},
ChatGPT.RESTRequest4Delphi in 'Src\ChatGPT.RESTRequest4Delphi.pas' {ChatGPTRESTRequest4Delphi},
ViaCEP.ComponentesDB in 'Src\ViaCEP.ComponentesDB.pas' {ViaCEPComponentesDB},
ChatGPT.Nativo in 'Src\ChatGPT.Nativo.pas' {ChatGPTNativo},
Gemini.RESTRequest4Delphi in 'Src\Gemini.RESTRequest4Delphi.pas' {GeminiRESTRequest4Delphi},
Claude.RESTRequest4Delphi in 'Src\Claude.RESTRequest4Delphi.pas' {ClaudeRESTRequest4Delphi},
Mistral.RESTRequest4Delphi in 'Src\Mistral.RESTRequest4Delphi.pas' {MistralRESTRequest4Delphi};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TMainView, MainView);
Application.CreateForm(TChatGPTRESTRequest4Delphi, ChatGPTRESTRequest4Delphi);
Application.CreateForm(TViaCEPComponentesDB, ViaCEPComponentesDB);
Application.CreateForm(TChatGPTNativo, ChatGPTNativo);
Application.CreateForm(TGeminiRESTRequest4Delphi, GeminiRESTRequest4Delphi);
Application.CreateForm(TClaudeRESTRequest4Delphi, ClaudeRESTRequest4Delphi);
Application.CreateForm(TMistralRESTRequest4Delphi, MistralRESTRequest4Delphi);
Application.Run;
end.