GET /ai/help/inference-engine-parameters

Get list of allowed inference engine parameters with their descriptions, types, allowed values, and defaults

Responses

  • 200 application/json

    200

    Hide response attribute Show response attribute object
    • parameters array[object]

      inference-engine parameter definition

      Hide parameters attributes Show parameters attributes object
      • name string

        Parameter name

      • flags array[string]

        Flag name

      • type string

        Parameter type

      • default string

        Default value if nothing is specified

      • section string

        Section

      • allowed-values array[string]

        Allowed values

      • description string

        Parameter description

  • 500 application/json

    500

    Hide response attribute Show response attribute object
    • error string

      Error description

GET /ai/help/inference-engine-parameters
curl \
 --request GET 'https://api-ch-gva-2.exoscale.com/v2/ai/help/inference-engine-parameters'
Response examples (200)
{
  "parameters": [
    {
      "name": "string",
      "flags": [
        "string"
      ],
      "type": "string",
      "default": "string",
      "section": "string",
      "allowed-values": [
        "string"
      ],
      "description": "string"
    }
  ]
}
Response examples (500)
{
  "error": "string"
}