Get Tune Job
Retrieve the status of a specific tuning job. Fetches the current status and evaluation results, if available, for the specified tuning job. After the tuning job is complete, the metadata associated with the tune job will include evaluation results and a model ID. You can then activate the tuned model for your agent by editing its config with the tuned model ID and the “Edit Agent” API (i.e. the PUT /agents/{agent_id}
API). To deactivate the tuned model, you will need to edit the Agent’s config again and set the llm_model_id
field to “default”. For an end-to-end walkthrough, see the Tune & Evaluation Guide
.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID of the Agent associated with the tuning job
ID of the tuning job to retrieve the status for
Response
Response to GET /applications/{application_id}/tune/jobs/{job_id}
ID of the tune job
Status of the tune job
ID of the tuned model. Omitted if the tuning job failed or is still in progress.
Metadata about the model evaluation, including status and results if completed.
Was this page helpful?