GET
/
jobs
/
{job_id}
Get Job Status
curl --request GET \
  --url https://training-service-433968519479.us-central1.run.app/jobs/{job_id}
{
  "job_name": "<string>",
  "status": "queued",
  "modality": "text",
  "wandb_url": "<string>",
  "processed_dataset_id": "<string>",
  "adapter_path": "<string>",
  "base_model_id": "<string>",
  "gguf_path": "<string>",
  "metrics": {
    "accuracy": 123,
    "perplexity": 123,
    "eval_loss": 123,
    "eval_runtime": 123
  },
  "error": "<string>"
}

Path Parameters

job_id
string
required

Response

Successful Response

job_name
string
required
status
enum<string>
required
Available options:
queued,
preparing,
training,
completed,
failed
modality
enum<string> | null
default:text
Available options:
text,
vision
wandb_url
string | null
processed_dataset_id
string | null
adapter_path
string | null
base_model_id
string | null
gguf_path
string | null
metrics
object | null

Evaluation metrics structure to hold results after training. This is used to store metrics like accuracy, loss, etc.

error
string | null