Last updated 4 months ago
Was this helpful?
GET /v1/public-files HTTP/1.1 Host: api.netmind.ai Accept: */*
Successful Response
[ { "id": "text", "file_name": "text", "purpose": "fine-tune", "created_at": 1, "token": 1, "length": 1, "bytes": 1, "description": "text" } ]
Your API token
GET /v1/fine-tuning/template HTTP/1.1 Host: api.netmind.ai Authorization: text Accept: */*
[ { "pricing": 1, "name": "text", "default_hyperparameters": {} } ]
GET /v1/fine-tuning/job HTTP/1.1 Host: api.netmind.ai Authorization: text Accept: */*
[ { "id": "text", "model": "text", "training_file_id": "text", "hyperparameters": {}, "status": "queued", "created_at": 1 } ]
GET /v1/fine-tuning/job/{job_id} HTTP/1.1 Host: api.netmind.ai Authorization: text Accept: */*
{ "id": "text", "model": "text", "training_file_id": "text", "hyperparameters": {}, "status": "queued", "created_at": 1 }
GET /v1/fine-tuning/job/{job_id}/event HTTP/1.1 Host: api.netmind.ai Authorization: text Accept: */*
[ { "message": "text", "level": "info", "created_at": 1 } ]
GET /v1/fine-tuning/job/{job_id}/checkpoint HTTP/1.1 Host: api.netmind.ai Authorization: text Accept: */*
[ { "id": "text", "checkpoint": "text", "step": 1, "metrics": { "loss": 1 }, "created_at": 1 } ]
POST /v1/fine-tuning/job/{job_id}/checkpoint/{checkpoint_id}/deploy HTTP/1.1 Host: api.netmind.ai Authorization: text Accept: */*
{ "service_id": "text" }
POST /v1/fine-tuning/job/{job_id}/cancel HTTP/1.1 Host: api.netmind.ai Authorization: text Accept: */*
No content
{}
POST /v1/fine-tuning/job HTTP/1.1 Host: api.netmind.ai Authorization: text Content-Type: application/json Accept: */* Content-Length: 63 { "model": "text", "training_file_id": "text", "hyperparameters": {} }
{ "id": "text" }