Webhooks
Receive real-time notifications for training and deployment events.
Event Types
training.startedFired when a training job begins
training.completedFired when training finishes successfully
training.failedFired when training encounters an error
model.deployedFired when a model is deployed to production
Payload Example
{
"event": "training.completed",
"timestamp": "2024-01-15T10:30:00Z",
"data": {
"job_id": "job_abc123",
"model_id": "model_xyz789",
"metrics": {
"accuracy": 0.95,
"loss": 0.05
}
}
}