View Source ExOpenAI.Components.FineTuningCheckpointPermission (ex_openai.ex v2.0.0-beta2)

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

Fields

  • :created_at - required - integer()
    The Unix timestamp (in seconds) for when the permission was created.

  • :id - required - String.t()
    The permission identifier, which can be referenced in the API endpoints.

  • :object - required - :"checkpoint.permission"
    The object type, which is always "checkpoint.permission".
    Allowed values: "checkpoint.permission"

  • :project_id - required - String.t()
    The project identifier that the permission is for.

Summary

Types

@type t() :: %ExOpenAI.Components.FineTuningCheckpointPermission{
  created_at: integer(),
  id: String.t(),
  object: :"checkpoint.permission",
  project_id: String.t()
}