{
  "$schema": "https://modelparams.dev/api/v1/schema.json",
  "provider": "openai",
  "authType": "api_key",
  "model": "gpt-oss-safeguard-20b",
  "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,
        "max": 131072
      }
    },
    {
      "path": "temperature",
      "label": "Temperature",
      "description": "Controls randomness. Lower values make outputs more focused; higher values make them more varied. OpenAI recommends sampling at 1.0.",
      "group": "sampling",
      "type": "number",
      "default": 1
    },
    {
      "path": "top_p",
      "label": "Top P",
      "description": "Controls nucleus sampling by limiting generation to tokens within the selected cumulative probability. OpenAI recommends sampling at 1.0.",
      "group": "sampling",
      "type": "number",
      "default": 1,
      "range": {
        "min": 0,
        "max": 1
      }
    },
    {
      "path": "reasoning_effort",
      "label": "Reasoning effort",
      "description": "Controls how much reasoning the model performs when interpreting the provided safety policy before returning a classification.",
      "group": "reasoning",
      "type": "enum",
      "default": "medium",
      "values": [
        "low",
        "medium",
        "high"
      ]
    }
  ]
}
