Letta · Schema

PipRequirement

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
name string Name of the pip package.
version object Optional version of the package, following semantic versioning.
View JSON Schema on GitHub

JSON Schema

letta-piprequirement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PipRequirement",
  "title": "PipRequirement",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "title": "Name",
      "description": "Name of the pip package."
    },
    "version": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Version",
      "description": "Optional version of the package, following semantic versioning."
    }
  },
  "type": "object",
  "required": [
    "name"
  ]
}