DeploymentDetail
Deployment Object
id string
The unique identifier for the deployment
Example:
dp-12345
name string
The name of the deployment
Example:
deployment-1
description string
A description of the deployment
Example:
Deployment for my training job
base_model string
The base model used for deployment
Example:
Llama-3.2-1B-Instruct
status string
The current status of the deployment
Possible values: [Pending
, Deploying
, Deployed
, Failed
, Cancelled
, TimedOut
]
Example:
Deployed
training_id string
The training job ID used for deployment
Example:
tr-12345
checkpoint integer
The checkpoint number used for deployment
Example:
4
created_at integer
The timestamp when the deployment was created
Example:
1633036800
updated_at integer
The timestamp when the deployment was last updated
Example:
1633036800
DeploymentDetail
{
"id": "dp-12345",
"name": "deployment-1",
"description": "Deployment for my training job",
"base_model": "Llama-3.2-1B-Instruct",
"status": "Deployed",
"training_id": "tr-12345",
"checkpoint": 4,
"created_at": 1633036800,
"updated_at": 1633036800
}