Letta · Schema

ModifyFeedbackRequest

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
feedback object Whether this feedback is positive or negative
tags object Feedback tags to add to the step
View JSON Schema on GitHub

JSON Schema

letta-modifyfeedbackrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModifyFeedbackRequest",
  "title": "ModifyFeedbackRequest",
  "properties": {
    "feedback": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/FeedbackType"
        },
        {
          "type": "null"
        }
      ],
      "description": "Whether this feedback is positive or negative"
    },
    "tags": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Tags",
      "description": "Feedback tags to add to the step"
    }
  },
  "type": "object"
}