File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -1153,7 +1153,7 @@ export interface ChatCompletionCreateParamsBase {
1153
1153
frequency_penalty ?: number | null ;
1154
1154
1155
1155
/**
1156
- * Deprecated in favor of `tool_choice`.
1156
+ * @deprecated Deprecated in favor of `tool_choice`.
1157
1157
*
1158
1158
* Controls which (if any) function is called by the model.
1159
1159
*
@@ -1171,7 +1171,7 @@ export interface ChatCompletionCreateParamsBase {
1171
1171
function_call ?: 'none' | 'auto' | ChatCompletionFunctionCallOption ;
1172
1172
1173
1173
/**
1174
- * Deprecated in favor of `tools`.
1174
+ * @deprecated Deprecated in favor of `tools`.
1175
1175
*
1176
1176
* A list of functions the model may generate JSON inputs for.
1177
1177
*/
@@ -1204,8 +1204,8 @@ export interface ChatCompletionCreateParamsBase {
1204
1204
max_completion_tokens ?: number | null ;
1205
1205
1206
1206
/**
1207
- * The maximum number of [tokens](/tokenizer) that can be generated in the chat
1208
- * completion. This value can be used to control
1207
+ * @deprecated The maximum number of [tokens](/tokenizer) that can be generated in
1208
+ * the chat completion. This value can be used to control
1209
1209
* [costs](https://openai.com/api/pricing/) for text generated via API.
1210
1210
*
1211
1211
* This value is now deprecated in favor of `max_completion_tokens`, and is not
Original file line number Diff line number Diff line change @@ -459,8 +459,9 @@ export interface JobCreateParams {
459
459
training_file : string ;
460
460
461
461
/**
462
- * The hyperparameters used for the fine-tuning job. This value is now deprecated
463
- * in favor of `method`, and should be passed in under the `method` parameter.
462
+ * @deprecated The hyperparameters used for the fine-tuning job. This value is now
463
+ * deprecated in favor of `method`, and should be passed in under the `method`
464
+ * parameter.
464
465
*/
465
466
hyperparameters ?: JobCreateParams . Hyperparameters ;
466
467
You can’t perform that action at this time.
0 commit comments