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
Copy file name to clipboardExpand all lines: openapi.yaml
+14-8Lines changed: 14 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -323,7 +323,7 @@ paths:
323
323
"finish_reason": null
324
324
}
325
325
],
326
-
"model": "text-davinci-003"
326
+
"model": "gpt-3.5-turbo-instruct"
327
327
}
328
328
/edits:
329
329
post:
@@ -1136,7 +1136,7 @@ paths:
1136
1136
"fine_tuned_model": null,
1137
1137
"organization_id": "org-123",
1138
1138
"result_files": [],
1139
-
"status": "pending",
1139
+
"status": "queued",
1140
1140
"validation_file": null,
1141
1141
"training_file": "file-abc123",
1142
1142
}
@@ -1183,7 +1183,7 @@ paths:
1183
1183
"fine_tuned_model": null,
1184
1184
"organization_id": "org-123",
1185
1185
"result_files": [],
1186
-
"status": "pending",
1186
+
"status": "queued",
1187
1187
"validation_file": null,
1188
1188
"training_file": "file-abc123",
1189
1189
"hyperparameters":{"n_epochs":2},
@@ -2270,6 +2270,7 @@ components:
2270
2270
[
2271
2271
"babbage-002",
2272
2272
"davinci-002",
2273
+
"gpt-3.5-turbo-instruct",
2273
2274
"text-davinci-003",
2274
2275
"text-davinci-002",
2275
2276
"text-davinci-001",
@@ -3870,7 +3871,7 @@ components:
3870
3871
description: The organization that owns the fine-tuning job.
3871
3872
status:
3872
3873
type: string
3873
-
description: The current status of the fine-tuning job, which can be either `created`, `pending`, `running`, `succeeded`, `failed`, or `cancelled`.
3874
+
description: The current status of the fine-tuning job, which can be either `validating_files`, `queued`, `running`, `succeeded`, `failed`, or `cancelled`.
3874
3875
hyperparameters:
3875
3876
type: object
3876
3877
description: The hyperparameters used for the fine-tuning job. See the [fine-tuning guide](/docs/guides/fine-tuning) for more details.
@@ -3884,10 +3885,11 @@ components:
3884
3885
maximum: 50
3885
3886
default: auto
3886
3887
description:
3887
-
The number of epochs to train the model for. An epoch refers to one
3888
-
full cycle through the training dataset.
3888
+
The number of epochs to train the model for. An epoch refers to one full cycle through the training dataset.
3889
3889
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.
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.
3891
+
required:
3892
+
- n_epochs
3891
3893
training_file:
3892
3894
type: string
3893
3895
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 +3922,15 @@ components:
3920
3922
type: string
3921
3923
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