Skip to main content
GET
/
api
/
v3
/
models
/
base
List Base Models
curl --request GET \
  --url https://api.nugen.in/api/v3/models/base \
  --header 'Authorization: Bearer <token>'
{
  "models": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "description": "<string>",
      "parameters": "N/A",
      "capabilities": [
        "<string>"
      ],
      "training_data_cutoff": "<string>",
      "context_window": -1,
      "implementation_type": "N/A",
      "endpoint": "<string>",
      "alignment_ready": false,
      "is_active": false,
      "num_params_in_B": 0
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Returns a list of all available base models that can be used for domain alignment. Each model object includes details such as model ID, name, type, description, parameter count, capabilities, context window size, training data cutoff date, implementation type, and whether it is ready for alignment. Use this endpoint to explore the general-purpose models you can use as a starting point for creating custom aligned models.

models
Model · object[]
required