This commit is contained in:
PC1\PTyTb
2025-08-05 20:19:01 +03:00
commit cffb877b39
46 changed files with 27769 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
unit fAI;
interface
uses
System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
FMX.Types, FMX.Graphics, FMX.Controls, FMX.Forms, FMX.Dialogs, FMX.StdCtrls,
FMX.Edit, FMX.Controls.Presentation;
type
TfrAI = class(TFrame)
btnGetAIDef: TButton;
edtAIP2: TEdit;
edtAIP1: TEdit;
edtGPTPrefix: TEdit;
Label45: TLabel;
Label47: TLabel;
GroupBox1: TGroupBox;
rbGC: TRadioButton;
RBCustom: TRadioButton;
rbDS: TRadioButton;
rbCG: TRadioButton;
edtAIP3: TEdit;
Label1: TLabel;
Label2: TLabel;
cbOllama: TCheckBox;
GroupBox2: TGroupBox;
Label3: TLabel;
Label4: TLabel;
edtKandiKey: TEdit;
edtKandiSecret: TEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.fmx}
end.