Skip to content
Primary navigation

Checkpoints

CheckpointsPermissions

Manage fine-tuning jobs to tailor a model to your specific training data.

List checkpoint permissions
Deprecated
fine_tuning.checkpoints.permissions.retrieve(strfine_tuned_model_checkpoint, PermissionRetrieveParams**kwargs) -> PermissionRetrieveResponse
GET/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
List checkpoint permissions
fine_tuning.checkpoints.permissions.list(strfine_tuned_model_checkpoint, PermissionListParams**kwargs) -> SyncConversationCursorPage[PermissionListResponse]
GET/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
Create checkpoint permissions
fine_tuning.checkpoints.permissions.create(strfine_tuned_model_checkpoint, PermissionCreateParams**kwargs) -> SyncPage[PermissionCreateResponse]
POST/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
Delete checkpoint permission
fine_tuning.checkpoints.permissions.delete(strpermission_id, PermissionDeleteParams**kwargs) -> PermissionDeleteResponse
DELETE/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions/{permission_id}
ModelsExpand Collapse
class PermissionRetrieveResponse:
data: List[Data]
id: str

The permission identifier, which can be referenced in the API endpoints.

created_at: int

The Unix timestamp (in seconds) for when the permission was created.

object: Literal["checkpoint.permission"]

The object type, which is always “checkpoint.permission”.

project_id: str

The project identifier that the permission is for.

has_more: bool
object: Literal["list"]
first_id: Optional[str]
last_id: Optional[str]
class PermissionListResponse:

The checkpoint.permission object represents a permission for a fine-tuned model checkpoint.

id: str

The permission identifier, which can be referenced in the API endpoints.

created_at: int

The Unix timestamp (in seconds) for when the permission was created.

object: Literal["checkpoint.permission"]

The object type, which is always “checkpoint.permission”.

project_id: str

The project identifier that the permission is for.

class PermissionCreateResponse:

The checkpoint.permission object represents a permission for a fine-tuned model checkpoint.

id: str

The permission identifier, which can be referenced in the API endpoints.

created_at: int

The Unix timestamp (in seconds) for when the permission was created.

object: Literal["checkpoint.permission"]

The object type, which is always “checkpoint.permission”.

project_id: str

The project identifier that the permission is for.

class PermissionDeleteResponse:
id: str

The ID of the fine-tuned model checkpoint permission that was deleted.

deleted: bool

Whether the fine-tuned model checkpoint permission was successfully deleted.

object: Literal["checkpoint.permission"]

The object type, which is always “checkpoint.permission”.