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 @@ -1169,7 +1169,7 @@ export interface ChatCompletionCreateParamsBase {
1169
1169
frequency_penalty ?: number | null ;
1170
1170
1171
1171
/**
1172
- * Deprecated in favor of `tool_choice`.
1172
+ * @deprecated Deprecated in favor of `tool_choice`.
1173
1173
*
1174
1174
* Controls which (if any) function is called by the model.
1175
1175
*
@@ -1187,7 +1187,7 @@ export interface ChatCompletionCreateParamsBase {
1187
1187
function_call ?: 'none' | 'auto' | ChatCompletionFunctionCallOption ;
1188
1188
1189
1189
/**
1190
- * Deprecated in favor of `tools`.
1190
+ * @deprecated Deprecated in favor of `tools`.
1191
1191
*
1192
1192
* A list of functions the model may generate JSON inputs for.
1193
1193
*/
@@ -1220,8 +1220,8 @@ export interface ChatCompletionCreateParamsBase {
1220
1220
max_completion_tokens ?: number | null ;
1221
1221
1222
1222
/**
1223
- * The maximum number of [tokens](/tokenizer) that can be generated in the chat
1224
- * completion. This value can be used to control
1223
+ * @deprecated The maximum number of [tokens](/tokenizer) that can be generated in
1224
+ * the chat completion. This value can be used to control
1225
1225
* [costs](https://openai.com/api/pricing/) for text generated via API.
1226
1226
*
1227
1227
* This value is now deprecated in favor of `max_completion_tokens`, and is not
Original file line number Diff line number Diff line change @@ -466,8 +466,9 @@ export interface JobCreateParams {
466
466
training_file : string ;
467
467
468
468
/**
469
- * The hyperparameters used for the fine-tuning job. This value is now deprecated
470
- * in favor of `method`, and should be passed in under the `method` parameter.
469
+ * @deprecated The hyperparameters used for the fine-tuning job. This value is now
470
+ * deprecated in favor of `method`, and should be passed in under the `method`
471
+ * parameter.
471
472
*/
472
473
hyperparameters ?: JobCreateParams . Hyperparameters ;
473
474
You can’t perform that action at this time.
0 commit comments