Skip to content

Commit b0ab1c3

Browse files
authored
Merge pull request #83 from openai/dev/logan/sync-spec
Sync OpenAPI spec to fix Fting issues
2 parents ed8fdb5 + 0af3fad commit b0ab1c3

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

openapi.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3803,14 +3803,15 @@ components:
38033803
description: The Unix timestamp (in seconds) for when the fine-tuning job was created.
38043804
finished_at:
38053805
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.
38073808
model:
38083809
type: string
38093810
description: The base model that is being fine-tuned.
38103811
fine_tuned_model:
38113812
type: string
38123813
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.
38143815
organization_id:
38153816
type: string
38163817
description: The organization that owns the fine-tuning job.
@@ -3845,10 +3846,12 @@ components:
38453846
type: array
38463847
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).
38473848
items:
3848-
$ref: "#/components/schemas/OpenAIFile"
3849+
type: string
3850+
example: file-abc123
38493851
trained_tokens:
38503852
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.
38523855
required:
38533856
- id
38543857
- object

0 commit comments

Comments
 (0)