43 lines
836 B
ObjectPascal
43 lines
836 B
ObjectPascal
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.
|