-
Notifications
You must be signed in to change notification settings - Fork 2
/
Unit_AliveOllama.dfm
66 lines (66 loc) · 1.38 KB
/
Unit_AliveOllama.dfm
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
object Form_AliveOllama: TForm_AliveOllama
Left = 0
Top = 0
ActiveControl = Button_OK
BorderIcons = [biSystemMenu]
BorderStyle = bsSingle
Caption = ' Ollama Alive Checker'
ClientHeight = 203
ClientWidth = 224
Color = clWindow
Ctl3D = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clSilver
Font.Height = -12
Font.Name = 'Segoe UI'
Font.Style = []
FormStyle = fsStayOnTop
KeyPreview = True
Position = poDesigned
OnCloseQuery = FormCloseQuery
OnKeyPress = FormKeyPress
OnShow = FormShow
TextHeight = 15
object GroupBox1: TGroupBox
Left = 3
Top = 8
Width = 213
Height = 65
Caption = 'Ollama IP'
TabOrder = 0
object SpeedButton_Check: TSpeedButton
Left = 155
Top = 25
Width = 47
Height = 21
Caption = 'Check'
OnClick = SpeedButton_CheckClick
end
object Edit1: TEdit
Left = 12
Top = 25
Width = 136
Height = 21
ReadOnly = True
TabOrder = 0
Text = 'http://localhost:11434'
end
end
object Memo_Alive: TMemo
Left = 3
Top = 83
Width = 213
Height = 73
TabOrder = 1
StyleElements = [seClient, seBorder]
end
object Button_OK: TButton
Left = 158
Top = 168
Width = 58
Height = 25
Caption = 'OK'
ModalResult = 1
TabOrder = 2
end
end