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(fine_tuned_model_checkpoint, **kwargs) -> PermissionRetrieveResponse { data, has_more, object, 2 more }
GET/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
List checkpoint permissions
fine_tuning.checkpoints.permissions.list(fine_tuned_model_checkpoint, **kwargs) -> ConversationCursorPage<PermissionListResponse { id, created_at, object, project_id } >
GET/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
Create checkpoint permissions
fine_tuning.checkpoints.permissions.create(fine_tuned_model_checkpoint, **kwargs) -> Page<PermissionCreateResponse { id, created_at, object, project_id } >
POST/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions
Delete checkpoint permission
fine_tuning.checkpoints.permissions.delete(permission_id, **kwargs) -> PermissionDeleteResponse { id, deleted, object }
DELETE/fine_tuning/checkpoints/{fine_tuned_model_checkpoint}/permissions/{permission_id}
ModelsExpand Collapse
class PermissionRetrieveResponse { data, has_more, object, 2 more }
data: Array[Data{ id, created_at, object, project_id}]
id: String

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

created_at: Integer

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

object: :"checkpoint.permission"

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

project_id: String

The project identifier that the permission is for.

has_more: bool
object: :list
first_id: String
last_id: String
class PermissionListResponse { id, created_at, object, project_id }

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

id: String

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

created_at: Integer

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

object: :"checkpoint.permission"

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

project_id: String

The project identifier that the permission is for.

class PermissionCreateResponse { id, created_at, object, project_id }

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

id: String

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

created_at: Integer

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

object: :"checkpoint.permission"

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

project_id: String

The project identifier that the permission is for.

class PermissionDeleteResponse { id, deleted, object }
id: String

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: :"checkpoint.permission"

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