DeploymentDetail
Deployment Object
id string
The unique identifier for the deployment
Example:
dp-12345name string
The name of the deployment
Example:
deployment-1task_type string
Task type of the deployment
Example:
classificationmetadata object
Metadata of the deployment (varies by task_type)
- ClassificationMetadata
labels string[]
Example:
["class1","class2"]description string
A description of the deployment
Example:
Deployment for my training jobbase_model string
The base model used for deployment
Example:
Llama-3.2-1B-Instructstatus string
The current status of the deployment
Possible values: [Pending, Deploying, Deployed, Failed, Cancelled, Terminated, Deactivated, Reactivating, TimedOut]
Example:
Deployedtraining_id string
The training job ID used for deployment
Example:
tr-12345checkpoint integer
The checkpoint number used for deployment
Example:
4created_at integer
The timestamp when the deployment was created
Example:
1633036800updated_at integer
The timestamp when the deployment was last updated
Example:
1633036800DeploymentDetail
{
"id": "dp-12345",
"name": "deployment-1",
"task_type": "classification",
"metadata": {
"labels": [
"class1",
"class2"
]
},
"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
}