Skip to content
SupportLogin

List available base models for training (deprecated)

Deprecated
GET/api/v1/training-models

Deprecated alias of GET /autoscientist/models, kept for existing clients. Returns the set of base models that can be used as the model field when creating a training job. Use GET /autoscientist/models in new code.

ReturnsExpand Collapse
models: array of object { id, display_name, model_size, 3 more }
id: string

Identifier to pass as model when creating a job.

display_name: string

Human-readable model name.

model_size: optional string

Parameter count label (e.g. “8B”, “70B”).

context_length: optional number

Maximum context window in tokens.

methods: array of string

Training methods supported (e.g. [“sft”, “dpo”]).

training_types: array of string

Training types supported (e.g. [“lora”, “full”]).

List available base models for training (deprecated)

curl https://api.prod.adaptionlabs.ai/api/v1/training-models \
    -H "Authorization: Bearer $ADAPTION_API_KEY"
{
  "models": [
    {
      "id": "id",
      "display_name": "display_name",
      "model_size": "model_size",
      "context_length": 0,
      "methods": [
        "string"
      ],
      "training_types": [
        "string"
      ]
    }
  ]
}
Returns Examples
{
  "models": [
    {
      "id": "id",
      "display_name": "display_name",
      "model_size": "model_size",
      "context_length": 0,
      "methods": [
        "string"
      ],
      "training_types": [
        "string"
      ]
    }
  ]
}