{
  "$schema": "https://modelparams.dev/api/v1/schema.json",
  "provider": "opencode-go",
  "authType": "subscription",
  "apiSurface": "openai-responses",
  "model": "grok-4.6",
  "params": [
    {
      "path": "max_output_tokens",
      "label": "Max output tokens",
      "description": "Maximum number of tokens to generate in the response, including any hidden reasoning tokens.",
      "group": "generation_length",
      "type": "integer",
      "range": {
        "min": 16
      }
    },
    {
      "path": "temperature",
      "label": "Temperature",
      "description": "Controls randomness. Lower values make outputs more focused; higher values make them more varied.",
      "group": "sampling",
      "type": "number",
      "range": {
        "min": 0,
        "max": 2,
        "step": 0.1
      }
    },
    {
      "path": "top_p",
      "label": "Top P",
      "description": "Controls nucleus sampling by limiting generation to tokens within the selected cumulative probability.",
      "group": "sampling",
      "type": "number",
      "range": {
        "min": 0.01,
        "max": 1,
        "step": 0.01
      }
    }
  ]
}
