-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
completions.create.tsp
223 lines (194 loc) · 8.31 KB
/
completions.create.tsp
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
import "@typespec/rest";
import "@typespec/http";
import "./completions.common.tsp";
using TypeSpec.Rest;
using TypeSpec.Http;
@doc("""
The configuration information for a completions request.
Completions support a wide variety of tasks and generate text that continues from or "completes"
provided prompt data.
""")
model CompletionsOptions {
@doc("The prompts to generate completions from.")
@projectedName("json", "prompt")
@projectedName("csharp", "Prompts")
prompt: string[];
@doc("The maximum number of tokens to generate.")
@projectedName("json", "max_tokens")
maxTokens?: int32;
@doc("""
The sampling temperature to use that controls the apparent creativity of generated completions.
Higher values will make output more random while lower values will make results more focused
and deterministic.
It is not recommended to modify temperature and top_p for the same completions request as the
interaction of these two settings is difficult to predict.
""")
@projectedName("json", "temperature")
temperature?: float32;
@doc("""
An alternative to sampling with temperature called nucleus sampling. This value causes the
model to consider the results of tokens with the provided probability mass. As an example, a
value of 0.15 will cause only the tokens comprising the top 15% of probability mass to be
considered.
It is not recommended to modify temperature and top_p for the same completions request as the
interaction of these two settings is difficult to predict.
""")
@projectedName("json", "top_p")
@projectedName("csharp", "NucleusSamplingFactor")
topP?: float32;
@doc("""
A map between GPT token IDs and bias scores that influences the probability of specific tokens
appearing in a completions response. Token IDs are computed via external tokenizer tools, while
bias scores reside in the range of -100 to 100 with minimum and maximum values corresponding to
a full ban or exclusive selection of a token, respectively. The exact behavior of a given bias
score varies by model.
""")
@projectedName("json", "logit_bias")
@projectedName("csharp", "InternalStringKeyedTokenSelectionBiases")
logitBias?: Record<int32>;
@doc("""
An identifier for the caller or end user of the operation. This may be used for tracking
or rate-limiting purposes.
""")
@projectedName("json", "user")
user?: string;
@doc("""
The number of completions choices that should be generated per provided prompt as part of an
overall completions response.
Because this setting can generate many completions, it may quickly consume your token quota.
Use carefully and ensure reasonable settings for max_tokens and stop.
""")
@projectedName("json", "n")
@projectedName("csharp", "ChoicesPerPrompt")
n?: int32;
@doc("""
A value that controls the emission of log probabilities for the provided number of most likely
tokens within a completions response.
""")
@projectedName("json", "logprobs")
@projectedName("csharp", "LogProbabilityCount")
logprobs?: int32;
@doc("""
A value specifying whether completions responses should include input prompts as prefixes to
their generated output.
""")
@projectedName("json", "echo")
echo?: boolean;
@doc("""
A collection of textual sequences that will end completions generation.
""")
@projectedName("json", "stop")
@projectedName("csharp", "StopSequences")
stop?: string[];
@doc("""
A value that influences the probability of generated tokens appearing based on their existing
presence in generated text.
Positive values will make tokens less likely to appear when they already exist and increase the
model's likelihood to output new topics.
""")
@projectedName("json", "presence_penalty")
presencePenalty?: float32;
@doc("""
A value that influences the probability of generated tokens appearing based on their cumulative
frequency in generated text.
Positive values will make tokens less likely to appear as their frequency increases and
decrease the likelihood of the model repeating the same statements verbatim.
""")
@projectedName("json", "frequency_penalty")
frequencyPenalty?: float32;
@doc("""
A value that controls how many completions will be internally generated prior to response
formulation.
When used together with n, best_of controls the number of candidate completions and must be
greater than n.
Because this setting can generate many completions, it may quickly consume your token quota.
Use carefully and ensure reasonable settings for max_tokens and stop.
""")
@projectedName("json", "best_of")
@projectedName("csharp", "GenerationSampleCount")
bestOf?: int32;
@doc("""
A value indicating whether chat completions should be streamed for this request.
""")
@projectedName("json", "stream")
@projectedName("csharp", "InternalShouldStreamResponse")
stream?: boolean;
@doc("""
The model name to provide as part of this completions request.
Not applicable to Azure OpenAI, where deployment information should be included in the Azure
resource URI that's connected to.
""")
@projectedName("json", "model")
@projectedName("csharp", "InternalNonAzureModelName")
`model`?: string;
}
@doc("""
Representation of the response data from a completions request.
Completions support a wide variety of tasks and generate text that continues from or "completes"
provided prompt data.
""")
model Completions {
@doc("A unique identifier associated with this completions response.")
@projectedName("json", "id")
id: string;
@doc("""
The first timestamp associated with generation activity for this completions response,
represented as seconds since the beginning of the Unix epoch of 00:00 on 1 Jan 1970.
""")
@projectedName("json", "created")
@projectedName("csharp", "InternalCreatedSecondsAfterUnixEpoch")
created: int32;
@doc("""
The collection of completions choices associated with this completions response.
Generally, `n` choices are generated per provided prompt with a default value of 1.
Token limits and other settings may limit the number of choices generated.
""")
@projectedName("json", "choices")
choices: Choice[];
@doc("""
Usage information for tokens processed and generated as part of this completions operation.
""")
@projectedName("json", "usage")
usage: CompletionsUsage;
}
@doc("""
The representation of a single prompt completion as part of an overall completions request.
Generally, `n` choices are generated per provided prompt with a default value of 1.
Token limits and other settings may limit the number of choices generated.
""")
model Choice {
@doc("The generated text for a given completions prompt.")
@projectedName("json", "text")
text: string;
@doc("The ordered index associated with this completions choice.")
@projectedName("json", "index")
index: int32;
@doc("The log probabilities model for tokens associated with this completions choice.")
@projectedName("json", "logprobs")
@projectedName("csharp", "LogProbabilityModel")
logprobs: CompletionsLogProbabilityModel | null;
@doc("Reason for finishing")
@projectedName("json", "finish_reason")
finishReason: CompletionsFinishReason | null;
}
alias NullableFloat = float32 | null;
@doc("""
Representation of a log probabilities model for a completions generation.
""")
model CompletionsLogProbabilityModel {
@doc("The textual forms of tokens evaluated in this probability model.")
@projectedName("json", "tokens")
tokens: string[];
@doc("A collection of log probability values for the tokens in this completions data.")
@projectedName("json", "token_logprobs")
@projectedName("csharp", "TokenLogProbabilities")
tokenLogprobs: NullableFloat[];
@doc("A mapping of tokens to maximum log probability values in this completions data.")
@projectedName("json", "top_logprobs")
@projectedName("csharp", "TopLogProbabilities")
topLogprobs: Record<NullableFloat>[];
@doc("The text offsets associated with tokens in this completions data.")
@projectedName("json", "text_offset")
@projectedName("csharp", "TextOffsets")
textOffset: int32[];
}