# Get Models Retrieve a list of models. If there are no models, an empty array is returned. Endpoint: GET /tailored-gen/models ## Header parameters: - `api_token` (string, required) ## Query parameters: - `include_training_parameters` (boolean) If true, includes detailed training parameters and checkpoint steps in the response. ## Response 200 fields (application/json): - `id` (integer) Unique identifier for the model - `name` (string) Name of the model - `description` (string) Description of the model - `status` (string) Status of the model Enum: "Created", "InProgress", "Completed", "Failed", "Stopping", "Stopped" - `training_mode` (string) training mode Enum: "fully_automated", "expert" - `training_version` (string) Training version Enum: "light", "max", "bria-2.3", "bria-3.2" - `active_model_version` (string) The active version (checkpoint) of the model - `training_parameters` (object) The training parameters used for the model. Only included when - `training_parameters.learning_rate` (number) - `training_parameters.lr_scheduler` (string) - `training_parameters.rank` (integer) - `training_parameters.total_training_steps` (integer) - `checkpoint_steps` (array) A list of checkpoint steps for the model. Only included when - `generation_prefix` (string) Text drawn from the dataset's caption_prefix that is automatically prepended to generation prompts to maintain consistency. It matches the dataset's caption_prefix. It can be bypassed during generation by setting include_generation_prefix=false. - `project_id` (integer) ID of the project this model belongs to - `dataset_id` (integer) ID of the dataset used for training - `created_at` (string) Timestamp when the model was created