-
Notifications
You must be signed in to change notification settings - Fork 58
/
OpenAI.Completions.pas
350 lines (313 loc) · 13.3 KB
/
OpenAI.Completions.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
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
unit OpenAI.Completions;
interface
uses
System.SysUtils, System.Classes, OpenAI.API.Params, OpenAI.API, System.JSON;
type
TCompletionParams = class(TJSONParam)
/// <summary>
/// ID of the model to use. You can use the List models API to see all of your available models,
/// or see our Model overview for descriptions of them.
/// </summary>
function Model(const Value: string): TCompletionParams;
/// <summary>
/// The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays.
/// Note that <|endoftext|> is the document separator that the model sees during training, so if a prompt is not specified the model will generate as if from the beginning of a new document.
/// </summary>
function Prompt(const Value: string): TCompletionParams; overload;
/// <summary>
/// The prompt(s) to generate completions for, encoded as a string, array of strings, array of tokens, or array of token arrays.
/// Note that <|endoftext|> is the document separator that the model sees during training, so if a prompt is not specified the model will generate as if from the beginning of a new document.
/// </summary>
function Prompt(const Value: TArray<string>): TCompletionParams; overload;
/// <summary>
/// The suffix that comes after a completion of inserted text.
/// </summary>
function Suffix(const Value: string = ''): TCompletionParams; overload;
/// <summary>
/// The maximum number of tokens to generate in the completion.
/// The token count of your prompt plus max_tokens cannot exceed the model's context length.
/// Most models have a context length of 2048 tokens (except for the newest models, which support 4096).
/// </summary>
function MaxTokens(const Value: Integer = 16): TCompletionParams;
/// <summary>
/// What sampling temperature to use. Higher values means the model will take more risks.
/// Try 0.9 for more creative applications, and 0 (argmax sampling) for ones with a well-defined answer.
/// We generally recommend altering this or top_p but not both.
/// </summary>
function Temperature(const Value: Single = 1): TCompletionParams;
/// <summary>
/// An alternative to sampling with temperature, called nucleus sampling,
/// where the model considers the results of the tokens with top_p probability mass.
/// So 0.1 means only the tokens comprising the top 10% probability mass are considered.
/// We generally recommend altering this or temperature but not both.
/// </summary>
function TopP(const Value: Single = 1): TCompletionParams;
/// <summary>
/// How many completions to generate for each prompt.
/// Note: Because this parameter generates many completions, it can quickly consume your token quota.
/// Use carefully and ensure that you have reasonable settings for max_tokens and stop.
/// </summary>
function N(const Value: Integer = 1): TCompletionParams;
/// <summary>
/// Whether to stream back partial progress.
/// If set, tokens will be sent as data-only server-sent events as they become available,
/// with the stream terminated by a data: [DONE] message.
/// </summary>
function Stream(const Value: Boolean = True): TCompletionParams;
/// <summary>
/// Include the log probabilities on the logprobs most likely tokens, as well the chosen tokens.
/// For example, if logprobs is 5, the API will return a list of the 5 most likely tokens.
/// The API will always return the logprob of the sampled token, so there may be up to logprobs+1 elements in the response.
/// The maximum value for logprobs is 5. If you need more than this, please contact us through our Help center and
/// describe your use case.
/// </summary>
function LogProbs(const Value: Integer): TCompletionParams;
/// <summary>
/// Echo back the prompt in addition to the completion
/// </summary>
function Echo(const Value: Boolean = True): TCompletionParams;
/// <summary>
/// Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence.
/// </summary>
function Stop(const Value: string): TCompletionParams; overload;
/// <summary>
/// Up to 4 sequences where the API will stop generating further tokens. The returned text will not contain the stop sequence.
/// </summary>
function Stop(const Value: TArray<string>): TCompletionParams; overload;
/// <summary>
/// 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's likelihood to talk about new topics.
/// </summary>
function PresencePenalty(const Value: Single = 0): TCompletionParams;
/// <summary>
/// Number between -2.0 and 2.0. Positive values penalize new tokens based on their existing frequency in the text so far,
/// decreasing the model's likelihood to repeat the same line verbatim.
/// </summary>
function FrequencyPenalty(const Value: Single = 0): TCompletionParams;
/// <summary>
/// Generates best_of completions server-side and returns the "best" (the one with the highest log probability per token).
/// Results cannot be streamed.
/// When used with n, best_of controls the number of candidate completions and n specifies how many to return – best_of must be greater than n.
/// Note: Because this parameter generates many completions, it can quickly consume your token quota.
/// Use carefully and ensure that you have reasonable settings for max_tokens and stop
/// </summary>
function BestOf(const Value: Integer = 1): TCompletionParams;
/// <summary>
/// A unique identifier representing your end-user, which can help OpenAI to monitor and detect abuse
/// </summary>
function User(const Value: string): TCompletionParams;
/// <summary>
/// Modify the likelihood of specified tokens appearing in the completion.
///
/// Accepts a json object that maps tokens (specified by their token ID in the GPT tokenizer) to an associated bias
/// value from -100 to 100. You can use this tokenizer tool (which works for both GPT-2 and GPT-3) to convert text to
/// token IDs. Mathematically, the bias is added to the logits generated by the model prior to sampling.
/// The exact effect will vary per model, but values between -1 and 1 should decrease or increase likelihood of selection;
/// values like -100 or 100 should result in a ban or exclusive selection of the relevant token.
///
/// As an example, you can pass {"50256": -100} to prevent the <|endoftext|> token from being generated.
/// </summary>
function LogitBias(const Value: TJSONObject): TCompletionParams;
constructor Create; override;
end;
TCompletionUsage = class
private
FCompletion_tokens: Int64;
FPrompt_tokens: Int64;
FTotal_tokens: Int64;
public
property CompletionTokens: Int64 read FCompletion_tokens write FCompletion_tokens;
property PromptTokens: Int64 read FPrompt_tokens write FPrompt_tokens;
property TotalTokens: Int64 read FTotal_tokens write FTotal_tokens;
end;
TCompletionChoices = class
private
FFinish_reason: string;
FIndex: Int64;
FText: string;
public
property FinishReason: string read FFinish_reason write FFinish_reason;
//property Logprobs: string read FFinish_reason write FFinish_reason;
property Index: Int64 read FIndex write FIndex;
property Text: string read FText write FText;
end;
TCompletions = class
private
FChoices: TArray<TCompletionChoices>;
FCreated: Int64;
FId: string;
FModel: string;
FObject: string;
FUsage: TCompletionUsage;
public
property Choices: TArray<TCompletionChoices> read FChoices write FChoices;
property Created: Int64 read FCreated write FCreated;
property Id: string read FId write FId;
property Model: string read FModel write FModel;
property &Object: string read FObject write FObject;
property Usage: TCompletionUsage read FUsage write FUsage;
destructor Destroy; override;
end;
TCompletionEvent = reference to procedure(Completions: TCompletions; IsDone: Boolean; var Cancel: Boolean);
TCompletionsRoute = class(TOpenAIAPIRoute)
public
/// <summary>
/// Creates a completion for the provided prompt and parameters
/// </summary>
function Create(ParamProc: TProc<TCompletionParams>): TCompletions;
/// <summary>
/// Creates a completion for the provided prompt and parameters (for Stream is true parameter)
/// </summary>
function CreateStream(ParamProc: TProc<TCompletionParams>; Event: TCompletionEvent): Boolean;
end;
implementation
uses
REST.Json, System.Net.HttpClient;
{ TCompletionsRoute }
function TCompletionsRoute.Create(ParamProc: TProc<TCompletionParams>): TCompletions;
begin
Result := API.Post<TCompletions, TCompletionParams>('completions', ParamProc);
end;
function TCompletionsRoute.CreateStream(ParamProc: TProc<TCompletionParams>; Event: TCompletionEvent): Boolean;
var
Response: TStringStream;
RetPos: Integer;
begin
Response := TStringStream.Create('', TEncoding.UTF8);
try
RetPos := 0;
Result := API.Post<TCompletionParams>('completions', ParamProc, Response,
TReceiveDataCallback(procedure(const Sender: TObject; AContentLength: Int64; AReadCount: Int64; var AAbort: Boolean)
var
IsDone: Boolean;
Data: string;
Completions: TCompletions;
TextBuffer: string;
Line: string;
Ret: Integer;
begin
TextBuffer := Response.DataString;
repeat
Ret := TextBuffer.IndexOf(#10, RetPos);
if Ret >= 0 then
begin
Line := TextBuffer.Substring(RetPos, Ret - RetPos);
RetPos := Ret + 1;
if Line.IsEmpty or (Line.StartsWith(#10)) then
Continue;
Completions := nil;
Data := Line.Replace('data: ', '').Trim([' ', #13, #10]);
IsDone := Data = '[DONE]';
if not IsDone then
begin
try
Completions := TJson.JsonToObject<TCompletions>(Data);
except
Completions := nil;
end;
end;
try
Event(Completions, IsDone, AAbort);
finally
if Assigned(Completions) then
Completions.Free;
end;
end;
until Ret < 0;
end));
finally
Response.Free;
end;
end;
{ TCompletions }
destructor TCompletions.Destroy;
var
Item: TCompletionChoices;
begin
if Assigned(FUsage) then
FUsage.Free;
for Item in FChoices do
if Assigned(Item) then
Item.Free;
inherited;
end;
{ TCompletionParams }
function TCompletionParams.BestOf(const Value: Integer): TCompletionParams;
begin
Result := TCompletionParams(Add('best_of', Value));
end;
constructor TCompletionParams.Create;
begin
inherited;
Model('text-davinci-003');
Temperature(0);
end;
function TCompletionParams.Echo(const Value: Boolean): TCompletionParams;
begin
Result := TCompletionParams(Add('echo', Value));
end;
function TCompletionParams.FrequencyPenalty(const Value: Single): TCompletionParams;
begin
Result := TCompletionParams(Add('frequency_penalty', Value));
end;
function TCompletionParams.LogitBias(const Value: TJSONObject): TCompletionParams;
begin
Result := TCompletionParams(Add('logit_bias', Value));
end;
function TCompletionParams.LogProbs(const Value: Integer): TCompletionParams;
begin
Result := TCompletionParams(Add('logprobs', Value));
end;
function TCompletionParams.MaxTokens(const Value: Integer): TCompletionParams;
begin
Result := TCompletionParams(Add('max_tokens', Value));
end;
function TCompletionParams.Model(const Value: string): TCompletionParams;
begin
Result := TCompletionParams(Add('model', Value));
end;
function TCompletionParams.N(const Value: Integer): TCompletionParams;
begin
Result := TCompletionParams(Add('n', Value));
end;
function TCompletionParams.PresencePenalty(const Value: Single): TCompletionParams;
begin
Result := TCompletionParams(Add('presence_penalty', Value));
end;
function TCompletionParams.Prompt(const Value: string): TCompletionParams;
begin
Result := TCompletionParams(Add('prompt', Value));
end;
function TCompletionParams.Prompt(const Value: TArray<string>): TCompletionParams;
begin
Result := TCompletionParams(Add('prompt', Value));
end;
function TCompletionParams.Stop(const Value: TArray<string>): TCompletionParams;
begin
Result := TCompletionParams(Add('stop', Value));
end;
function TCompletionParams.Stop(const Value: string): TCompletionParams;
begin
Result := TCompletionParams(Add('stop', Value));
end;
function TCompletionParams.Stream(const Value: Boolean): TCompletionParams;
begin
Result := TCompletionParams(Add('stream', Value));
end;
function TCompletionParams.Suffix(const Value: string): TCompletionParams;
begin
Result := TCompletionParams(Add('suffix', Value));
end;
function TCompletionParams.Temperature(const Value: Single): TCompletionParams;
begin
Result := TCompletionParams(Add('temperature', Value));
end;
function TCompletionParams.TopP(const Value: Single): TCompletionParams;
begin
Result := TCompletionParams(Add('top_p', Value));
end;
function TCompletionParams.User(const Value: string): TCompletionParams;
begin
Result := TCompletionParams(Add('user', Value));
end;
end.