{
  "$schema": "https://modelparams.dev/api/v1/schema.json",
  "provider": "meta",
  "authType": "api_key",
  "model": "Llama-4-Maverick-17B-128E-Instruct-FP8",
  "params": [
    {
      "path": "max_completion_tokens",
      "label": "Max tokens",
      "description": "Maximum number of output tokens the model may generate.",
      "group": "generation_length",
      "type": "integer",
      "range": {
        "min": 1
      }
    },
    {
      "path": "temperature",
      "label": "Temperature",
      "description": "Controls randomness. Lower values make outputs more focused; higher values make them more varied.",
      "group": "sampling",
      "type": "number"
    },
    {
      "path": "top_p",
      "label": "Top P",
      "description": "Controls nucleus sampling by limiting generation to tokens within the selected cumulative probability.",
      "group": "sampling",
      "type": "number"
    },
    {
      "path": "top_k",
      "label": "Top K",
      "description": "Limits generation to the selected number of highest-probability tokens.",
      "group": "sampling",
      "type": "integer"
    },
    {
      "path": "repetition_penalty",
      "label": "Repetition penalty",
      "description": "Penalizes tokens that have already appeared to reduce repetition in the output.",
      "group": "sampling",
      "type": "number"
    },
    {
      "path": "response_format.type",
      "label": "Response format",
      "description": "Controls whether the model returns normal text or a schema-constrained JSON object.",
      "group": "output_format",
      "type": "enum",
      "default": "text",
      "values": [
        "text",
        "json_schema"
      ]
    },
    {
      "path": "tool_choice",
      "label": "Tool choice",
      "description": "Controls whether the model may call tools, must call one, or skips tool calls.",
      "group": "tooling",
      "type": "enum",
      "values": [
        "auto",
        "none",
        "required"
      ]
    }
  ]
}
