ProjectDetail
Project Object
The unique identifier for the project
ms-12345
The name of the project
my_project
datasets object[]
The unique identifier for the dataset
ds-12345
The name of the dataset
my_dataset
The UNIX timestamp when the dataset was created
1633036800
true
training_jobs object[]
The unique identifier for the training job
tr-12345
The name of the training job
training-1
The base model used for training
Llama-3.2-1B-Instruct
The current status of the training job
Possible values: [Pending
, Running
, Success
, Failed
, TimedOut
, Cancelled
]
Running
The current progress of the training job
75
The user ID who created the training job
user-12345
The timestamp when the TrainingJob was created
1633036800
The timestamp when the TrainingJob was last updated
1633036800
deployments object[]
The unique identifier for the deployment
dp-12345
The name of the deployment
deployment-1
The current status of the deployment
Possible values: [Pending
, Deploying
, Deployed
, Failed
, Cancelled
, TimedOut
]
Deployed
The timestamp when the deployment was created
1633036800
{
"id": "ms-12345",
"name": "my_project",
"datasets": [
{
"id": "ds-12345",
"name": "my_dataset",
"created_at": 1633036800,
"is_uploaded": true
}
],
"training_jobs": [
{
"id": "tr-12345",
"name": "training-1",
"base_model": "Llama-3.2-1B-Instruct",
"status": "Running",
"progress": 75,
"created_by": "user-12345",
"created_at": 1633036800,
"updated_at": 1633036800
}
],
"deployments": [
{
"id": "dp-12345",
"name": "deployment-1",
"status": "Deployed",
"created_at": 1633036800
}
]
}