Tuned Tensor
DocsDashboard

Models

Models are fine-tuned versions of base models, automatically created when a training run completes successfully.

The Model Object

{
  "id": "96e9f0d9-81c1-41cb-b24e-5c85ea09e769",
  "name": "Llama-3.2-3B-Instruct-ft-b3e2b918",
  "provider": "together",
  "provider_model_id": "weijianzhg_4dff/Llama-3.2-3B-Instruct-run-8-fda47361",
  "base_model": "meta-llama/Llama-3.2-3B-Instruct",
  "fine_tune_job_id": "b3e2b918-...",
  "created_at": "2026-03-06T10:57:50.000Z"
}
FieldDescription
nameAuto-generated from base model + job ID
providerFine-tuning provider (currently together)
provider_model_idProvider-specific model ID for inference
base_modelOriginal model that was fine-tuned

List Models

GET /api/v1/models

curl https://api.tunedtensor.com/v1/models \
  -H "Authorization: Bearer tt_your_api_key"

Supports page and per_page query parameters.

Get a Model

GET /api/v1/models/:id

curl https://api.tunedtensor.com/v1/models/:id \
  -H "Authorization: Bearer tt_your_api_key"

Delete a Model

DELETE /api/v1/models/:id

curl -X DELETE https://api.tunedtensor.com/v1/models/:id \
  -H "Authorization: Bearer tt_your_api_key"

Deletes the model record from Tuned Tensor. The model may still exist on the provider and would need to be deleted there separately.