-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
ChatGPT.Settings.fmx
1671 lines (1671 loc) · 60 KB
/
ChatGPT.Settings.fmx
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
inherited FrameSettings: TFrameSettings
Size.Width = 906.000000000000000000
Size.Height = 804.000000000000000000
OnResize = FrameResize
OnResized = FrameResize
inherited RectangleBG: TRectangle
Size.Width = 906.000000000000000000
Size.Height = 804.000000000000000000
OnClick = RectangleBGClick
end
object LayoutClient: TLayout
Align = Center
Padding.Left = 10.000000000000000000
Padding.Top = 10.000000000000000000
Padding.Right = 10.000000000000000000
Padding.Bottom = 10.000000000000000000
Size.Width = 440.000000000000000000
Size.Height = 772.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object RectangleFrame: TRectangle
Align = Contents
Fill.Color = xFF202123
Locked = True
Size.Width = 440.000000000000000000
Size.Height = 772.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
XRadius = 6.000000000000000000
YRadius = 6.000000000000000000
end
object VertScrollBoxContent: TVertScrollBox
Align = Client
Padding.Right = 10.000000000000000000
Padding.Bottom = 10.000000000000000000
Margins.Right = -10.000000000000000000
Size.Width = 430.000000000000000000
Size.Height = 706.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
Viewport.Width = 414.000000000000000000
Viewport.Height = 706.000000000000000000
object EditToken: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 8
Position.Y = 300.000000000000000000
Margins.Top = 5.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
TextPrompt = 'sk-rBYbw....'
object ClearEditButton2: TClearEditButton
Touch.InteractiveGestures = [LongTap]
CanFocus = False
Cursor = crArrow
TextSettings.Trimming = None
Hint = 'Clear'
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_clearmini'
TabOrder = 0
Text = 'buttonstyle_clearmini'
object Path1: TPath
Align = Center
Data.Path = {
0E00000000000000000060413333B33F010000009A9949410000000001000000
0000E0403333B340010000003333B33F0000000001000000000000003333B33F
010000003333B3400000E04001000000000000009A994941010000003333B33F
00006041010000000000E04066660641010000009A9949410000604101000000
000060419A99494101000000666606410000E04001000000000060413333B33F
03000000000060413333B33F}
Fill.Color = xFFACACBE
Locked = True
HitTest = False
Margins.Left = 2.000000000000000000
Size.Width = 13.000000000000000000
Size.Height = 13.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
object Label1: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 10.000000000000000000
Position.Y = 10.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 25.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 20.000000000000000000
TextSettings.FontColor = xFFE9E9E9
TextSettings.HorzAlign = Center
TextSettings.WordWrap = False
Text = 'Settings'
TabOrder = 59
end
object Label3: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 1412.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Temperature (default: 1.0)'
TabOrder = 33
TabStop = False
end
object Label4: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Left = 5.000000000000000000
Margins.Top = 10.000000000000000000
Margins.Right = 5.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.X = 5.000000000000000000
Position.Y = 1464.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 15.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text =
'The higher, the more creativity will be in the answers (less acc' +
'urate)'
TabOrder = 36
TabStop = False
end
object Label5: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 273.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Token (required)'
TabOrder = 7
TabStop = False
end
object Label6: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 30.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 838.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 18.000000000000000000
TextSettings.FontColor = xFFE9E9E9
TextSettings.WordWrap = False
Text = 'Default chat settings (for new chats)'
TabOrder = 19
TabStop = False
end
object Layout3: TLayout
Align = Top
Position.Y = 1434.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 35
TabStop = False
object TrackBarTemp: TTrackBar
Align = Client
CanParentFocus = True
Frequency = 1.000000000000000000
Max = 20.000000000000000000
Orientation = Horizontal
Size.Width = 370.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Value = 10.000000000000000000
OnTracking = TrackBarTempTracking
end
object LabelTemp: TLabel
Align = Right
StyledSettings = [Style]
Margins.Left = 6.000000000000000000
Position.X = 376.000000000000000000
Size.Width = 28.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xBEFFFFFF
TextSettings.HorzAlign = Trailing
TextSettings.WordWrap = False
Text = '2.0'
TabOrder = 1
TabStop = False
end
end
object Layout4: TLayout
Align = Top
Margins.Top = 10.000000000000000000
Position.Y = 343.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 46.000000000000000000
Size.PlatformDefault = False
TabOrder = 10
TabStop = False
object ButtonGetToken: TButton
Align = Left
ImageIndex = 9
Size.Width = 289.000000000000000000
Size.Height = 46.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_menu'
TabOrder = 0
Text = 'Obtain API token from your Open AI'
TextSettings.HorzAlign = Leading
TextSettings.Trimming = None
ParentShowHint = False
ShowHint = True
OnClick = ButtonGetTokenClick
end
end
object Label8: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 875.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
Text = 'Model (default: gpt-3.5-turbo)'
TabOrder = 20
TabStop = False
end
object ComboEditModel: TComboEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'combo_style'
TabOrder = 21
DropDownKind = Custom
ItemHeight = 36.000000000000000000
Items.Strings = (
'gpt-3.5-turbo'
'gpt-3.5-turbo-0613'
'gpt-3.5-turbo-16k'
'gpt-4'
'gpt-4-turbo'
'gpt-4-0613'
'gpt-4-32k')
ItemIndex = 0
Text = 'gpt-3.5-turbo'
Position.Y = 897.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
OnMouseWheel = ComboEditModelMouseWheel
end
object Label9: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 1192.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
Text = 'Model max tokens (default: 4096)'
TabOrder = 25
TabStop = False
end
object EditMaxTokens: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 27
KeyboardType = DecimalNumberPad
FilterChar = '0123456789'
Position.Y = 1219.000000000000000000
Margins.Top = 5.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
TextPrompt = 'Example: 4096'
object ClearEditButton3: TClearEditButton
Touch.InteractiveGestures = [LongTap]
CanFocus = False
Cursor = crArrow
TextSettings.Trimming = None
Hint = 'Clear'
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_clearmini'
TabOrder = 0
Text = 'buttonstyle_clearmini'
object Path2: TPath
Align = Center
Data.Path = {
0E00000000000000000060413333B33F010000009A9949410000000001000000
0000E0403333B340010000003333B33F0000000001000000000000003333B33F
010000003333B3400000E04001000000000000009A994941010000003333B33F
00006041010000000000E04066660641010000009A9949410000604101000000
000060419A99494101000000666606410000E04001000000000060413333B33F
03000000000060413333B33F}
Fill.Color = xFFACACBE
Locked = True
HitTest = False
Margins.Left = 2.000000000000000000
Size.Width = 13.000000000000000000
Size.Height = 13.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
object Layout1: TLayout
Align = Top
Position.Y = 1526.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 38
TabStop = False
object TrackBarPP: TTrackBar
Align = Client
CanParentFocus = True
Frequency = 1.000000000000000000
Max = 20.000000000000000000
Min = -20.000000000000000000
Orientation = Horizontal
Size.Width = 370.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
OnTracking = TrackBarPPTracking
end
object LabelPP: TLabel
Align = Right
StyledSettings = [Style]
Margins.Left = 6.000000000000000000
Position.X = 376.000000000000000000
Size.Width = 28.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xBEFFFFFF
TextSettings.HorzAlign = Trailing
TextSettings.WordWrap = False
Text = '0.0'
TabOrder = 1
TabStop = False
end
end
object Label11: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Left = 5.000000000000000000
Margins.Top = 10.000000000000000000
Margins.Right = 5.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.X = 5.000000000000000000
Position.Y = 1556.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 44.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text =
'Number between -2.0 and 2.0. Positive values penalize new tokens' +
' based on whether they appear in the text so far, increasing the' +
' model'#39's likelihood to talk about new topics.'
TabOrder = 39
TabStop = False
end
object Label12: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 1504.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Presence penalty (default: 0.0)'
TabOrder = 37
TabStop = False
end
object Label13: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Left = 5.000000000000000000
Margins.Top = 10.000000000000000000
Margins.Right = 5.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.X = 5.000000000000000000
Position.Y = 1677.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 44.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text =
'Number between -2.0 and 2.0. Positive values penalize new tokens' +
' based on their existing frequency in the text so far, decreasin' +
'g the model'#39's likelihood to repeat the same line verbatim.'
TabOrder = 42
TabStop = False
end
object Layout5: TLayout
Align = Top
Position.Y = 1647.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 41
TabStop = False
object TrackBarFP: TTrackBar
Align = Client
CanParentFocus = True
Frequency = 1.000000000000000000
Max = 20.000000000000000000
Min = -20.000000000000000000
Orientation = Horizontal
Size.Width = 370.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
OnTracking = TrackBarFPTracking
end
object LabelFP: TLabel
Align = Right
StyledSettings = [Style]
Margins.Left = 6.000000000000000000
Position.X = 376.000000000000000000
Size.Width = 28.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xBEFFFFFF
TextSettings.HorzAlign = Trailing
TextSettings.WordWrap = False
Text = '0.0'
TabOrder = 1
TabStop = False
end
end
object Label15: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 1625.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Frequency penalty (default: 0.0)'
TabOrder = 40
TabStop = False
end
object Label16: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 1302.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
Text = 'Query max tokens (default: 1024)'
TabOrder = 30
TabStop = False
end
object EditQueryMaxToken: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 31
KeyboardType = DecimalNumberPad
FilterChar = '0123456789'
Position.Y = 1329.000000000000000000
Margins.Top = 5.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
TextPrompt = 'Example: 1024'
object ClearEditButton4: TClearEditButton
Touch.InteractiveGestures = [LongTap]
CanFocus = False
Cursor = crArrow
TextSettings.Trimming = None
Hint = 'Clear'
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_clearmini'
TabOrder = 0
Text = 'buttonstyle_clearmini'
object Path3: TPath
Align = Center
Data.Path = {
0E00000000000000000060413333B33F010000009A9949410000000001000000
0000E0403333B340010000003333B33F0000000001000000000000003333B33F
010000003333B3400000E04001000000000000009A994941010000003333B33F
00006041010000000000E04066660641010000009A9949410000604101000000
000060419A99494101000000666606410000E04001000000000060413333B33F
03000000000060413333B33F}
Fill.Color = xFFACACBE
Locked = True
HitTest = False
Margins.Left = 2.000000000000000000
Size.Width = 13.000000000000000000
Size.Height = 13.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
object Label17: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Left = 5.000000000000000000
Margins.Top = 10.000000000000000000
Margins.Right = 5.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.X = 5.000000000000000000
Position.Y = 1262.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 15.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text = 'Limit of the selected model'
TabOrder = 29
TabStop = False
end
object Label18: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Left = 5.000000000000000000
Margins.Top = 10.000000000000000000
Margins.Right = 5.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.X = 5.000000000000000000
Position.Y = 1372.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 15.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text = 'Max number of tokens per request'
TabOrder = 32
TabStop = False
end
object Label19: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Left = 5.000000000000000000
Margins.Top = 10.000000000000000000
Margins.Right = 5.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.X = 5.000000000000000000
Position.Y = 940.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text =
'GPT-4 is currently in a limited beta and only accessible to thos' +
'e who have been granted access'
TabOrder = 23
TabStop = False
end
object LabelAppearance: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 30.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 75.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 18.000000000000000000
TextSettings.FontColor = xFFE9E9E9
TextSettings.WordWrap = False
Text = 'Appearance'
TabOrder = 0
TabStop = False
end
object Label14: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 456.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Organization'
TabOrder = 11
TabStop = False
end
object EditOrg: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 12
Position.Y = 483.000000000000000000
Margins.Top = 5.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
object ClearEditButton5: TClearEditButton
Touch.InteractiveGestures = [LongTap]
CanFocus = False
Cursor = crArrow
TextSettings.Trimming = None
Hint = 'Clear'
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_clearmini'
TabOrder = 0
Text = 'buttonstyle_clearmini'
object Path5: TPath
Align = Center
Data.Path = {
0E00000000000000000060413333B33F010000009A9949410000000001000000
0000E0403333B340010000003333B33F0000000001000000000000003333B33F
010000003333B3400000E04001000000000000009A994941010000003333B33F
00006041010000000000E04066660641010000009A9949410000604101000000
000060419A99494101000000666606410000E04001000000000060413333B33F
03000000000060413333B33F}
Fill.Color = xFFACACBE
Locked = True
HitTest = False
Margins.Left = 2.000000000000000000
Size.Width = 13.000000000000000000
Size.Height = 13.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
object Label20: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Left = 5.000000000000000000
Margins.Top = 10.000000000000000000
Margins.Right = 5.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.X = 5.000000000000000000
Position.Y = 526.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 44.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text =
'For users who belong to multiple organizations, you can specify ' +
'which organization is used for an API request. Usage from these ' +
'API requests will count against the specified organization'#39's sub' +
'scription quota.'
TabOrder = 15
TabStop = False
end
object EditBaseUrl: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 18
KeyboardType = URL
Position.Y = 612.000000000000000000
Margins.Top = 5.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
TextPrompt = 'https://api.openai.com/v1'
object ClearEditButton6: TClearEditButton
Touch.InteractiveGestures = [LongTap]
CanFocus = False
Cursor = crArrow
TextSettings.Trimming = None
Hint = 'Clear'
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_clearmini'
TabOrder = 0
Text = 'buttonstyle_clearmini'
object Path6: TPath
Align = Center
Data.Path = {
0E00000000000000000060413333B33F010000009A9949410000000001000000
0000E0403333B340010000003333B33F0000000001000000000000003333B33F
010000003333B3400000E04001000000000000009A994941010000003333B33F
00006041010000000000E04066660641010000009A9949410000604101000000
000060419A99494101000000666606410000E04001000000000060413333B33F
03000000000060413333B33F}
Fill.Color = xFFACACBE
Locked = True
HitTest = False
Margins.Left = 2.000000000000000000
Size.Width = 13.000000000000000000
Size.Height = 13.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
object Label21: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 585.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Base url'
TabOrder = 17
TabStop = False
end
object Label22: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 30.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 236.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 18.000000000000000000
TextSettings.FontColor = xFFE9E9E9
TextSettings.WordWrap = False
Text = 'General settings'
TabOrder = 6
TabStop = False
end
object LayoutOnTop: TLayout
Align = Top
Padding.Top = 4.000000000000000000
Padding.Bottom = 4.000000000000000000
Position.Y = 102.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 30.000000000000000000
Size.PlatformDefault = False
TabOrder = 4
TabStop = False
object SwitchOnTop: TSwitch
Align = Right
IsChecked = False
Margins.Top = 2.000000000000000000
Margins.Bottom = 2.000000000000000000
Position.X = 359.000000000000000000
Position.Y = 6.000000000000000000
Size.Width = 45.000000000000000000
Size.Height = 18.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
end
object Label23: TLabel
Align = Client
AutoSize = True
StyledSettings = [Style]
Size.Width = 359.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Show window on top'
TabOrder = 0
TabStop = False
end
end
object Label10: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 30.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 2087.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 18.000000000000000000
TextSettings.FontColor = xFFE9E9E9
TextSettings.WordWrap = False
Text = 'Proxy (default: System proxy)'
TabOrder = 49
TabStop = False
end
object Label24: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 2124.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Server (required)'
TabOrder = 51
TabStop = False
end
object EditProxyServer: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 52
Position.Y = 2151.000000000000000000
Margins.Top = 5.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
TextPrompt = 'http or https://...'
object ClearEditButton7: TClearEditButton
Touch.InteractiveGestures = [LongTap]
CanFocus = False
Cursor = crArrow
TextSettings.Trimming = None
Hint = 'Clear'
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_clearmini'
TabOrder = 0
Text = 'buttonstyle_clearmini'
object Path7: TPath
Align = Center
Data.Path = {
0E00000000000000000060413333B33F010000009A9949410000000001000000
0000E0403333B340010000003333B33F0000000001000000000000003333B33F
010000003333B3400000E04001000000000000009A994941010000003333B33F
00006041010000000000E04066660641010000009A9949410000604101000000
000060419A99494101000000666606410000E04001000000000060413333B33F
03000000000060413333B33F}
Fill.Color = xFFACACBE
Locked = True
HitTest = False
Margins.Left = 2.000000000000000000
Size.Width = 13.000000000000000000
Size.Height = 13.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
object Label25: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 2194.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xB4FFFFFF
TextSettings.WordWrap = False
Text = 'Port'
TabOrder = 53
TabStop = False
end
object EditProxyPort: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 54
KeyboardType = DecimalNumberPad
FilterChar = '0123456789'
Position.Y = 2221.000000000000000000
Margins.Top = 5.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
object ClearEditButton8: TClearEditButton
Touch.InteractiveGestures = [LongTap]
CanFocus = False
Cursor = crArrow
TextSettings.Trimming = None
Hint = 'Clear'
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_clearmini'
TabOrder = 0
Text = 'buttonstyle_clearmini'
object Path8: TPath
Align = Center
Data.Path = {
0E00000000000000000060413333B33F010000009A9949410000000001000000
0000E0403333B340010000003333B33F0000000001000000000000003333B33F
010000003333B3400000E04001000000000000009A994941010000003333B33F
00006041010000000000E04066660641010000009A9949410000604101000000
000060419A99494101000000666606410000E04001000000000060413333B33F
03000000000060413333B33F}
Fill.Color = xFFACACBE
Locked = True
HitTest = False
Margins.Left = 2.000000000000000000
Size.Width = 13.000000000000000000
Size.Height = 13.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
object EditProxyUsername: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 56
Position.Y = 2291.000000000000000000
Margins.Top = 5.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False