Letta · Schema

GeminiThinkingConfig

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
include_thoughts boolean Whether to include thoughts in the model's response.
thinking_budget integer The thinking budget for the model.
View JSON Schema on GitHub

JSON Schema

letta-geminithinkingconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeminiThinkingConfig",
  "title": "GeminiThinkingConfig",
  "properties": {
    "include_thoughts": {
      "type": "boolean",
      "title": "Include Thoughts",
      "description": "Whether to include thoughts in the model's response.",
      "default": true
    },
    "thinking_budget": {
      "type": "integer",
      "title": "Thinking Budget",
      "description": "The thinking budget for the model.",
      "default": 1024
    }
  },
  "type": "object"
}