Letta · Schema

NpmRequirement

Artificial IntelligenceAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen-Source

Properties

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

JSON Schema

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