POST
/
unstable
/
finetune
/
create
curl --request POST \
  --url https://api.openpipe.ai/api/v1/unstable/finetune/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "datasetId": "<string>",
  "slug": "<string>",
  "baseModel": "<string>",
  "overrides": {}
}'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
datasetId
string
required
slug
string
required
baseModel
string
required

The base model to fine-tune from. Supported models include: meta-llama/Meta-Llama-3.1-8B-Instruct, meta-llama/Meta-Llama-3.1-70B-Instruct

overrides
object

Response

200
application/json
Successful response
id
string
required