curl --request POST \
--url https://api.example.com/v1/preview/models \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project": "<string>",
"name": "<string>",
"base_model": "<string>",
"entity": "my-team",
"return_existing": false
}
'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entity": "<string>",
"project": "<string>",
"name": "<string>",
"base_model": "<string>",
"run_id": "<string>"
}새 모델 생성
curl --request POST \
--url https://api.example.com/v1/preview/models \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project": "<string>",
"name": "<string>",
"base_model": "<string>",
"entity": "my-team",
"return_existing": false
}
'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entity": "<string>",
"project": "<string>",
"name": "<string>",
"base_model": "<string>",
"run_id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
새 모델을 생성하기 위한 스키마입니다.
모델을 저장할 W&B Project 이름
"my-awesome-project"
프로젝트 내에서 모델의 고유 이름
"my-awesome-model"
파인튜닝에 사용할 기본(base) 모델 식별자 또는 Hugging Face 모델 경로
"OpenPipe/Qwen3-14B-Instruct"
사용 중인 W&B API key를 소유한 개발자의 팀 이름 또는 사용자 이름입니다.
"my-team"
true이면, 동일한 이름의 모델이 이미 있는 경우 새로 생성하지 않고 해당 기존 모델을 반환합니다.