-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathChatGPT.ChatSettings.fmx
763 lines (763 loc) · 26.9 KB
/
ChatGPT.ChatSettings.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
inherited FrameChatSettings: TFrameChatSettings
Size.Width = 729.000000000000000000
Size.Height = 719.000000000000000000
OnResize = FrameResize
OnResized = FrameResize
inherited RectangleBG: TRectangle
Size.Width = 729.000000000000000000
Size.Height = 719.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 = 644.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object RectangleFrame: TRectangle
Align = Contents
Fill.Color = xFF202123
Locked = True
Size.Width = 440.000000000000000000
Size.Height = 644.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
XRadius = 6.000000000000000000
YRadius = 6.000000000000000000
end
object LayoutActs: TLayout
Align = Bottom
Position.X = 10.000000000000000000
Position.Y = 588.000000000000000000
Size.Width = 420.000000000000000000
Size.Height = 46.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
TabStop = False
object ButtonCancel: TButton
Align = Right
Cancel = True
Position.X = 340.000000000000000000
Size.Width = 80.000000000000000000
Size.Height = 46.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_menu'
TabOrder = 0
Text = 'CANCEL'
TextSettings.Trimming = None
ParentShowHint = False
ShowHint = True
OnClick = ButtonCancelClick
end
object ButtonOk: TButton
Align = Right
Position.X = 260.000000000000000000
Size.Width = 80.000000000000000000
Size.Height = 46.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyle_menu'
TabOrder = 1
Text = 'OK'
TextSettings.Trimming = None
OnClick = ButtonOkClick
end
end
object VertScrollBox: TVertScrollBox
Align = Client
Padding.Right = 10.000000000000000000
Padding.Bottom = 10.000000000000000000
Margins.Right = -10.000000000000000000
Size.Width = 430.000000000000000000
Size.Height = 578.000000000000000000
Size.PlatformDefault = False
TabOrder = 21
Viewport.Width = 414.000000000000000000
Viewport.Height = 578.000000000000000000
object ComboEditModel: TComboEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'combo_style'
TabOrder = 3
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 = 134.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 33.000000000000000000
Size.PlatformDefault = False
OnMouseWheel = ComboEditModelMouseWheel
end
object EditMaxTokens: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 4
KeyboardType = DecimalNumberPad
FilterChar = '0123456789'
Position.Y = 382.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 EditQueryMaxToken: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = Top
StyleLookup = 'editstyle_clear'
TabOrder = 5
KeyboardType = DecimalNumberPad
FilterChar = '0123456789'
Position.Y = 492.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 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 = 'Chat Settings'
TabOrder = 21
TabStop = False
end
object Label16: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 465.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 = 24
TabStop = False
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 = 425.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 = 13
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 = 535.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 = 10
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 = 177.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 = 12
TabStop = False
end
object Label3: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 575.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 = 14
TabStop = False
end
object Label4: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 627.000000000000000000
Size.Width = 404.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 = 11
TabStop = False
end
object Label8: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 10.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 112.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 = 26
TabStop = False
end
object Label9: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 355.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 = 28
TabStop = False
end
object Layout3: TLayout
Align = Top
Position.Y = 597.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 6
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 = 71
TabStop = False
end
end
object Layout1: TLayout
Align = Top
Position.Y = 689.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 7
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 = 71
TabStop = False
end
end
object Label12: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 667.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 = 23
TabStop = False
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 = 719.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 = 19
TabStop = False
end
object Label15: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 788.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 = 20
TabStop = False
end
object Layout5: TLayout
Align = Top
Position.Y = 810.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 8
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 = 71
TabStop = False
end
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 = 840.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 = 16
TabStop = False
end
object Label28: 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 = 961.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 73.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text =
'An alternative to sampling with temperature, called nucleus samp' +
'ling, where the model considers the results of the tokens with t' +
'op_p probability mass. So 0.1 means only the tokens comprising t' +
'he top 10% probability mass are considered.'#13#10'We generally recomm' +
'end altering this or temperature but not both.'
TabOrder = 15
TabStop = False
end
object Layout6: TLayout
Align = Top
Position.Y = 931.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 9
TabStop = False
object TrackBarTopP: TTrackBar
Align = Client
CanParentFocus = True
Frequency = 1.000000000000000000
Max = 10.000000000000000000
Orientation = Horizontal
Size.Width = 370.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Value = 10.000000000000000000
OnTracking = TrackBarTopPTracking
end
object LabelTopP: 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 = 71
TabStop = False
end
end
object Label30: TLabel
Align = Top
AutoSize = True
StyledSettings = [Style]
Margins.Top = 20.000000000000000000
Margins.Bottom = 5.000000000000000000
Position.Y = 909.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 = 'Top P (default: 1.0)'
TabOrder = 18
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 = 'General settings'
TabOrder = 0
TabStop = False
end
object Layout7: TLayout
Align = Top
Padding.Top = 4.000000000000000000
Padding.Bottom = 4.000000000000000000
Margins.Top = 20.000000000000000000
Position.Y = 231.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 30.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
TabStop = False
object SwitchUseFunctions: 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 Label34: 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 = 'Use functions'
TabOrder = 0
TabStop = False
end
end
object Label35: 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 = 301.000000000000000000
Size.Width = 394.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.FontColor = x78FFFFFF
Text =
'In an API call, you can describe functions to gpt-3.5-turbo-0613' +
', gpt-3.5-turbo-16k and gpt-4-0613'
TabOrder = 17
TabStop = False
end
object Layout9: TLayout
Align = Top
Padding.Top = 4.000000000000000000
Padding.Bottom = 4.000000000000000000
Position.Y = 261.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 30.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
TabStop = False
object SwitchAutoExecFuncs: 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 Label37: 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 = 'Auto execution of functions'
TabOrder = 0
TabStop = False
end
end
object Layout2: TLayout
Align = Top
Position.Y = 1039.000000000000000000
Size.Width = 404.000000000000000000
Size.Height = 20.000000000000000000
Size.PlatformDefault = False
TabOrder = 30
end
end
end
end