Letta · Schema

UrlImage

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
type string The source type for the image.
url string The URL of the image.
View JSON Schema on GitHub

JSON Schema

letta-urlimage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UrlImage",
  "title": "UrlImage",
  "properties": {
    "type": {
      "type": "string",
      "const": "url",
      "title": "Type",
      "description": "The source type for the image.",
      "default": "url"
    },
    "url": {
      "type": "string",
      "title": "Url",
      "description": "The URL of the image."
    }
  },
  "type": "object",
  "required": [
    "url"
  ]
}