Letta · Schema

TextResponseFormat

Response format for plain text responses.

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
type string The type of the response format.
View JSON Schema on GitHub

JSON Schema

letta-textresponseformat-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TextResponseFormat",
  "title": "TextResponseFormat",
  "properties": {
    "type": {
      "type": "string",
      "const": "text",
      "title": "Type",
      "description": "The type of the response format.",
      "default": "text"
    }
  },
  "type": "object",
  "description": "Response format for plain text responses."
}