You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`length`if the maximum number of tokens specified in the request was reached, or `function_call` if the model called a function.
2818
+
enum: ["stop", "length", "function_call"]
2821
2819
usage:
2822
2820
$ref: "#/components/schemas/CompletionUsage"
2823
2821
required:
@@ -3870,7 +3868,7 @@ components:
3870
3868
description: The organization that owns the fine-tuning job.
3871
3869
status:
3872
3870
type: string
3873
-
description: The current status of the fine-tuning job, which can be either `created`, `pending`, `running`, `succeeded`, `failed`, or `cancelled`.
3871
+
description: The current status of the fine-tuning job, which can be either `validating_files`, `queued`, `running`, `succeeded`, `failed`, or `cancelled`.
3874
3872
hyperparameters:
3875
3873
type: object
3876
3874
description: The hyperparameters used for the fine-tuning job. See the [fine-tuning guide](/docs/guides/fine-tuning) for more details.
@@ -3884,10 +3882,11 @@ components:
3884
3882
maximum: 50
3885
3883
default: auto
3886
3884
description:
3887
-
The number of epochs to train the model for. An epoch refers to one
3888
-
full cycle through the training dataset.
3885
+
The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.
3889
3886
3890
-
"Auto"decides the optimal number of epochs based on the size of the dataset. If setting the number manually, we support any number between 1 and 50 epochs.
3887
+
"auto"decides the optimal number of epochs based on the size of the dataset. If setting the number manually, we support any number between 1 and 50 epochs.
3888
+
required:
3889
+
- n_epochs
3891
3890
training_file:
3892
3891
type: string
3893
3892
description: The file ID used for training. You can retrieve the training data with the [Files API](/docs/api-reference/files/retrieve-contents).
@@ -3920,11 +3919,15 @@ components:
3920
3919
type: string
3921
3920
description: The parameter that was invalid, usually `training_file` or `validation_file`. This field will be null if the failure was not parameter-specific.
0 commit comments