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
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -3803,14 +3803,15 @@ components:
3803
3803
description: The Unix timestamp (in seconds) for when the fine-tuning job was created.
3804
3804
finished_at:
3805
3805
type: integer
3806
-
description: The Unix timestamp (in seconds) for when the fine-tuning job was finished.
3806
+
nullable: true
3807
+
description: The Unix timestamp (in seconds) for when the fine-tuning job was finished. The value will be null if the fine-tuning job is still running.
3807
3808
model:
3808
3809
type: string
3809
3810
description: The base model that is being fine-tuned.
3810
3811
fine_tuned_model:
3811
3812
type: string
3812
3813
nullable: true
3813
-
description: The name of the fine-tuned model that is being created.
3814
+
description: The name of the fine-tuned model that is being created. The value will be null if the fine-tuning job is still running.
3814
3815
organization_id:
3815
3816
type: string
3816
3817
description: The organization that owns the fine-tuning job.
@@ -3845,10 +3846,12 @@ components:
3845
3846
type: array
3846
3847
description: The compiled results file ID(s) for the fine-tuning job. You can retrieve the results with the [Files API](/docs/api-reference/files/retrieve-contents).
3847
3848
items:
3848
-
$ref: "#/components/schemas/OpenAIFile"
3849
+
type: string
3850
+
example: file-abc123
3849
3851
trained_tokens:
3850
3852
type: integer
3851
-
description: The total number of billable tokens processed by this fine-tuning job.
3853
+
nullable: true
3854
+
description: The total number of billable tokens processed by this fine-tuning job. The value will be null if the fine-tuning job is still running.
0 commit comments