-
Notifications
You must be signed in to change notification settings - Fork 4
/
uconsts.pas
31 lines (22 loc) · 967 Bytes
/
uconsts.pas
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
unit UConsts;
{$mode objfpc}{$H+}
interface
const
DefaultChatGPTURL = 'https://api.openai.com/v1/completions';
DefaultChatGPT3_5TurboURL = 'https://api.openai.com/v1/chat/completions';
DefaultModel = 'text-davinci-003';
DefaultMaxToken = 2048;
DefaultTemperature = 0;
DefaultIdentifier = 'cpt';
DefaultCodeFormatter = False;
DefaultRTL = False;
DefaultWriteSonicURL = 'https://api.writesonic.com/v2/business/content/chatsonic?engine=premium';
DefaultYouChatURL = 'https://betterapi.net/youdotcom/chat';
CRLF = #13#10;
ContextMenuAddTest = 'Create unit test for the following Delphi code';
ContextMenuFindBugs = 'Find possible bugs in the following Delphi code';
ContextMenuOptimize = 'Optimize the following Delphi code';
ContextMenuAddComments = 'Add descriptive comments for the following Delphi code';
ContextMenuCompleteCode = 'Try to complete the following Delphi code and return the completed code';
implementation
end.