메인 콘텐츠로 건너뛰기
DELETE
/
v1
/
preview
/
models
/
{model_id}
/
checkpoints
모델 체크포인트 삭제
curl --request DELETE \
  --url https://api.example.com/v1/preview/models/{model_id}/checkpoints \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "steps": [
    123
  ]
}
'
{
  "deleted_count": 123,
  "not_found_steps": [
    123
  ]
}

인증

Authorization
string
header
필수

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

경로 매개변수

model_id
string
필수

본문

application/json

체크포인트를 삭제하기 위한 스키마입니다.

steps
integer[]
필수

응답

성공 응답

체크포인트 삭제 응답을 위한 스키마입니다.

deleted_count
integer
필수
not_found_steps
integer[]
필수