GET /ai/help/inference-engine-parameters

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

Query parameters

  • version string

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
      • description string

        Parameter description

      • allowed-values array[string]

        Allowed values

      • default string

        Default value if nothing is specified

      • name string

        Parameter name

      • section string

        Section

      • type string

        Parameter type

      • flags array[string]

        Flag name

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": [
    {
      "description": "string",
      "allowed-values": [
        "string"
      ],
      "default": "string",
      "name": "string",
      "section": "string",
      "type": "string",
      "flags": [
        "string"
      ]
    }
  ]
}