{
  "$schema": "https://modelparams.dev/api/v1/schema.json",
  "provider": "openai",
  "authType": "api_key",
  "model": "gpt-5.4",
  "params": [
    {
      "path": "max_completion_tokens",
      "label": "Max tokens",
      "description": "Maximum number of output tokens the model may generate.",
      "group": "generation_length",
      "type": "integer",
      "default": 4096,
      "range": {
        "min": 16
      }
    },
    {
      "path": "reasoning_effort",
      "label": "Reasoning effort",
      "description": "Controls how much reasoning the model should perform before producing an answer.",
      "group": "reasoning",
      "type": "enum",
      "default": "medium",
      "values": [
        "none",
        "low",
        "medium",
        "high",
        "xhigh"
      ]
    }
  ]
}
