Best fine-tune launch config for re-launch parity
GET/api/v1/datasets/{dataset_id}/finetune/best-launch-config
Returns the persisted launch snapshot for the winning AutoScientist job (terminal experiment with best_finetune_job_id) or the newest succeeded most recent succeeded standalone job when no experiment exists. Matches the launch payload plus original_model_name and persisted trained_model_name (output label / suffix). Use it to prefill a re-launch instead of reading config from GET /datasets/{dataset_id} or the list.
Best fine-tune launch config for re-launch parity
curl https://api.prod.adaptionlabs.ai/api/v1/datasets/$DATASET_ID/finetune/best-launch-config \
-H "Authorization: Bearer $ADAPTION_API_KEY"{
"best_job_config": {
"finetune_job_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"training_experiment_id": {},
"original_model_name": "original_model_name",
"trained_model_name": "trained_model_name",
"training_method": "sft",
"training_type": "lora",
"data_format": "chat",
"hyperparams": {
"foo": "bar"
}
}
}Returns Examples
{
"best_job_config": {
"finetune_job_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"training_experiment_id": {},
"original_model_name": "original_model_name",
"trained_model_name": "trained_model_name",
"training_method": "sft",
"training_type": "lora",
"data_format": "chat",
"hyperparams": {
"foo": "bar"
}
}
}