GET
/
default-agent-settings
/
models
curl --request GET \
  --url http://localhost/api/v1/default-agent-settings/models \
  --header 'Authorization: Bearer <token>'
[
  {
    "model_name": "<string>",
    "display_name": "<string>",
    "model_params": {
      "max_new_tokens": 123,
      "min_new_tokens": 123
    },
    "default_model_params": {
      "max_new_tokens": 123,
      "min_new_tokens": 123,
      "max_output_tokens": 123
    },
    "default": true,
    "tc_url": "<string>",
    "recommended": false
  }
]

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Successful Response

The response is of type Model · object[].