Skip to main content
POST
/
api
/
v1
/
public
/
snapshots
/
create-from-files
cURL
curl --request POST \
  --url http://studio.premai.io/api/v1/public/snapshots/create-from-files \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form project_id=3c90c3cc-0d44-4b50-8888-8dd25736052a \
  --form 'label=<string>' \
  --form training_file=@example-file \
  --form validation_file=@example-file
{
  "snapshot_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

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

Body

multipart/form-data
project_id
string<uuid>
required
label
string
required
Minimum length: 1
training_file
file

JSONL training file

validation_file
file

JSONL validation file

Response

Snapshot created successfully

snapshot_id
string<uuid>
required