Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions clients/python/llmengine/data_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,16 @@ class GetFineTuneResponse(BaseModel):
The ID of the FineTune.
"""

fine_tuned_model: Optional[str] = Field(
default=None,
description="Name of the resulting fine-tuned model. This can be plugged into the "
"Completion API once the fine-tune is complete",
)
"""
The name of the resulting fine-tuned model. This can be plugged into the Completion API
once the fine-tune is complete.
"""

status: BatchJobStatus = Field(..., description="Status of the requested job.")
"""
The status of the FineTune job.
Expand Down