GET
/
api
/
v1
/
organizations
/
{organization_id}
/
base-models
/
{base_model_id}
{
  "id": "<string>",
  "name": "<string>",
  "trainable_modules": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Bearer HTTP authentication. Allowed headers -- Authorization: Bearer <access_token>

Path Parameters

organization_id
string
required
base_model_id
string
required

Response

Successful response.

BaseModels are the models that are used as the foundation for fine-tuning.

id
string
required

Unique identifier for the object.

name
string
required

The name of the base model.

trainable_modules
string[] | null
required

The LoRA module names to be trained during fine-tuning. Each entry represents a specific module where LoRA adaptation will be applied.