Perplexity · Schema

ReasoningConfig

Properties

Name Type Description
effort string How much effort the model should spend on reasoning
View JSON Schema on GitHub

JSON Schema

perplexity-reasoningconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReasoningConfig",
  "title": "ReasoningConfig",
  "properties": {
    "effort": {
      "description": "How much effort the model should spend on reasoning",
      "enum": [
        "low",
        "medium",
        "high"
      ],
      "type": "string"
    }
  },
  "type": "object"
}