Letta · Schema

ChatGPTOAuthReasoning

Reasoning configuration for ChatGPT OAuth models (GPT-5.x, o-series).

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
reasoning_effort string The reasoning effort level for GPT-5.x and o-series models.
View JSON Schema on GitHub

JSON Schema

letta-chatgptoauthreasoning-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatGPTOAuthReasoning",
  "title": "ChatGPTOAuthReasoning",
  "properties": {
    "reasoning_effort": {
      "type": "string",
      "enum": [
        "none",
        "low",
        "medium",
        "high",
        "xhigh"
      ],
      "title": "Reasoning Effort",
      "description": "The reasoning effort level for GPT-5.x and o-series models.",
      "default": "medium"
    }
  },
  "type": "object",
  "description": "Reasoning configuration for ChatGPT OAuth models (GPT-5.x, o-series)."
}